diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ff398348..cf070ca1 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -2,7 +2,7 @@ name: "CodeQL" on: push: - branches: [master, ] + branches: [master] pull_request: # The branches below must be a subset of the branches above branches: [master] @@ -16,10 +16,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: # We must fetch at least the immediate parents so that if this is - # a pull request then we can checkout the head. + # a pull request then we can check out the head. fetch-depth: 2 # If this run was triggered by a pull request event, then checkout @@ -29,10 +29,10 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v3 # Override language selection by uncommenting this and choosing your languages with: languages: python - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ef8e42f3..7b56e730 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,30 +5,34 @@ on: branches: - master paths: - - '.github/workflows/test.yml' - - '**.py' + - ".github/workflows/test.yml" + - "pyproject.toml" + - "poetry.lock" + - "**.py" pull_request: branches: - master paths: - - '.github/workflows/test.yml' - - '**.py' + - ".github/workflows/test.yml" + - "pyproject.toml" + - "poetry.lock" + - "**.py" jobs: test: strategy: matrix: - python: ['3.6', '3.7', '3.8', '3.9'] + python: ["3.9", "3.10", "3.11", "3.12", "3.13"] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} - name: Setup Graphviz - uses: ts-graphviz/setup-graphviz@v1 + uses: ts-graphviz/setup-graphviz@v2 - name: Install poetry - run: pip install poetry + run: curl -sSL https://install.python-poetry.org | python3 - - name: Run all tests run: | poetry install diff --git a/CHANGELOG.md b/CHANGELOG.md index 692ff6b0..fe71dd9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -394,3 +394,17 @@ The following import changes: ### Added - Support kubernetes diagrams: [3eda1cb](https://github.com/mingrammer/diagrams/commit/3eda1cb6bca8be8a55773d90b93483a8fab3e0f1) + + +## v0.23.5 + +### Breaking Changes + +The following import changes: + +#### OCI + +| Old import path | New import path | +| -------------------------------------------------------------------| --------------------------------------------------------------| +| `from diagrams.oci.connectivity import CustomerPremiseWhite` | `from diagrams.oci.connectivity import CustomerPremisesWhite` | +| `from diagrams.oci.connectivity import CustomerPremises` | `from diagrams.oci.connectivity import CustomerPremises` | \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6a8922fd..d1c430d2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,14 +5,14 @@ yourself. ## Set up your environment -* See [DEVELOPMENT][DEVELOPMENT.md] +- See [DEVELOPMENT][DEVELOPMENT.md] ## Resources ### Update nodes -All node classes was auto-generated from image resource files. For example, the -`diagram.aws.compute.EC2` class was auto-generated based on +All node classes are auto-generated from image resource files. For example, the +`diagram.aws.compute.EC2` class is auto-generated based on the `resources/aws/compute/ec2.png` image resource file. So, if you want to add new node resources or update existing node resources, you @@ -30,16 +30,17 @@ ffmpeg -i my_big_image.jpg -vf scale=w=256:h=256:force_original_aspect_ratio=dec Then just run the `./autogen.sh` to generate the added or updated node classes. (cf. [DEVELOPMENT][DEVELOPMENT.md]) -> IMPORTANT NOTE: To run `autogen.sh`, you need [round][round] and -> [inkscape][inkscape] command lines that are used for cleaning the image -> resource filenames. +> IMPORTANT NOTE: To run `autogen.sh`, you need the [round][round], [black][black] and +> [inkscape][inkscape] command line tools that are used for cleaning the image +> resource filenames and formatting the generated python code. > -> macOS users can download the inkscape via Homebrew. +> macOS users can download inkscape via Homebrew. > -> Or you should use the docker image. +> Or you can use the docker image. [DEVELOPMENT.md]: ./DEVELOPMENT.md [round]: https://github.com/mingrammer/round +[black]: https://pypi.org/project/black [inkscape]: https://inkscape.org/ko/release ### Update Aliases @@ -53,11 +54,13 @@ or update the `ALIASES` map in [config.py](config.py). Then just run the `./autogen.sh` to generate the added or updated aliases. (cf. [DEVELOPMENT][DEVELOPMENT.md]) -> IMPORTANT NOTE: To run `autogen.sh`, you need [round][round] and -> [inkscape][inkscape] command lines that are used for clearning the image +> IMPORTANT NOTE: To run `autogen.sh`, you need the [round][round] and +> [inkscape][inkscape] command line tools that are used for cleaning the image > resource filenames. > -> Or you should use the docker image. +> macOS users can download inkscape via Homebrew. +> +> Or you can use the docker image. ## Run Tests diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 2ff14060..93d1e347 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -34,4 +34,45 @@ You should have docker installed in your system, if not click [here](https://doc docker exec diagrams ./autogen.sh ``` -6. If the unit tests and the bash script `autogen.sh` is working correctly, then your system is now ready for development. \ No newline at end of file +6. If the unit tests and the bash script `autogen.sh` is working correctly, then your system is now ready for development. + + +## Mac local development setup + +To be able to develop and run diagrams locally on you Mac device, you should have [Python](https://www.python.org/downloads/), [Go](https://golang.org/doc/install), and [brew](https://brew.sh/) installed on your system. + +1. Go to diagrams root directory. + +2. Install poetry, the Python project management package used by diagrams. + + ```shell + pip install poetry + ``` + +3. Install the project's Python dependencies. + + ```shell + poetry install + ``` + +4. Install diagrams binary dependencies. + + ```shell + brew install imagemagick inkscape black + go install github.com/mingrammer/round@latest + # ln -sf ~/go/bin/round ~/.local/bin/round + ``` + +5. Run unit tests to confirm that it's working. + + ```shell + python -m unittest tests/*.py -v + ``` + +6. Run the bash script `autogen.sh` to test. + + ```shell + ./autogen.sh + ``` + +7. If the unit tests and the bash script `autogen.sh` is working correctly, then your system is now ready for development. \ No newline at end of file diff --git a/README.md b/README.md index d2883dd0..a24d11f0 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![license](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE) [![pypi version](https://badge.fury.io/py/diagrams.svg)](https://badge.fury.io/py/diagrams) -![python version](https://img.shields.io/badge/python-3.6%2C3.7%2C3.8-blue?logo=python) +![python version](https://img.shields.io/badge/python-%3E%3D%203.6-blue?logo=python) ![Run tests](https://github.com/mingrammer/diagrams/workflows/Run%20tests/badge.svg?branch=master) [![todos](https://badgen.net/https/api.tickgit.com/badgen/github.com/mingrammer/diagrams?label=todos)](https://www.tickgit.com/browse?repo=github.com/mingrammer/diagrams) ![contributors](https://img.shields.io/github/contributors/mingrammer/diagrams) @@ -13,7 +13,7 @@ **Diagram as Code**. -Diagrams lets you draw the cloud system architecture **in Python code**. It was born for **prototyping** a new system architecture design without any design tools. You can also describe or visualize the existing system architecture as well. Diagrams currently supports main major providers including: `AWS`, `Azure`, `GCP`, `Kubernetes`, `Alibaba Cloud`, `Oracle Cloud` etc... It also supports `On-Premise` nodes, `SaaS` and major `Programming` frameworks and languages. +Diagrams lets you draw the cloud system architecture **in Python code**. It was born for **prototyping** a new system architecture design without any design tools. You can also describe or visualize the existing system architecture as well. Diagrams currently supports main major providers including: `AWS`, `Azure`, `GCP`, `Kubernetes`, `Alibaba Cloud`, `Oracle Cloud` etc... It also supports `On-Premises` nodes, `SaaS` and major `Programming` frameworks and languages. **Diagram as Code** also allows you to **track** the architecture diagram changes in any **version control** system. @@ -24,21 +24,24 @@ Diagrams lets you draw the cloud system architecture **in Python code**. It was ![aws provider](https://img.shields.io/badge/AWS-orange?logo=amazon-aws&color=ff9900) ![azure provider](https://img.shields.io/badge/Azure-orange?logo=microsoft-azure&color=0089d6) ![gcp provider](https://img.shields.io/badge/GCP-orange?logo=google-cloud&color=4285f4) +![ibm provider](https://img.shields.io/badge/IBM-orange?logo=ibm&color=052FAD) ![kubernetes provider](https://img.shields.io/badge/Kubernetes-orange?logo=kubernetes&color=326ce5) -![alibaba cloud provider](https://img.shields.io/badge/AlibabaCloud-orange) +![alibaba cloud provider](https://img.shields.io/badge/AlibabaCloud-orange?logo=alibaba-cloud&color=ff6a00) ![oracle cloud provider](https://img.shields.io/badge/OracleCloud-orange?logo=oracle&color=f80000) ![openstack provider](https://img.shields.io/badge/OpenStack-orange?logo=openstack&color=da1a32) ![firebase provider](https://img.shields.io/badge/Firebase-orange?logo=firebase&color=FFCA28) +![digital ocean provider](https://img.shields.io/badge/DigitalOcean-0080ff?logo=digitalocean&color=0080ff) ![elastic provider](https://img.shields.io/badge/Elastic-orange?logo=elastic&color=005571) ![outscale provider](https://img.shields.io/badge/OutScale-orange?color=5f87bf) -![on premise provider](https://img.shields.io/badge/OnPremise-orange?color=5f87bf) +![on premises provider](https://img.shields.io/badge/OnPremises-orange?color=5f87bf) ![generic provider](https://img.shields.io/badge/Generic-orange?color=5f87bf) ![programming provider](https://img.shields.io/badge/Programming-orange?color=5f87bf) ![saas provider](https://img.shields.io/badge/SaaS-orange?color=5f87bf) +![c4 provider](https://img.shields.io/badge/C4-orange?color=5f87bf) ## Getting Started -It requires **Python 3.6** or higher, check your Python version first. +It requires **Python 3.7** or higher, check your Python version first. It uses [Graphviz](https://www.graphviz.org/) to render the diagram, so you need to [install Graphviz](https://graphviz.gitlab.io/download/) to use **diagrams**. After installing graphviz (or already have it), install the **diagrams**. @@ -61,7 +64,7 @@ You can start with [quick start](https://diagrams.mingrammer.com/docs/getting-st | Event Processing | Stateful Architecture | Advanced Web Service | | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | -| ![event processing](https://diagrams.mingrammer.com/img/event_processing_diagram.png) | ![stateful architecture](https://diagrams.mingrammer.com/img/stateful_architecture_diagram.png) | ![advanced web service with on-premise](https://diagrams.mingrammer.com/img/advanced_web_service_with_on-premise.png) | +| ![event processing](https://diagrams.mingrammer.com/img/event_processing_diagram.png) | ![stateful architecture](https://diagrams.mingrammer.com/img/stateful_architecture_diagram.png) | ![advanced web service with on-premises](https://diagrams.mingrammer.com/img/advanced_web_service_with_on-premises.png) | You can find all the examples on the [examples](https://diagrams.mingrammer.com/docs/getting-started/examples) page. @@ -73,15 +76,15 @@ To contribute to diagram, check out [contribution guidelines](CONTRIBUTING.md). ## Who uses it? -[GitPitch](https://gitpitch.github.io/gitpitch) is the perfect slide deck solution for Tech Conferences, Training, Developer Advocates, and Educators. Diagrams is now available as a dedicated [Cloud Diagram Markdown Widget](https://docs.gitpitch.com/#/diagrams/cloud-architecture) so you can use Diagrams directly on any slide for conferences, meetups, and training. +[Apache Airflow](https://github.com/apache/airflow) is the most popular data workflow Orchestrator. Airflow uses Diagrams to generate architecture diagrams in their documentation. -[Cloudiscovery](https://github.com/Cloud-Architects/cloudiscovery) helps you to analyze resources in your cloud (AWS/GCP/Azure/Alibaba/IBM) account. It allows you to create a diagram of analyzed cloud resource map based on this Diagrams library, so you can draw the your existing cloud infrastructure with Cloudicovery. +[Cloudiscovery](https://github.com/Cloud-Architects/cloudiscovery) helps you to analyze resources in your cloud (AWS/GCP/Azure/Alibaba/IBM) account. It allows you to create a diagram of analyzed cloud resource map based on this Diagrams library, so you can draw your existing cloud infrastructure with Cloudiscovery. [Airflow Diagrams](https://github.com/feluelle/airflow-diagrams) is an Airflow plugin that aims to easily visualise your Airflow DAGs on service level from providers like AWS, GCP, Azure, etc. via diagrams. ## Other languages -- If you are familiar to Go, you can use [go-diagrams](https://github.com/blushft/go-diagrams) as well. +- If you are familiar with Go, you can use [go-diagrams](https://github.com/blushft/go-diagrams) as well. ## License diff --git a/autogen.sh b/autogen.sh index 12d51427..f5e065b3 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,10 +1,26 @@ #!/bin/bash -set -e app_root_dir="diagrams" # NOTE: azure icon set is not latest version -providers=("onprem" "aws" "azure" "gcp" "firebase" "k8s" "alibabacloud" "oci" "programming" "saas" "elastic" "generic" "openstack" "outscale" ) +providers=( + "onprem" + "aws" + "azure" + "digitalocean" + "gcp" + "ibm" + "firebase" + "k8s" + "alibabacloud" + "oci" + "programming" + "saas" + "elastic" + "generic" + "openstack" + "outscale" +) if ! [ -x "$(command -v round)" ]; then echo 'round is not installed' @@ -33,7 +49,7 @@ for pvd in "${providers[@]}"; do echo "converting the svg to png using inkscape for provider '$pvd'" python -m scripts.resource svg2png "$pvd" fi - if [ "$pvd" == "oci" ]; then + if [ "$pvd" == "oci" ] || [ "$pvd" = "ibm" ]; then echo "converting the svg to png using image magick for provider '$pvd'" python -m scripts.resource svg2png2 "$pvd" fi @@ -56,6 +72,10 @@ done echo "generating the docs for custom" python -m scripts.generate "custom" +# copy icons across to website +echo "copying icons to website static folder" +cp -r resources website/static/img/ + # run black echo "linting the all the diagram modules" black "$app_root_dir"/**/*.py diff --git a/config.py b/config.py index 0842e065..86a58342 100644 --- a/config.py +++ b/config.py @@ -12,8 +12,24 @@ DIR_RESOURCE = "resources" DIR_TEMPLATE = "templates" PROVIDERS = ( - "base", "onprem", "aws", "azure", "gcp", "firebase", "k8s", "alibabacloud", "oci", "programming", "saas", "elastic", - "generic", "openstack", "outscale") + "base", + "onprem", + "aws", + "azure", + "digitalocean", + "gcp", + "ibm", + "firebase", + "k8s", + "alibabacloud", + "oci", + "programming", + "saas", + "elastic", + "generic", + "openstack", + "outscale", +) ######################### # Resource Processing # @@ -30,8 +46,10 @@ FILE_PREFIXES = { "onprem": (), "aws": ("Amazon-", "AWS-"), "azure": ("Azure-",), + "digitalocean": (), "gcp": ("Cloud-",), "firebase": ("Cloud-",), + "ibm": (), "k8s": (), "alibabacloud": (), "oci": ("OCI-icon-",), @@ -57,7 +75,7 @@ TMPL_MODULE = "module.tmpl" UPPER_WORDS = { "aws": ("aws", "api", "ebs", "ec2", "efs", "emr", "rds", "ml", "mq", "nat", "vpc", "waf", "sdk"), - "azure": ("ad", "b2c", "ai", "api", "cdn", "ddos", "dns", "fxt", "hana", "hd", "id", "sap", "sql", "vm"), + "azure": ("ad", "b2c", "ai", "api", "cdn", "ddos", "dns", "fxt", "hana", "hd", "id", "sap", "sql", "vm", "vpn", "vpc"), "gcp": ("gcp", "ai", "api", "cdn", "dns", "gke", "gpu", "iap", "ml", "nat", "os", "sdk", "sql", "tpu", "vpn"), "firebase": ("ab", "fcm", "ml"), "k8s": ( @@ -65,11 +83,12 @@ UPPER_WORDS = { "sa", "sc", "sts", "svc", ), "oci": ("oci", "ocid", "oke", "ocir", "ddos", "waf", "bm", "vm", "cdn", "vpn", "dns", "nat", "dms", "api", "id"), - "elastic": ("apm", "siem", "ece", "eck"), + "elastic": ("apm", "siem", "ece", "eck", "sql"), "generic": ("vpn", "ios", "xen", "sql", "lxc"), "outscale": ("osc",), "openstack": ("rpm", "loci", "nfv", "ec2api"), "pve": ("pve"), + "ibm": ("ibm"), } TITLE_WORDS = { @@ -82,9 +101,15 @@ TITLE_WORDS = { "aws": { "cloudfront": "CloudFront" }, + "digitalocean": { + "digitalocean": "DigitalOcean" + }, "openstack": { "openstack": "OpenStack" }, + "ibm": { + "ibm": "IBMCloud" + }, } # TODO: check if the classname exists @@ -139,6 +164,7 @@ ALIASES = { }, "queue": { "Activemq": "ActiveMQ", + "Emqx": "EMQX", "Rabbitmq": "RabbitMQ", "Zeromq": "ZeroMQ", }, @@ -220,6 +246,9 @@ ALIASES = { "ElbClassicLoadBalancer": "CLB", "ElbNetworkLoadBalancer": "NLB", "GlobalAccelerator": "GAX", + "InternetGateway": "IGW", + "TransitGateway": "TGW", + "TransitGatewayAttachment": "TGWAttach", }, "security": { "CertificateManager": "ACM", @@ -381,6 +410,7 @@ ALIASES = { "ObjectTableStore": "OTS", } }, + "digitalocean": {}, "oci": { "compute": { "VM": "VirtualMachine", @@ -401,7 +431,10 @@ ALIASES = { }, "programming": { "framework": { - "Fastapi": "FastAPI" + "Fastapi": "FastAPI", + "Graphql": "GraphQL", + "Dotnet": "DotNet", + "Nextjs": "NextJs" }, "language": { "Javascript": "JavaScript", @@ -418,12 +451,15 @@ ALIASES = { }, "elastic": { "elasticsearch": { + "Elasticsearch": "ElasticSearch", "Logstash": "LogStash", + "MachineLearning": "ML", } }, "outscale": { "Osc": "OSC", }, + "ibm": {}, "generic": {}, "openstack": { "user": { diff --git a/diagrams/__init__.py b/diagrams/__init__.py index 6968bc4a..7b6d2461 100644 --- a/diagrams/__init__.py +++ b/diagrams/__init__.py @@ -2,7 +2,7 @@ import contextvars import os import uuid from pathlib import Path -from typing import List, Union, Dict +from typing import Dict, List, Optional, Union from graphviz import Digraph @@ -15,32 +15,32 @@ __diagram = contextvars.ContextVar("diagrams") __cluster = contextvars.ContextVar("cluster") -def getdiagram(): +def getdiagram() -> "Diagram": try: return __diagram.get() except LookupError: return None -def setdiagram(diagram): +def setdiagram(diagram: "Diagram"): __diagram.set(diagram) -def getcluster(): +def getcluster() -> "Cluster": try: return __cluster.get() except LookupError: return None -def setcluster(cluster): +def setcluster(cluster: "Cluster"): __cluster.set(cluster) class Diagram: __directions = ("TB", "BT", "LR", "RL") __curvestyles = ("ortho", "curved") - __outformats = ("png", "jpg", "svg", "pdf") + __outformats = ("png", "jpg", "svg", "pdf", "dot") # fmt: off _default_graph_attrs = { @@ -82,11 +82,13 @@ class Diagram: filename: str = "", direction: str = "LR", curvestyle: str = "ortho", - outformat: str = "png", + outformat: Union[str, list[str]] = "png", + autolabel: bool = False, show: bool = True, - graph_attr: dict = {}, - node_attr: dict = {}, - edge_attr: dict = {}, + strict: bool = False, + graph_attr: Optional[dict] = None, + node_attr: Optional[dict] = None, + edge_attr: Optional[dict] = None, ): """Diagram represents a global diagrams context. @@ -101,14 +103,21 @@ class Diagram: :param graph_attr: Provide graph_attr dot config attributes. :param node_attr: Provide node_attr dot config attributes. :param edge_attr: Provide edge_attr dot config attributes. + :param strict: Rendering should merge multi-edges. """ + if graph_attr is None: + graph_attr = {} + if node_attr is None: + node_attr = {} + if edge_attr is None: + edge_attr = {} self.name = name if not name and not filename: filename = "diagrams_image" elif not filename: filename = "_".join(self.name.split()).lower() self.filename = filename - self.dot = Digraph(self.name, filename=self.filename) + self.dot = Digraph(self.name, filename=self.filename, strict=strict) # Set attributes. for k, v in self._default_graph_attrs.items(): @@ -127,8 +136,13 @@ class Diagram: raise ValueError(f'"{curvestyle}" is not a valid curvestyle') self.dot.graph_attr["splines"] = curvestyle - if not self._validate_outformat(outformat): - raise ValueError(f'"{outformat}" is not a valid output format') + if isinstance(outformat, list): + for one_format in outformat: + if not self._validate_outformat(one_format): + raise ValueError(f'"{one_format}" is not a valid output format') + else: + if not self._validate_outformat(outformat): + raise ValueError(f'"{outformat}" is not a valid output format') self.outformat = outformat # Merge passed in attributes @@ -137,6 +151,7 @@ class Diagram: self.dot.edge_attr.update(edge_attr) self.show = show + self.autolabel = autolabel def __str__(self) -> str: return str(self.dot) @@ -155,25 +170,13 @@ class Diagram: return self.dot.pipe(format="png") def _validate_direction(self, direction: str) -> bool: - direction = direction.upper() - for v in self.__directions: - if v == direction: - return True - return False + return direction.upper() in self.__directions def _validate_curvestyle(self, curvestyle: str) -> bool: - curvestyle = curvestyle.lower() - for v in self.__curvestyles: - if v == curvestyle: - return True - return False + return curvestyle.lower() in self.__curvestyles def _validate_outformat(self, outformat: str) -> bool: - outformat = outformat.lower() - for v in self.__outformats: - if v == outformat: - return True - return False + return outformat.lower() in self.__outformats def node(self, nodeid: str, label: str, **attrs) -> None: """Create a new node.""" @@ -188,7 +191,11 @@ class Diagram: self.dot.subgraph(dot) def render(self) -> None: - self.dot.render(format=self.outformat, view=self.show, quiet=True) + if isinstance(self.outformat, list): + for one_format in self.outformat: + self.dot.render(format=one_format, view=self.show, quiet=True) + else: + self.dot.render(format=self.outformat, view=self.show, quiet=True) class Cluster: @@ -214,7 +221,7 @@ class Cluster: self, label: str = "cluster", direction: str = "LR", - graph_attr: dict = {}, + graph_attr: Optional[dict] = None, ): """Cluster represents a cluster context. @@ -222,6 +229,8 @@ class Cluster: :param direction: Data flow direction. Default is 'left to right'. :param graph_attr: Provide graph_attr dot config attributes. """ + if graph_attr is None: + graph_attr = {} self.label = label self.name = "cluster_" + self.label @@ -261,12 +270,8 @@ class Cluster: self._diagram.subgraph(self.dot) setcluster(self._parent) - def _validate_direction(self, direction: str): - direction = direction.upper() - for v in self.__directions: - if v == direction: - return True - return False + def _validate_direction(self, direction: str) -> bool: + return direction.upper() in self.__directions def node(self, nodeid: str, label: str, **attrs) -> None: """Create a new node in the cluster.""" @@ -287,20 +292,32 @@ class Node: _height = 1.9 - def __init__(self, label: str = "", **attrs: Dict): + def __init__(self, label: str = "", *, nodeid: str = None, **attrs: Dict): """Node represents a system component. :param label: Node label. """ - # Generates an ID for identifying a node. - self._id = self._rand_id() + # Generates an ID for identifying a node, unless specified + self._id = nodeid or self._rand_id() self.label = label + # Node must be belong to a diagrams. + self._diagram = getdiagram() + if self._diagram is None: + raise EnvironmentError("Global diagrams context not set up") + + if self._diagram.autolabel: + prefix = self.__class__.__name__ + if self.label: + self.label = prefix + "\n" + self.label + else: + self.label = prefix + # fmt: off # If a node has an icon, increase the height slightly to avoid # that label being spanned between icon image and white space. # Increase the height by the number of new lines included in the label. - padding = 0.4 * (label.count('\n')) + padding = 0.4 * (self.label.count('\n')) self._attrs = { "shape": "none", "height": str(self._height + padding), @@ -310,10 +327,6 @@ class Node: # fmt: on self._attrs.update(attrs) - # Node must be belong to a diagrams. - self._diagram = getdiagram() - if self._diagram is None: - raise EnvironmentError("Global diagrams context not set up") self._cluster = getcluster() # If a node is in the cluster context, add it to cluster. @@ -339,7 +352,7 @@ class Node: return other def __rsub__(self, other: Union[List["Node"], List["Edge"]]): - """ Called for [Nodes] and [Edges] - Self because list don't have __sub__ operators. """ + """Called for [Nodes] and [Edges] - Self because list don't have __sub__ operators.""" for o in other: if isinstance(o, Edge): o.connect(self) diff --git a/diagrams/aws/analytics.py b/diagrams/aws/analytics.py index d37377d9..2b789c4b 100644 --- a/diagrams/aws/analytics.py +++ b/diagrams/aws/analytics.py @@ -8,6 +8,10 @@ class _Analytics(_AWS): _icon_dir = "resources/aws/analytics" +class AmazonOpensearchService(_Analytics): + _icon = "amazon-opensearch-service.png" + + class Analytics(_Analytics): _icon = "analytics.png" diff --git a/diagrams/aws/compute.py b/diagrams/aws/compute.py index f63c590f..14c54403 100644 --- a/diagrams/aws/compute.py +++ b/diagrams/aws/compute.py @@ -8,6 +8,10 @@ class _Compute(_AWS): _icon_dir = "resources/aws/compute" +class AppRunner(_Compute): + _icon = "app-runner.png" + + class ApplicationAutoScaling(_Compute): _icon = "application-auto-scaling.png" diff --git a/diagrams/aws/devtools.py b/diagrams/aws/devtools.py index 0f674ddb..d6458e5a 100644 --- a/diagrams/aws/devtools.py +++ b/diagrams/aws/devtools.py @@ -20,6 +20,10 @@ class Cloud9(_Devtools): _icon = "cloud9.png" +class Codeartifact(_Devtools): + _icon = "codeartifact.png" + + class Codebuild(_Devtools): _icon = "codebuild.png" diff --git a/diagrams/aws/management.py b/diagrams/aws/management.py index 653791b2..730a68cd 100644 --- a/diagrams/aws/management.py +++ b/diagrams/aws/management.py @@ -8,10 +8,30 @@ class _Management(_AWS): _icon_dir = "resources/aws/management" +class AmazonDevopsGuru(_Management): + _icon = "amazon-devops-guru.png" + + +class AmazonManagedGrafana(_Management): + _icon = "amazon-managed-grafana.png" + + +class AmazonManagedPrometheus(_Management): + _icon = "amazon-managed-prometheus.png" + + +class AmazonManagedWorkflowsApacheAirflow(_Management): + _icon = "amazon-managed-workflows-apache-airflow.png" + + class AutoScaling(_Management): _icon = "auto-scaling.png" +class Chatbot(_Management): + _icon = "chatbot.png" + + class CloudformationChangeSet(_Management): _icon = "cloudformation-change-set.png" @@ -136,10 +156,18 @@ class PersonalHealthDashboard(_Management): _icon = "personal-health-dashboard.png" +class Proton(_Management): + _icon = "proton.png" + + class ServiceCatalog(_Management): _icon = "service-catalog.png" +class SystemsManagerAppConfig(_Management): + _icon = "systems-manager-app-config.png" + + class SystemsManagerAutomation(_Management): _icon = "systems-manager-automation.png" diff --git a/diagrams/aws/network.py b/diagrams/aws/network.py index aa389f99..4f072756 100644 --- a/diagrams/aws/network.py +++ b/diagrams/aws/network.py @@ -84,6 +84,10 @@ class NATGateway(_Network): _icon = "nat-gateway.png" +class NetworkFirewall(_Network): + _icon = "network-firewall.png" + + class NetworkingAndContentDelivery(_Network): _icon = "networking-and-content-delivery.png" @@ -116,6 +120,10 @@ class SiteToSiteVpn(_Network): _icon = "site-to-site-vpn.png" +class TransitGatewayAttachment(_Network): + _icon = "transit-gateway-attachment.png" + + class TransitGateway(_Network): _icon = "transit-gateway.png" @@ -168,3 +176,6 @@ ALB = ElbApplicationLoadBalancer CLB = ElbClassicLoadBalancer NLB = ElbNetworkLoadBalancer GAX = GlobalAccelerator +IGW = InternetGateway +TGW = TransitGateway +TGWAttach = TransitGatewayAttachment diff --git a/diagrams/azure/analytics.py b/diagrams/azure/analytics.py index 85c994eb..216b3582 100644 --- a/diagrams/azure/analytics.py +++ b/diagrams/azure/analytics.py @@ -52,4 +52,8 @@ class StreamAnalyticsJobs(_Analytics): _icon = "stream-analytics-jobs.png" +class SynapseAnalytics(_Analytics): + _icon = "synapse-analytics.png" + + # Aliases diff --git a/diagrams/azure/compute.py b/diagrams/azure/compute.py index d211a686..810f9237 100644 --- a/diagrams/azure/compute.py +++ b/diagrams/azure/compute.py @@ -8,6 +8,14 @@ class _Compute(_Azure): _icon_dir = "resources/azure/compute" +class AppServices(_Compute): + _icon = "app-services.png" + + +class AutomanagedVM(_Compute): + _icon = "automanaged-vm.png" + + class AvailabilitySets(_Compute): _icon = "availability-sets.png" @@ -32,6 +40,10 @@ class CloudsimpleVirtualMachines(_Compute): _icon = "cloudsimple-virtual-machines.png" +class ContainerApps(_Compute): + _icon = "container-apps.png" + + class ContainerInstances(_Compute): _icon = "container-instances.png" @@ -40,6 +52,10 @@ class ContainerRegistries(_Compute): _icon = "container-registries.png" +class DiskEncryptionSets(_Compute): + _icon = "disk-encryption-sets.png" + + class DiskSnapshots(_Compute): _icon = "disk-snapshots.png" @@ -52,6 +68,14 @@ class FunctionApps(_Compute): _icon = "function-apps.png" +class ImageDefinitions(_Compute): + _icon = "image-definitions.png" + + +class ImageVersions(_Compute): + _icon = "image-versions.png" + + class KubernetesServices(_Compute): _icon = "kubernetes-services.png" @@ -60,6 +84,10 @@ class MeshApplications(_Compute): _icon = "mesh-applications.png" +class OsImages(_Compute): + _icon = "os-images.png" + + class SAPHANAOnAzure(_Compute): _icon = "sap-hana-on-azure.png" @@ -68,6 +96,14 @@ class ServiceFabricClusters(_Compute): _icon = "service-fabric-clusters.png" +class SharedImageGalleries(_Compute): + _icon = "shared-image-galleries.png" + + +class SpringCloud(_Compute): + _icon = "spring-cloud.png" + + class VMClassic(_Compute): _icon = "vm-classic.png" @@ -92,6 +128,10 @@ class VM(_Compute): _icon = "vm.png" +class Workspaces(_Compute): + _icon = "workspaces.png" + + # Aliases ACR = ContainerRegistries diff --git a/diagrams/azure/database.py b/diagrams/azure/database.py index 8e2fb540..a9127a85 100644 --- a/diagrams/azure/database.py +++ b/diagrams/azure/database.py @@ -20,6 +20,14 @@ class CosmosDb(_Database): _icon = "cosmos-db.png" +class DataExplorerClusters(_Database): + _icon = "data-explorer-clusters.png" + + +class DataFactory(_Database): + _icon = "data-factory.png" + + class DataLake(_Database): _icon = "data-lake.png" @@ -44,6 +52,10 @@ class ElasticJobAgents(_Database): _icon = "elastic-job-agents.png" +class InstancePools(_Database): + _icon = "instance-pools.png" + + class ManagedDatabases(_Database): _icon = "managed-databases.png" @@ -68,6 +80,22 @@ class SQLServers(_Database): _icon = "sql-servers.png" +class SQLVM(_Database): + _icon = "sql-vm.png" + + +class SQL(_Database): + _icon = "sql.png" + + +class SsisLiftAndShiftIr(_Database): + _icon = "ssis-lift-and-shift-ir.png" + + +class SynapseAnalytics(_Database): + _icon = "synapse-analytics.png" + + class VirtualClusters(_Database): _icon = "virtual-clusters.png" diff --git a/diagrams/azure/devops.py b/diagrams/azure/devops.py index b7c1e8fe..eee9f253 100644 --- a/diagrams/azure/devops.py +++ b/diagrams/azure/devops.py @@ -28,6 +28,10 @@ class DevtestLabs(_Devops): _icon = "devtest-labs.png" +class LabServices(_Devops): + _icon = "lab-services.png" + + class Pipelines(_Devops): _icon = "pipelines.png" diff --git a/diagrams/azure/identity.py b/diagrams/azure/identity.py index 19a0e394..a7913728 100644 --- a/diagrams/azure/identity.py +++ b/diagrams/azure/identity.py @@ -48,6 +48,10 @@ class EnterpriseApplications(_Identity): _icon = "enterprise-applications.png" +class Groups(_Identity): + _icon = "groups.png" + + class IdentityGovernance(_Identity): _icon = "identity-governance.png" @@ -60,4 +64,8 @@ class ManagedIdentities(_Identity): _icon = "managed-identities.png" +class Users(_Identity): + _icon = "users.png" + + # Aliases diff --git a/diagrams/azure/integration.py b/diagrams/azure/integration.py index e16033d0..369cd97b 100644 --- a/diagrams/azure/integration.py +++ b/diagrams/azure/integration.py @@ -52,6 +52,10 @@ class LogicApps(_Integration): _icon = "logic-apps.png" +class PartnerTopic(_Integration): + _icon = "partner-topic.png" + + class SendgridAccounts(_Integration): _icon = "sendgrid-accounts.png" @@ -76,4 +80,8 @@ class StorsimpleDeviceManagers(_Integration): _icon = "storsimple-device-managers.png" +class SystemTopic(_Integration): + _icon = "system-topic.png" + + # Aliases diff --git a/diagrams/azure/migration.py b/diagrams/azure/migration.py index 3c69da4e..74f573f7 100644 --- a/diagrams/azure/migration.py +++ b/diagrams/azure/migration.py @@ -8,6 +8,14 @@ class _Migration(_Azure): _icon_dir = "resources/azure/migration" +class DataBoxEdge(_Migration): + _icon = "data-box-edge.png" + + +class DataBox(_Migration): + _icon = "data-box.png" + + class DatabaseMigrationServices(_Migration): _icon = "database-migration-services.png" diff --git a/diagrams/azure/ml.py b/diagrams/azure/ml.py index 295a261e..eb0c474e 100644 --- a/diagrams/azure/ml.py +++ b/diagrams/azure/ml.py @@ -8,6 +8,14 @@ class _Ml(_Azure): _icon_dir = "resources/azure/ml" +class AzureOpenAI(_Ml): + _icon = "azure-open-ai.png" + + +class AzureSpeedToText(_Ml): + _icon = "azure-speed-to-text.png" + + class BatchAI(_Ml): _icon = "batch-ai.png" diff --git a/diagrams/azure/mobile.py b/diagrams/azure/mobile.py index a0663f3d..e2eb20a5 100644 --- a/diagrams/azure/mobile.py +++ b/diagrams/azure/mobile.py @@ -9,7 +9,7 @@ class _Mobile(_Azure): class AppServiceMobile(_Mobile): - _icon = "app-service---mobile.png" + _icon = "app-service-mobile.png" class MobileEngagement(_Mobile): diff --git a/diagrams/azure/monitor.py b/diagrams/azure/monitor.py new file mode 100644 index 00000000..9dcc5bb0 --- /dev/null +++ b/diagrams/azure/monitor.py @@ -0,0 +1,27 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _Azure + + +class _Monitor(_Azure): + _type = "monitor" + _icon_dir = "resources/azure/monitor" + + +class ChangeAnalysis(_Monitor): + _icon = "change-analysis.png" + + +class Logs(_Monitor): + _icon = "logs.png" + + +class Metrics(_Monitor): + _icon = "metrics.png" + + +class Monitor(_Monitor): + _icon = "monitor.png" + + +# Aliases diff --git a/diagrams/azure/network.py b/diagrams/azure/network.py index 23dd69c0..d55ad3cc 100644 --- a/diagrams/azure/network.py +++ b/diagrams/azure/network.py @@ -72,6 +72,10 @@ class OnPremisesDataGateways(_Network): _icon = "on-premises-data-gateways.png" +class PrivateEndpoint(_Network): + _icon = "private-endpoint.png" + + class PublicIpAddresses(_Network): _icon = "public-ip-addresses.png" diff --git a/diagrams/azure/security.py b/diagrams/azure/security.py index 0c4fe96e..f78fb51d 100644 --- a/diagrams/azure/security.py +++ b/diagrams/azure/security.py @@ -8,6 +8,22 @@ class _Security(_Azure): _icon_dir = "resources/azure/security" +class ApplicationSecurityGroups(_Security): + _icon = "application-security-groups.png" + + +class ConditionalAccess(_Security): + _icon = "conditional-access.png" + + +class Defender(_Security): + _icon = "defender.png" + + +class ExtendedSecurityUpdates(_Security): + _icon = "extended-security-updates.png" + + class KeyVaults(_Security): _icon = "key-vaults.png" diff --git a/diagrams/azure/storage.py b/diagrams/azure/storage.py index 80f54633..5dcf1f2c 100644 --- a/diagrams/azure/storage.py +++ b/diagrams/azure/storage.py @@ -21,7 +21,7 @@ class BlobStorage(_Storage): class DataBoxEdgeDataBoxGateway(_Storage): - _icon = "data-box-edge---data-box-gateway.png" + _icon = "data-box-edge-data-box-gateway.png" class DataBox(_Storage): diff --git a/diagrams/c4/__init__.py b/diagrams/c4/__init__.py new file mode 100644 index 00000000..f53a65bc --- /dev/null +++ b/diagrams/c4/__init__.py @@ -0,0 +1,126 @@ +""" +A set of nodes and edges to visualize software architecture using the C4 model. +""" + +import html +import textwrap +from diagrams import Cluster, Node, Edge + + +def _format_node_label(name, key, description): + """Create a graphviz label string for a C4 node""" + title = f'{html.escape(name)}
' + subtitle = f'[{html.escape(key)}]
' if key else "" + text = f'
{_format_description(description)}' if description else "" + return f"<{title}{subtitle}{text}>" + + +def _format_description(description): + """ + Formats the description string so it fits into the C4 nodes. + + It line-breaks the description so it fits onto exactly three lines. If there are more + than three lines, all further lines are discarded and "..." inserted on the last line to + indicate that it was shortened. This will also html-escape the description so it can + safely be included in a HTML label. + """ + wrapper = textwrap.TextWrapper(width=40, max_lines=3) + lines = [html.escape(line) for line in wrapper.wrap(description)] + lines += [""] * (3 - len(lines)) # fill up with empty lines so it is always three + return "
".join(lines) + + +def _format_edge_label(description): + """Create a graphviz label string for a C4 edge""" + wrapper = textwrap.TextWrapper(width=24, max_lines=3) + lines = [html.escape(line) for line in wrapper.wrap(description)] + text = "
".join(lines) + return f'<{text}>' + + +def C4Node(name, technology="", description="", type="Container", **kwargs): + key = f"{type}: {technology}" if technology else type + node_attributes = { + "label": _format_node_label(name, key, description), + "labelloc": "c", + "shape": "rect", + "width": "2.6", + "height": "1.6", + "fixedsize": "true", + "style": "filled", + "fillcolor": "dodgerblue3", + "fontcolor": "white", + } + # collapse boxes to a smaller form if they don't have a description + if not description: + node_attributes.update({"width": "2", "height": "1"}) + node_attributes.update(kwargs) + return Node(**node_attributes) + + +def Container(name, technology="", description="", **kwargs): + container_attributes = { + "name": name, + "technology": technology, + "description": description, + "type": "Container", + } + container_attributes.update(kwargs) + return C4Node(**container_attributes) + + +def Database(name, technology="", description="", **kwargs): + database_attributes = { + "name": name, + "technology": technology, + "description": description, + "type": "Database", + "shape": "cylinder", + "labelloc": "b", + } + database_attributes.update(kwargs) + return C4Node(**database_attributes) + + +def System(name, description="", external=False, **kwargs): + system_attributes = { + "name": name, + "description": description, + "type": "External System" if external else "System", + "fillcolor": "gray60" if external else "dodgerblue4", + } + system_attributes.update(kwargs) + return C4Node(**system_attributes) + + +def Person(name, description="", external=False, **kwargs): + person_attributes = { + "name": name, + "description": description, + "type": "External Person" if external else "Person", + "fillcolor": "gray60" if external else "dodgerblue4", + "style": "rounded,filled", + } + person_attributes.update(kwargs) + return C4Node(**person_attributes) + + +def SystemBoundary(name, **kwargs): + graph_attributes = { + "label": html.escape(name), + "bgcolor": "white", + "margin": "16", + "style": "dashed", + } + graph_attributes.update(kwargs) + return Cluster(name, graph_attr=graph_attributes) + + +def Relationship(label="", **kwargs): + edge_attributes = { + "style": "dashed", + "color": "gray60", + "label": _format_edge_label(label) if label else "", + } + edge_attributes.update(kwargs) + return Edge(**edge_attributes) diff --git a/diagrams/custom/__init__.py b/diagrams/custom/__init__.py index 48441a6e..9845932d 100644 --- a/diagrams/custom/__init__.py +++ b/diagrams/custom/__init__.py @@ -15,6 +15,6 @@ class Custom(Node): def _load_icon(self): return self._icon - def __init__(self, label, icon_path): + def __init__(self, label, icon_path, *args, **kwargs): self._icon = icon_path - super().__init__(label) + super().__init__(label, *args, **kwargs) diff --git a/diagrams/digitalocean/__init__.py b/diagrams/digitalocean/__init__.py new file mode 100644 index 00000000..29daae0b --- /dev/null +++ b/diagrams/digitalocean/__init__.py @@ -0,0 +1,12 @@ +""" +DigitalOcean provides a set of services for DigitalOcean provider. +""" + +from diagrams import Node + + +class _DigitalOcean(Node): + _provider = "digitalocean" + _icon_dir = "resources/digitalocean" + + fontcolor = "#ffffff" diff --git a/diagrams/digitalocean/compute.py b/diagrams/digitalocean/compute.py new file mode 100644 index 00000000..2f732004 --- /dev/null +++ b/diagrams/digitalocean/compute.py @@ -0,0 +1,43 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _DigitalOcean + + +class _Compute(_DigitalOcean): + _type = "compute" + _icon_dir = "resources/digitalocean/compute" + + +class Containers(_Compute): + _icon = "containers.png" + + +class Docker(_Compute): + _icon = "docker.png" + + +class DropletConnect(_Compute): + _icon = "droplet-connect.png" + + +class DropletSnapshot(_Compute): + _icon = "droplet-snapshot.png" + + +class Droplet(_Compute): + _icon = "droplet.png" + + +class K8SCluster(_Compute): + _icon = "k8s-cluster.png" + + +class K8SNodePool(_Compute): + _icon = "k8s-node-pool.png" + + +class K8SNode(_Compute): + _icon = "k8s-node.png" + + +# Aliases diff --git a/diagrams/digitalocean/database.py b/diagrams/digitalocean/database.py new file mode 100644 index 00000000..8ddc18c9 --- /dev/null +++ b/diagrams/digitalocean/database.py @@ -0,0 +1,27 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _DigitalOcean + + +class _Database(_DigitalOcean): + _type = "database" + _icon_dir = "resources/digitalocean/database" + + +class DbaasPrimaryStandbyMore(_Database): + _icon = "dbaas-primary-standby-more.png" + + +class DbaasPrimary(_Database): + _icon = "dbaas-primary.png" + + +class DbaasReadOnly(_Database): + _icon = "dbaas-read-only.png" + + +class DbaasStandby(_Database): + _icon = "dbaas-standby.png" + + +# Aliases diff --git a/diagrams/digitalocean/network.py b/diagrams/digitalocean/network.py new file mode 100644 index 00000000..901529ca --- /dev/null +++ b/diagrams/digitalocean/network.py @@ -0,0 +1,47 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _DigitalOcean + + +class _Network(_DigitalOcean): + _type = "network" + _icon_dir = "resources/digitalocean/network" + + +class Certificate(_Network): + _icon = "certificate.png" + + +class DomainRegistration(_Network): + _icon = "domain-registration.png" + + +class Domain(_Network): + _icon = "domain.png" + + +class Firewall(_Network): + _icon = "firewall.png" + + +class FloatingIp(_Network): + _icon = "floating-ip.png" + + +class InternetGateway(_Network): + _icon = "internet-gateway.png" + + +class LoadBalancer(_Network): + _icon = "load-balancer.png" + + +class ManagedVpn(_Network): + _icon = "managed-vpn.png" + + +class Vpc(_Network): + _icon = "vpc.png" + + +# Aliases diff --git a/diagrams/digitalocean/storage.py b/diagrams/digitalocean/storage.py new file mode 100644 index 00000000..a2c5bc9e --- /dev/null +++ b/diagrams/digitalocean/storage.py @@ -0,0 +1,27 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _DigitalOcean + + +class _Storage(_DigitalOcean): + _type = "storage" + _icon_dir = "resources/digitalocean/storage" + + +class Folder(_Storage): + _icon = "folder.png" + + +class Space(_Storage): + _icon = "space.png" + + +class VolumeSnapshot(_Storage): + _icon = "volume-snapshot.png" + + +class Volume(_Storage): + _icon = "volume.png" + + +# Aliases diff --git a/diagrams/elastic/agent.py b/diagrams/elastic/agent.py new file mode 100644 index 00000000..518d728d --- /dev/null +++ b/diagrams/elastic/agent.py @@ -0,0 +1,27 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _Elastic + + +class _Agent(_Elastic): + _type = "agent" + _icon_dir = "resources/elastic/agent" + + +class Agent(_Agent): + _icon = "agent.png" + + +class Endpoint(_Agent): + _icon = "endpoint.png" + + +class Fleet(_Agent): + _icon = "fleet.png" + + +class Integrations(_Agent): + _icon = "integrations.png" + + +# Aliases diff --git a/diagrams/elastic/beats.py b/diagrams/elastic/beats.py new file mode 100644 index 00000000..f4a59600 --- /dev/null +++ b/diagrams/elastic/beats.py @@ -0,0 +1,43 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _Elastic + + +class _Beats(_Elastic): + _type = "beats" + _icon_dir = "resources/elastic/beats" + + +class APM(_Beats): + _icon = "apm.png" + + +class Auditbeat(_Beats): + _icon = "auditbeat.png" + + +class Filebeat(_Beats): + _icon = "filebeat.png" + + +class Functionbeat(_Beats): + _icon = "functionbeat.png" + + +class Heartbeat(_Beats): + _icon = "heartbeat.png" + + +class Metricbeat(_Beats): + _icon = "metricbeat.png" + + +class Packetbeat(_Beats): + _icon = "packetbeat.png" + + +class Winlogbeat(_Beats): + _icon = "winlogbeat.png" + + +# Aliases diff --git a/diagrams/elastic/elasticsearch.py b/diagrams/elastic/elasticsearch.py index dad072ba..6234eb9c 100644 --- a/diagrams/elastic/elasticsearch.py +++ b/diagrams/elastic/elasticsearch.py @@ -24,6 +24,10 @@ class Kibana(_Elasticsearch): _icon = "kibana.png" +class LogstashPipeline(_Elasticsearch): + _icon = "logstash-pipeline.png" + + class Logstash(_Elasticsearch): _icon = "logstash.png" @@ -32,6 +36,10 @@ class MachineLearning(_Elasticsearch): _icon = "machine-learning.png" +class MapServices(_Elasticsearch): + _icon = "map-services.png" + + class Maps(_Elasticsearch): _icon = "maps.png" @@ -40,14 +48,24 @@ class Monitoring(_Elasticsearch): _icon = "monitoring.png" +class SearchableSnapshots(_Elasticsearch): + _icon = "searchable-snapshots.png" + + class SecuritySettings(_Elasticsearch): _icon = "security-settings.png" -class Sql(_Elasticsearch): +class SQL(_Elasticsearch): _icon = "sql.png" +class Stack(_Elasticsearch): + _icon = "stack.png" + + # Aliases +ElasticSearch = Elasticsearch LogStash = Logstash +ML = MachineLearning diff --git a/diagrams/elastic/enterprisesearch.py b/diagrams/elastic/enterprisesearch.py index d5e19459..cde3ca60 100644 --- a/diagrams/elastic/enterprisesearch.py +++ b/diagrams/elastic/enterprisesearch.py @@ -12,6 +12,10 @@ class AppSearch(_Enterprisesearch): _icon = "app-search.png" +class Crawler(_Enterprisesearch): + _icon = "crawler.png" + + class EnterpriseSearch(_Enterprisesearch): _icon = "enterprise-search.png" diff --git a/diagrams/elastic/security.py b/diagrams/elastic/security.py index 34afe3e0..bf907c32 100644 --- a/diagrams/elastic/security.py +++ b/diagrams/elastic/security.py @@ -20,4 +20,8 @@ class SIEM(_Security): _icon = "siem.png" +class Xdr(_Security): + _icon = "xdr.png" + + # Aliases diff --git a/diagrams/gcp/api.py b/diagrams/gcp/api.py index 5b027b6a..45ec2e09 100644 --- a/diagrams/gcp/api.py +++ b/diagrams/gcp/api.py @@ -8,6 +8,14 @@ class _API(_GCP): _icon_dir = "resources/gcp/api" +class APIGateway(_API): + _icon = "api-gateway.png" + + +class Apigee(_API): + _icon = "apigee.png" + + class Endpoints(_API): _icon = "endpoints.png" diff --git a/diagrams/gcp/operations.py b/diagrams/gcp/operations.py index 53ece13f..8e7a2b4a 100644 --- a/diagrams/gcp/operations.py +++ b/diagrams/gcp/operations.py @@ -8,6 +8,10 @@ class _Operations(_GCP): _icon_dir = "resources/gcp/operations" +class Logging(_Operations): + _icon = "logging.png" + + class Monitoring(_Operations): _icon = "monitoring.png" diff --git a/diagrams/generic/os.py b/diagrams/generic/os.py index 695f2954..cf0e9804 100644 --- a/diagrams/generic/os.py +++ b/diagrams/generic/os.py @@ -16,6 +16,10 @@ class Centos(_Os): _icon = "centos.png" +class Debian(_Os): + _icon = "debian.png" + + class IOS(_Os): _icon = "ios.png" @@ -24,6 +28,14 @@ class LinuxGeneral(_Os): _icon = "linux-general.png" +class Raspbian(_Os): + _icon = "raspbian.png" + + +class RedHat(_Os): + _icon = "red-hat.png" + + class Suse(_Os): _icon = "suse.png" diff --git a/diagrams/generic/virtualization.py b/diagrams/generic/virtualization.py index 0695fd01..f7f9006a 100644 --- a/diagrams/generic/virtualization.py +++ b/diagrams/generic/virtualization.py @@ -8,6 +8,10 @@ class _Virtualization(_Generic): _icon_dir = "resources/generic/virtualization" +class Qemu(_Virtualization): + _icon = "qemu.png" + + class Virtualbox(_Virtualization): _icon = "virtualbox.png" diff --git a/diagrams/ibm/__init__.py b/diagrams/ibm/__init__.py new file mode 100644 index 00000000..450fa366 --- /dev/null +++ b/diagrams/ibm/__init__.py @@ -0,0 +1,12 @@ +""" +IBM provides a set of services for IBM Cloud provider. +""" + +from diagrams import Node + + +class _IBM(Node): + _provider = "ibm" + _icon_dir = "resources/ibm" + + fontcolor = "#ffffff" diff --git a/diagrams/ibm/analytics.py b/diagrams/ibm/analytics.py new file mode 100644 index 00000000..dc641a43 --- /dev/null +++ b/diagrams/ibm/analytics.py @@ -0,0 +1,31 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _Analytics(_IBM): + _type = "analytics" + _icon_dir = "resources/ibm/analytics" + + +class Analytics(_Analytics): + _icon = "analytics.png" + + +class DataIntegration(_Analytics): + _icon = "data-integration.png" + + +class DataRepositories(_Analytics): + _icon = "data-repositories.png" + + +class DeviceAnalytics(_Analytics): + _icon = "device-analytics.png" + + +class StreamingComputing(_Analytics): + _icon = "streaming-computing.png" + + +# Aliases diff --git a/diagrams/ibm/applications.py b/diagrams/ibm/applications.py new file mode 100644 index 00000000..c9e51713 --- /dev/null +++ b/diagrams/ibm/applications.py @@ -0,0 +1,87 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _Applications(_IBM): + _type = "applications" + _icon_dir = "resources/ibm/applications" + + +class ActionableInsight(_Applications): + _icon = "actionable-insight.png" + + +class Annotate(_Applications): + _icon = "annotate.png" + + +class ApiDeveloperPortal(_Applications): + _icon = "api-developer-portal.png" + + +class ApiPolyglotRuntimes(_Applications): + _icon = "api-polyglot-runtimes.png" + + +class AppServer(_Applications): + _icon = "app-server.png" + + +class ApplicationLogic(_Applications): + _icon = "application-logic.png" + + +class EnterpriseApplications(_Applications): + _icon = "enterprise-applications.png" + + +class Index(_Applications): + _icon = "index.png" + + +class IotApplication(_Applications): + _icon = "iot-application.png" + + +class Microservice(_Applications): + _icon = "microservice.png" + + +class MobileApp(_Applications): + _icon = "mobile-app.png" + + +class Ontology(_Applications): + _icon = "ontology.png" + + +class OpenSourceTools(_Applications): + _icon = "open-source-tools.png" + + +class RuntimeServices(_Applications): + _icon = "runtime-services.png" + + +class SaasApplications(_Applications): + _icon = "saas-applications.png" + + +class ServiceBroker(_Applications): + _icon = "service-broker.png" + + +class SpeechToText(_Applications): + _icon = "speech-to-text.png" + + +class VisualRecognition(_Applications): + _icon = "visual-recognition.png" + + +class Visualization(_Applications): + _icon = "visualization.png" + + +# Aliases diff --git a/diagrams/ibm/blockchain.py b/diagrams/ibm/blockchain.py new file mode 100644 index 00000000..3c5b5a01 --- /dev/null +++ b/diagrams/ibm/blockchain.py @@ -0,0 +1,91 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _Blockchain(_IBM): + _type = "blockchain" + _icon_dir = "resources/ibm/blockchain" + + +class BlockchainDeveloper(_Blockchain): + _icon = "blockchain-developer.png" + + +class Blockchain(_Blockchain): + _icon = "blockchain.png" + + +class CertificateAuthority(_Blockchain): + _icon = "certificate-authority.png" + + +class ClientApplication(_Blockchain): + _icon = "client-application.png" + + +class Communication(_Blockchain): + _icon = "communication.png" + + +class Consensus(_Blockchain): + _icon = "consensus.png" + + +class EventListener(_Blockchain): + _icon = "event-listener.png" + + +class Event(_Blockchain): + _icon = "event.png" + + +class ExistingEnterpriseSystems(_Blockchain): + _icon = "existing-enterprise-systems.png" + + +class HyperledgerFabric(_Blockchain): + _icon = "hyperledger-fabric.png" + + +class KeyManagement(_Blockchain): + _icon = "key-management.png" + + +class Ledger(_Blockchain): + _icon = "ledger.png" + + +class MembershipServicesProviderApi(_Blockchain): + _icon = "membership-services-provider-api.png" + + +class Membership(_Blockchain): + _icon = "membership.png" + + +class MessageBus(_Blockchain): + _icon = "message-bus.png" + + +class Node(_Blockchain): + _icon = "node.png" + + +class Services(_Blockchain): + _icon = "services.png" + + +class SmartContract(_Blockchain): + _icon = "smart-contract.png" + + +class TransactionManager(_Blockchain): + _icon = "transaction-manager.png" + + +class Wallet(_Blockchain): + _icon = "wallet.png" + + +# Aliases diff --git a/diagrams/ibm/compute.py b/diagrams/ibm/compute.py new file mode 100644 index 00000000..7bff4f0d --- /dev/null +++ b/diagrams/ibm/compute.py @@ -0,0 +1,31 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _Compute(_IBM): + _type = "compute" + _icon_dir = "resources/ibm/compute" + + +class BareMetalServer(_Compute): + _icon = "bare-metal-server.png" + + +class ImageService(_Compute): + _icon = "image-service.png" + + +class Instance(_Compute): + _icon = "instance.png" + + +class Key(_Compute): + _icon = "key.png" + + +class PowerInstance(_Compute): + _icon = "power-instance.png" + + +# Aliases diff --git a/diagrams/ibm/data.py b/diagrams/ibm/data.py new file mode 100644 index 00000000..2434cd51 --- /dev/null +++ b/diagrams/ibm/data.py @@ -0,0 +1,63 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _Data(_IBM): + _type = "data" + _icon_dir = "resources/ibm/data" + + +class Caches(_Data): + _icon = "caches.png" + + +class Cloud(_Data): + _icon = "cloud.png" + + +class ConversationTrainedDeployed(_Data): + _icon = "conversation-trained-deployed.png" + + +class DataServices(_Data): + _icon = "data-services.png" + + +class DataSources(_Data): + _icon = "data-sources.png" + + +class DeviceIdentityService(_Data): + _icon = "device-identity-service.png" + + +class DeviceRegistry(_Data): + _icon = "device-registry.png" + + +class EnterpriseData(_Data): + _icon = "enterprise-data.png" + + +class EnterpriseUserDirectory(_Data): + _icon = "enterprise-user-directory.png" + + +class FileRepository(_Data): + _icon = "file-repository.png" + + +class GroundTruth(_Data): + _icon = "ground-truth.png" + + +class Model(_Data): + _icon = "model.png" + + +class TmsDataInterface(_Data): + _icon = "tms-data-interface.png" + + +# Aliases diff --git a/diagrams/ibm/devops.py b/diagrams/ibm/devops.py new file mode 100644 index 00000000..fd41d700 --- /dev/null +++ b/diagrams/ibm/devops.py @@ -0,0 +1,51 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _Devops(_IBM): + _type = "devops" + _icon_dir = "resources/ibm/devops" + + +class ArtifactManagement(_Devops): + _icon = "artifact-management.png" + + +class BuildTest(_Devops): + _icon = "build-test.png" + + +class CodeEditor(_Devops): + _icon = "code-editor.png" + + +class CollaborativeDevelopment(_Devops): + _icon = "collaborative-development.png" + + +class ConfigurationManagement(_Devops): + _icon = "configuration-management.png" + + +class ContinuousDeploy(_Devops): + _icon = "continuous-deploy.png" + + +class ContinuousTesting(_Devops): + _icon = "continuous-testing.png" + + +class Devops(_Devops): + _icon = "devops.png" + + +class Provision(_Devops): + _icon = "provision.png" + + +class ReleaseManagement(_Devops): + _icon = "release-management.png" + + +# Aliases diff --git a/diagrams/ibm/general.py b/diagrams/ibm/general.py new file mode 100644 index 00000000..5b490070 --- /dev/null +++ b/diagrams/ibm/general.py @@ -0,0 +1,119 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _General(_IBM): + _type = "general" + _icon_dir = "resources/ibm/general" + + +class CloudMessaging(_General): + _icon = "cloud-messaging.png" + + +class CloudServices(_General): + _icon = "cloud-services.png" + + +class Cloudant(_General): + _icon = "cloudant.png" + + +class CognitiveServices(_General): + _icon = "cognitive-services.png" + + +class DataSecurity(_General): + _icon = "data-security.png" + + +class Enterprise(_General): + _icon = "enterprise.png" + + +class GovernanceRiskCompliance(_General): + _icon = "governance-risk-compliance.png" + + +class IBMContainers(_General): + _icon = "ibm-containers.png" + + +class IBMPublicCloud(_General): + _icon = "ibm-public-cloud.png" + + +class IdentityAccessManagement(_General): + _icon = "identity-access-management.png" + + +class IdentityProvider(_General): + _icon = "identity-provider.png" + + +class InfrastructureSecurity(_General): + _icon = "infrastructure-security.png" + + +class Internet(_General): + _icon = "internet.png" + + +class IotCloud(_General): + _icon = "iot-cloud.png" + + +class MicroservicesApplication(_General): + _icon = "microservices-application.png" + + +class MicroservicesMesh(_General): + _icon = "microservices-mesh.png" + + +class MonitoringLogging(_General): + _icon = "monitoring-logging.png" + + +class Monitoring(_General): + _icon = "monitoring.png" + + +class ObjectStorage(_General): + _icon = "object-storage.png" + + +class OfflineCapabilities(_General): + _icon = "offline-capabilities.png" + + +class Openwhisk(_General): + _icon = "openwhisk.png" + + +class PeerCloud(_General): + _icon = "peer-cloud.png" + + +class RetrieveRank(_General): + _icon = "retrieve-rank.png" + + +class Scalable(_General): + _icon = "scalable.png" + + +class ServiceDiscoveryConfiguration(_General): + _icon = "service-discovery-configuration.png" + + +class TextToSpeech(_General): + _icon = "text-to-speech.png" + + +class TransformationConnectivity(_General): + _icon = "transformation-connectivity.png" + + +# Aliases diff --git a/diagrams/ibm/infrastructure.py b/diagrams/ibm/infrastructure.py new file mode 100644 index 00000000..48a3c042 --- /dev/null +++ b/diagrams/ibm/infrastructure.py @@ -0,0 +1,83 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _Infrastructure(_IBM): + _type = "infrastructure" + _icon_dir = "resources/ibm/infrastructure" + + +class Channels(_Infrastructure): + _icon = "channels.png" + + +class CloudMessaging(_Infrastructure): + _icon = "cloud-messaging.png" + + +class Dashboard(_Infrastructure): + _icon = "dashboard.png" + + +class Diagnostics(_Infrastructure): + _icon = "diagnostics.png" + + +class EdgeServices(_Infrastructure): + _icon = "edge-services.png" + + +class EnterpriseMessaging(_Infrastructure): + _icon = "enterprise-messaging.png" + + +class EventFeed(_Infrastructure): + _icon = "event-feed.png" + + +class InfrastructureServices(_Infrastructure): + _icon = "infrastructure-services.png" + + +class InterserviceCommunication(_Infrastructure): + _icon = "interservice-communication.png" + + +class LoadBalancingRouting(_Infrastructure): + _icon = "load-balancing-routing.png" + + +class MicroservicesMesh(_Infrastructure): + _icon = "microservices-mesh.png" + + +class MobileBackend(_Infrastructure): + _icon = "mobile-backend.png" + + +class MobileProviderNetwork(_Infrastructure): + _icon = "mobile-provider-network.png" + + +class MonitoringLogging(_Infrastructure): + _icon = "monitoring-logging.png" + + +class Monitoring(_Infrastructure): + _icon = "monitoring.png" + + +class PeerServices(_Infrastructure): + _icon = "peer-services.png" + + +class ServiceDiscoveryConfiguration(_Infrastructure): + _icon = "service-discovery-configuration.png" + + +class TransformationConnectivity(_Infrastructure): + _icon = "transformation-connectivity.png" + + +# Aliases diff --git a/diagrams/ibm/management.py b/diagrams/ibm/management.py new file mode 100644 index 00000000..8ec9ac7c --- /dev/null +++ b/diagrams/ibm/management.py @@ -0,0 +1,71 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _Management(_IBM): + _type = "management" + _icon_dir = "resources/ibm/management" + + +class AlertNotification(_Management): + _icon = "alert-notification.png" + + +class ApiManagement(_Management): + _icon = "api-management.png" + + +class CloudManagement(_Management): + _icon = "cloud-management.png" + + +class ClusterManagement(_Management): + _icon = "cluster-management.png" + + +class ContentManagement(_Management): + _icon = "content-management.png" + + +class DataServices(_Management): + _icon = "data-services.png" + + +class DeviceManagement(_Management): + _icon = "device-management.png" + + +class InformationGovernance(_Management): + _icon = "information-governance.png" + + +class ItServiceManagement(_Management): + _icon = "it-service-management.png" + + +class Management(_Management): + _icon = "management.png" + + +class MonitoringMetrics(_Management): + _icon = "monitoring-metrics.png" + + +class ProcessManagement(_Management): + _icon = "process-management.png" + + +class ProviderCloudPortalService(_Management): + _icon = "provider-cloud-portal-service.png" + + +class PushNotifications(_Management): + _icon = "push-notifications.png" + + +class ServiceManagementTools(_Management): + _icon = "service-management-tools.png" + + +# Aliases diff --git a/diagrams/ibm/network.py b/diagrams/ibm/network.py new file mode 100644 index 00000000..605319d1 --- /dev/null +++ b/diagrams/ibm/network.py @@ -0,0 +1,95 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _Network(_IBM): + _type = "network" + _icon_dir = "resources/ibm/network" + + +class Bridge(_Network): + _icon = "bridge.png" + + +class DirectLink(_Network): + _icon = "direct-link.png" + + +class Enterprise(_Network): + _icon = "enterprise.png" + + +class Firewall(_Network): + _icon = "firewall.png" + + +class FloatingIp(_Network): + _icon = "floating-ip.png" + + +class Gateway(_Network): + _icon = "gateway.png" + + +class InternetServices(_Network): + _icon = "internet-services.png" + + +class LoadBalancerListener(_Network): + _icon = "load-balancer-listener.png" + + +class LoadBalancerPool(_Network): + _icon = "load-balancer-pool.png" + + +class LoadBalancer(_Network): + _icon = "load-balancer.png" + + +class LoadBalancingRouting(_Network): + _icon = "load-balancing-routing.png" + + +class PublicGateway(_Network): + _icon = "public-gateway.png" + + +class Region(_Network): + _icon = "region.png" + + +class Router(_Network): + _icon = "router.png" + + +class Rules(_Network): + _icon = "rules.png" + + +class Subnet(_Network): + _icon = "subnet.png" + + +class TransitGateway(_Network): + _icon = "transit-gateway.png" + + +class Vpc(_Network): + _icon = "vpc.png" + + +class VpnConnection(_Network): + _icon = "vpn-connection.png" + + +class VpnGateway(_Network): + _icon = "vpn-gateway.png" + + +class VpnPolicy(_Network): + _icon = "vpn-policy.png" + + +# Aliases diff --git a/diagrams/ibm/security.py b/diagrams/ibm/security.py new file mode 100644 index 00000000..ba35efd5 --- /dev/null +++ b/diagrams/ibm/security.py @@ -0,0 +1,67 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _Security(_IBM): + _type = "security" + _icon_dir = "resources/ibm/security" + + +class ApiSecurity(_Security): + _icon = "api-security.png" + + +class BlockchainSecurityService(_Security): + _icon = "blockchain-security-service.png" + + +class DataSecurity(_Security): + _icon = "data-security.png" + + +class Firewall(_Security): + _icon = "firewall.png" + + +class Gateway(_Security): + _icon = "gateway.png" + + +class GovernanceRiskCompliance(_Security): + _icon = "governance-risk-compliance.png" + + +class IdentityAccessManagement(_Security): + _icon = "identity-access-management.png" + + +class IdentityProvider(_Security): + _icon = "identity-provider.png" + + +class InfrastructureSecurity(_Security): + _icon = "infrastructure-security.png" + + +class PhysicalSecurity(_Security): + _icon = "physical-security.png" + + +class SecurityMonitoringIntelligence(_Security): + _icon = "security-monitoring-intelligence.png" + + +class SecurityServices(_Security): + _icon = "security-services.png" + + +class TrustendComputing(_Security): + _icon = "trustend-computing.png" + + +class Vpn(_Security): + _icon = "vpn.png" + + +# Aliases diff --git a/diagrams/ibm/social.py b/diagrams/ibm/social.py new file mode 100644 index 00000000..66fd7c4a --- /dev/null +++ b/diagrams/ibm/social.py @@ -0,0 +1,31 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _Social(_IBM): + _type = "social" + _icon_dir = "resources/ibm/social" + + +class Communities(_Social): + _icon = "communities.png" + + +class FileSync(_Social): + _icon = "file-sync.png" + + +class LiveCollaboration(_Social): + _icon = "live-collaboration.png" + + +class Messaging(_Social): + _icon = "messaging.png" + + +class Networking(_Social): + _icon = "networking.png" + + +# Aliases diff --git a/diagrams/ibm/storage.py b/diagrams/ibm/storage.py new file mode 100644 index 00000000..b0f7e2a7 --- /dev/null +++ b/diagrams/ibm/storage.py @@ -0,0 +1,19 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _Storage(_IBM): + _type = "storage" + _icon_dir = "resources/ibm/storage" + + +class BlockStorage(_Storage): + _icon = "block-storage.png" + + +class ObjectStorage(_Storage): + _icon = "object-storage.png" + + +# Aliases diff --git a/diagrams/ibm/user.py b/diagrams/ibm/user.py new file mode 100644 index 00000000..88484706 --- /dev/null +++ b/diagrams/ibm/user.py @@ -0,0 +1,35 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _IBM + + +class _User(_IBM): + _type = "user" + _icon_dir = "resources/ibm/user" + + +class Browser(_User): + _icon = "browser.png" + + +class Device(_User): + _icon = "device.png" + + +class IntegratedDigitalExperiences(_User): + _icon = "integrated-digital-experiences.png" + + +class PhysicalEntity(_User): + _icon = "physical-entity.png" + + +class Sensor(_User): + _icon = "sensor.png" + + +class User(_User): + _icon = "user.png" + + +# Aliases diff --git a/diagrams/oci/connectivity.py b/diagrams/oci/connectivity.py index 8c51f602..658ac0a7 100644 --- a/diagrams/oci/connectivity.py +++ b/diagrams/oci/connectivity.py @@ -32,12 +32,12 @@ class CustomerDatacntrWhite(_Connectivity): _icon = "customer-datacntr-white.png" -class CustomerPremiseWhite(_Connectivity): - _icon = "customer-premise-white.png" +class CustomerPremisesWhite(_Connectivity): + _icon = "customer-premises-white.png" -class CustomerPremise(_Connectivity): - _icon = "customer-premise.png" +class CustomerPremises(_Connectivity): + _icon = "customer-premises.png" class DisconnectedRegionsWhite(_Connectivity): diff --git a/diagrams/onprem/__init__.py b/diagrams/onprem/__init__.py index e0a9596d..73d3e1fb 100644 --- a/diagrams/onprem/__init__.py +++ b/diagrams/onprem/__init__.py @@ -1,5 +1,5 @@ """ -OnPrem provides a set of general on-premise services. +OnPrem provides a set of general on-premises services. """ from diagrams import Node diff --git a/diagrams/onprem/analytics.py b/diagrams/onprem/analytics.py index df70419b..7e3ee9a3 100644 --- a/diagrams/onprem/analytics.py +++ b/diagrams/onprem/analytics.py @@ -20,6 +20,10 @@ class Dbt(_Analytics): _icon = "dbt.png" +class Dremio(_Analytics): + _icon = "dremio.png" + + class Flink(_Analytics): _icon = "flink.png" @@ -68,6 +72,10 @@ class Tableau(_Analytics): _icon = "tableau.png" +class Trino(_Analytics): + _icon = "trino.png" + + # Aliases PowerBI = Powerbi diff --git a/diagrams/onprem/container.py b/diagrams/onprem/container.py index b60e4ac8..6e4f5d5d 100644 --- a/diagrams/onprem/container.py +++ b/diagrams/onprem/container.py @@ -28,6 +28,10 @@ class Gvisor(_Container): _icon = "gvisor.png" +class K3S(_Container): + _icon = "k3s.png" + + class Lxc(_Container): _icon = "lxc.png" diff --git a/diagrams/onprem/iac.py b/diagrams/onprem/iac.py index a9db5c0e..33d8ea77 100644 --- a/diagrams/onprem/iac.py +++ b/diagrams/onprem/iac.py @@ -20,6 +20,10 @@ class Awx(_Iac): _icon = "awx.png" +class Puppet(_Iac): + _icon = "puppet.png" + + class Terraform(_Iac): _icon = "terraform.png" diff --git a/diagrams/onprem/messaging.py b/diagrams/onprem/messaging.py new file mode 100644 index 00000000..65f33c30 --- /dev/null +++ b/diagrams/onprem/messaging.py @@ -0,0 +1,15 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _OnPrem + + +class _Messaging(_OnPrem): + _type = "messaging" + _icon_dir = "resources/onprem/messaging" + + +class Centrifugo(_Messaging): + _icon = "centrifugo.png" + + +# Aliases diff --git a/diagrams/onprem/mlops.py b/diagrams/onprem/mlops.py index 7678d9a4..dd9fd862 100644 --- a/diagrams/onprem/mlops.py +++ b/diagrams/onprem/mlops.py @@ -8,6 +8,10 @@ class _Mlops(_OnPrem): _icon_dir = "resources/onprem/mlops" +class Mlflow(_Mlops): + _icon = "mlflow.png" + + class Polyaxon(_Mlops): _icon = "polyaxon.png" diff --git a/diagrams/onprem/monitoring.py b/diagrams/onprem/monitoring.py index c097ecaa..2423a2db 100644 --- a/diagrams/onprem/monitoring.py +++ b/diagrams/onprem/monitoring.py @@ -16,6 +16,10 @@ class Datadog(_Monitoring): _icon = "datadog.png" +class Dynatrace(_Monitoring): + _icon = "dynatrace.png" + + class Grafana(_Monitoring): _icon = "grafana.png" @@ -24,6 +28,14 @@ class Humio(_Monitoring): _icon = "humio.png" +class Mimir(_Monitoring): + _icon = "mimir.png" + + +class Nagios(_Monitoring): + _icon = "nagios.png" + + class Newrelic(_Monitoring): _icon = "newrelic.png" diff --git a/diagrams/onprem/network.py b/diagrams/onprem/network.py index b7e162a6..7ef068b5 100644 --- a/diagrams/onprem/network.py +++ b/diagrams/onprem/network.py @@ -72,6 +72,10 @@ class Linkerd(_Network): _icon = "linkerd.png" +class Mikrotik(_Network): + _icon = "mikrotik.png" + + class Nginx(_Network): _icon = "nginx.png" @@ -108,6 +112,10 @@ class Traefik(_Network): _icon = "traefik.png" +class Tyk(_Network): + _icon = "tyk.png" + + class Vyos(_Network): _icon = "vyos.png" @@ -116,6 +124,10 @@ class Wildfly(_Network): _icon = "wildfly.png" +class Yarp(_Network): + _icon = "yarp.png" + + class Zookeeper(_Network): _icon = "zookeeper.png" diff --git a/diagrams/onprem/queue.py b/diagrams/onprem/queue.py index a8ffd653..7a54649c 100644 --- a/diagrams/onprem/queue.py +++ b/diagrams/onprem/queue.py @@ -16,6 +16,10 @@ class Celery(_Queue): _icon = "celery.png" +class Emqx(_Queue): + _icon = "emqx.png" + + class Kafka(_Queue): _icon = "kafka.png" @@ -35,5 +39,6 @@ class Zeromq(_Queue): # Aliases ActiveMQ = Activemq +EMQX = Emqx RabbitMQ = Rabbitmq ZeroMQ = Zeromq diff --git a/diagrams/onprem/registry.py b/diagrams/onprem/registry.py new file mode 100644 index 00000000..259df50e --- /dev/null +++ b/diagrams/onprem/registry.py @@ -0,0 +1,19 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _OnPrem + + +class _Registry(_OnPrem): + _type = "registry" + _icon_dir = "resources/onprem/registry" + + +class Harbor(_Registry): + _icon = "harbor.png" + + +class Jfrog(_Registry): + _icon = "jfrog.png" + + +# Aliases diff --git a/diagrams/onprem/storage.py b/diagrams/onprem/storage.py index 37e0a370..9462b7c1 100644 --- a/diagrams/onprem/storage.py +++ b/diagrams/onprem/storage.py @@ -20,6 +20,10 @@ class Glusterfs(_Storage): _icon = "glusterfs.png" +class Portworx(_Storage): + _icon = "portworx.png" + + # Aliases CEPH = Ceph diff --git a/diagrams/onprem/tracing.py b/diagrams/onprem/tracing.py index e4353538..f42fef25 100644 --- a/diagrams/onprem/tracing.py +++ b/diagrams/onprem/tracing.py @@ -12,4 +12,8 @@ class Jaeger(_Tracing): _icon = "jaeger.png" +class Tempo(_Tracing): + _icon = "tempo.png" + + # Aliases diff --git a/diagrams/onprem/vcs.py b/diagrams/onprem/vcs.py index 6bd2f4ec..d5f06644 100644 --- a/diagrams/onprem/vcs.py +++ b/diagrams/onprem/vcs.py @@ -12,6 +12,10 @@ class Git(_Vcs): _icon = "git.png" +class Gitea(_Vcs): + _icon = "gitea.png" + + class Github(_Vcs): _icon = "github.png" @@ -20,4 +24,8 @@ class Gitlab(_Vcs): _icon = "gitlab.png" +class Svn(_Vcs): + _icon = "svn.png" + + # Aliases diff --git a/diagrams/programming/framework.py b/diagrams/programming/framework.py index f8d901fb..10b184b9 100644 --- a/diagrams/programming/framework.py +++ b/diagrams/programming/framework.py @@ -16,10 +16,18 @@ class Backbone(_Framework): _icon = "backbone.png" +class Camel(_Framework): + _icon = "camel.png" + + class Django(_Framework): _icon = "django.png" +class Dotnet(_Framework): + _icon = "dotnet.png" + + class Ember(_Framework): _icon = "ember.png" @@ -36,6 +44,18 @@ class Flutter(_Framework): _icon = "flutter.png" +class Graphql(_Framework): + _icon = "graphql.png" + + +class Hibernate(_Framework): + _icon = "hibernate.png" + + +class Jhipster(_Framework): + _icon = "jhipster.png" + + class Laravel(_Framework): _icon = "laravel.png" @@ -44,6 +64,14 @@ class Micronaut(_Framework): _icon = "micronaut.png" +class Nextjs(_Framework): + _icon = "nextjs.png" + + +class Quarkus(_Framework): + _icon = "quarkus.png" + + class Rails(_Framework): _icon = "rails.png" @@ -56,6 +84,18 @@ class Spring(_Framework): _icon = "spring.png" +class Starlette(_Framework): + _icon = "starlette.png" + + +class Svelte(_Framework): + _icon = "svelte.png" + + +class Vercel(_Framework): + _icon = "vercel.png" + + class Vue(_Framework): _icon = "vue.png" @@ -63,3 +103,7 @@ class Vue(_Framework): # Aliases FastAPI = Fastapi +GraphQL = Graphql +DotNet = Dotnet +NextJs = Nextjs +JHipster = Jhipster diff --git a/diagrams/programming/language.py b/diagrams/programming/language.py index 48f11a7f..5503c7b6 100644 --- a/diagrams/programming/language.py +++ b/diagrams/programming/language.py @@ -52,6 +52,10 @@ class Kotlin(_Language): _icon = "kotlin.png" +class Latex(_Language): + _icon = "latex.png" + + class Matlab(_Language): _icon = "matlab.png" diff --git a/diagrams/programming/runtime.py b/diagrams/programming/runtime.py new file mode 100644 index 00000000..2a3a9aa2 --- /dev/null +++ b/diagrams/programming/runtime.py @@ -0,0 +1,15 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _Programming + + +class _Runtime(_Programming): + _type = "runtime" + _icon_dir = "resources/programming/runtime" + + +class Dapr(_Runtime): + _icon = "dapr.png" + + +# Aliases diff --git a/diagrams/saas/alerting.py b/diagrams/saas/alerting.py index 0e3f65e1..0df15d83 100644 --- a/diagrams/saas/alerting.py +++ b/diagrams/saas/alerting.py @@ -16,8 +16,16 @@ class Opsgenie(_Alerting): _icon = "opsgenie.png" +class Pagerduty(_Alerting): + _icon = "pagerduty.png" + + class Pushover(_Alerting): _icon = "pushover.png" +class Xmatters(_Alerting): + _icon = "xmatters.png" + + # Aliases diff --git a/diagrams/saas/analytics.py b/diagrams/saas/analytics.py index 20659b3e..6d4f62c8 100644 --- a/diagrams/saas/analytics.py +++ b/diagrams/saas/analytics.py @@ -8,6 +8,10 @@ class _Analytics(_Saas): _icon_dir = "resources/saas/analytics" +class Dataform(_Analytics): + _icon = "dataform.png" + + class Snowflake(_Analytics): _icon = "snowflake.png" diff --git a/diagrams/saas/cdn.py b/diagrams/saas/cdn.py index 3733621d..cc0b4fc2 100644 --- a/diagrams/saas/cdn.py +++ b/diagrams/saas/cdn.py @@ -16,4 +16,8 @@ class Cloudflare(_Cdn): _icon = "cloudflare.png" +class Fastly(_Cdn): + _icon = "fastly.png" + + # Aliases diff --git a/diagrams/saas/chat.py b/diagrams/saas/chat.py index e48587ab..446d4c91 100644 --- a/diagrams/saas/chat.py +++ b/diagrams/saas/chat.py @@ -12,10 +12,18 @@ class Discord(_Chat): _icon = "discord.png" +class Line(_Chat): + _icon = "line.png" + + class Mattermost(_Chat): _icon = "mattermost.png" +class Messenger(_Chat): + _icon = "messenger.png" + + class RocketChat(_Chat): _icon = "rocket-chat.png" diff --git a/diagrams/saas/communication.py b/diagrams/saas/communication.py new file mode 100644 index 00000000..7d3a6f02 --- /dev/null +++ b/diagrams/saas/communication.py @@ -0,0 +1,15 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _Saas + + +class _Communication(_Saas): + _type = "communication" + _icon_dir = "resources/saas/communication" + + +class Twilio(_Communication): + _icon = "twilio.png" + + +# Aliases diff --git a/diagrams/saas/security.py b/diagrams/saas/security.py new file mode 100644 index 00000000..b49211e6 --- /dev/null +++ b/diagrams/saas/security.py @@ -0,0 +1,19 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _Saas + + +class _Security(_Saas): + _type = "security" + _icon_dir = "resources/saas/security" + + +class Scrowdstrike(_Security): + _icon = "scrowdstrike.png" + + +class Sonarqube(_Security): + _icon = "sonarqube.png" + + +# Aliases diff --git a/docker/dev/Dockerfile b/docker/dev/Dockerfile index 8aed1225..8ec78b36 100644 --- a/docker/dev/Dockerfile +++ b/docker/dev/Dockerfile @@ -6,7 +6,7 @@ RUN apk update && apk add --no-cache \ gcc libc-dev g++ graphviz git bash go imagemagick inkscape ttf-opensans curl fontconfig xdg-utils # install go package. -RUN go get github.com/mingrammer/round +RUN go install github.com/mingrammer/round@latest # install fonts RUN curl -O https://noto-website.storage.googleapis.com/pkgs/NotoSansCJKjp-hinted.zip \ diff --git a/docs/getting-started/examples.md b/docs/getting-started/examples.md index d32a3e6f..d2d2f4c7 100644 --- a/docs/getting-started/examples.md +++ b/docs/getting-started/examples.md @@ -42,13 +42,13 @@ with Diagram("Clustered Web Services", show=False): ECS("web3")] with Cluster("DB Cluster"): - db_master = RDS("userdb") - db_master - [RDS("userdb ro")] + db_primary = RDS("userdb") + db_primary - [RDS("userdb ro")] memcached = ElastiCache("memcached") dns >> lb >> svc_group - svc_group >> db_master + svc_group >> db_primary svc_group >> memcached ``` @@ -170,7 +170,7 @@ with Diagram("Stateful Architecture", show=False): ![stateful architecture diagram](/img/stateful_architecture_diagram.png) -## Advanced Web Service with On-Premise +## Advanced Web Service with On-Premises ```python from diagrams import Cluster, Diagram @@ -183,7 +183,7 @@ from diagrams.onprem.monitoring import Grafana, Prometheus from diagrams.onprem.network import Nginx from diagrams.onprem.queue import Kafka -with Diagram("Advanced Web Service with On-Premise", show=False): +with Diagram("Advanced Web Service with On-Premises", show=False): ingress = Nginx("ingress") metrics = Prometheus("metric") @@ -196,14 +196,14 @@ with Diagram("Advanced Web Service with On-Premise", show=False): Server("grpc3")] with Cluster("Sessions HA"): - master = Redis("session") - master - Redis("replica") << metrics - grpcsvc >> master + primary = Redis("session") + primary - Redis("replica") << metrics + grpcsvc >> primary with Cluster("Database HA"): - master = PostgreSQL("users") - master - PostgreSQL("slave") << metrics - grpcsvc >> master + primary = PostgreSQL("users") + primary - PostgreSQL("replica") << metrics + grpcsvc >> primary aggregator = Fluentd("logging") aggregator >> Kafka("stream") >> Spark("analytics") @@ -239,14 +239,14 @@ with Diagram(name="Advanced Web Service with On-Premise (colored)", show=False): Server("grpc3")] with Cluster("Sessions HA"): - master = Redis("session") - master - Edge(color="brown", style="dashed") - Redis("replica") << Edge(label="collect") << metrics - grpcsvc >> Edge(color="brown") >> master + primary = Redis("session") + primary - Edge(color="brown", style="dashed") - Redis("replica") << Edge(label="collect") << metrics + grpcsvc >> Edge(color="brown") >> primary with Cluster("Database HA"): - master = PostgreSQL("users") - master - Edge(color="brown", style="dotted") - PostgreSQL("slave") << Edge(label="collect") << metrics - grpcsvc >> Edge(color="black") >> master + primary = PostgreSQL("users") + primary - Edge(color="brown", style="dotted") - PostgreSQL("replica") << Edge(label="collect") << metrics + grpcsvc >> Edge(color="black") >> primary aggregator = Fluentd("logging") aggregator >> Edge(label="parse") >> Kafka("stream") >> Edge(color="black", style="bold") >> Spark("analytics") diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 90f6be80..f38b5242 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -3,11 +3,13 @@ id: installation title: Installation --- -It requires **Python 3.6** or higher, check your Python version first. +**diagrams** requires **Python 3.7** or higher, check your Python version first. -It uses [Graphviz](https://www.graphviz.org/) to render the diagram, so you need to [install Graphviz](https://graphviz.gitlab.io/download/) to use **diagrams**. After installing graphviz (or already have it), install the **diagrams**. +**diagrams** uses [Graphviz](https://www.graphviz.org/) to render the diagram, so you need to [install Graphviz](https://graphviz.gitlab.io/download/) to use it. -> macOS users can download the Graphviz via `brew install graphviz` if you're using [Homebrew](https://brew.sh). Similarly, Windows users with [Chocolatey](https://chocolatey.org) installed can run `choco install graphviz`. +> macOS users using [Homebrew](https://brew.sh) can install Graphviz via `brew install graphviz` . Similarly, Windows users with [Chocolatey](https://chocolatey.org) installed can run `choco install graphviz`. + +After installing Graphviz (or if you already have it), install **diagrams**: ```shell # using pip (pip3) @@ -33,16 +35,18 @@ with Diagram("Web Service", show=False): ELB("lb") >> EC2("web") >> RDS("userdb") ``` -This code generates below diagram. +To generate the diagram, run: ```shell $ python diagram.py ``` +This generates the diagram below: + ![web service diagram](/img/web_service_diagram.png) -It will be saved as `web_service.png` on your working directory. +It will be saved as `web_service.png` in your working directory. ## Next -See more [Examples](/docs/getting-started/examples) or see [Guides](/docs/guides/diagram) page for more details. +See more [Examples](/docs/getting-started/examples) or see the [Guides](/docs/guides/diagram) page for more details. diff --git a/docs/guides/cluster.md b/docs/guides/cluster.md index 6cbf820e..b24bb446 100644 --- a/docs/guides/cluster.md +++ b/docs/guides/cluster.md @@ -3,13 +3,13 @@ id: cluster title: Clusters --- -Cluster allows you group (or clustering) the nodes in an isolated group. +`Cluster` allows you to group (or cluster) nodes in an isolated group. ## Basic -Cluster represents a local cluster context. +`Cluster` represents a local cluster context. -You can create a cluster context with Cluster class. And you can also connect the nodes in a cluster to other nodes outside a cluster. +You can create a cluster context using the `Cluster` class. You can also connect the nodes in a cluster to other nodes outside a cluster. ```python from diagrams import Cluster, Diagram @@ -22,18 +22,18 @@ with Diagram("Simple Web Service with DB Cluster", show=False): web = ECS("service") with Cluster("DB Cluster"): - db_master = RDS("master") - db_master - [RDS("slave1"), - RDS("slave2")] + db_primary = RDS("primary") + db_primary - [RDS("replica1"), + RDS("replica2")] - dns >> web >> db_master + dns >> web >> db_primary ``` ![simple web service with db cluster diagram](/img/simple_web_service_with_db_cluster_diagram.png) ## Nested Clusters -Nested clustering is also possible. +Nested clustering is also possible: ```python from diagrams import Cluster, Diagram @@ -68,4 +68,4 @@ with Diagram("Event Processing", show=False): ![event processing diagram](/img/event_processing_diagram.png) -> There is no depth limit of nesting. Feel free to create nested clusters as deep as you want. \ No newline at end of file +> There is no depth limit to nesting. Feel free to create nested clusters as deep as you want. diff --git a/docs/guides/diagram.md b/docs/guides/diagram.md index 8420e361..9d71e98f 100644 --- a/docs/guides/diagram.md +++ b/docs/guides/diagram.md @@ -3,13 +3,13 @@ id: diagram title: Diagrams --- -Diagram is a primary object representing a diagram. +`Diagram` is a primary object representing a diagram. ## Basic -Diagram represents a global diagram context. +`Diagram` represents a global diagram context. -You can create a diagram context with Diagram class. The first parameter of Diagram constructor will be used for output filename. +You can create a diagram context with the `Diagram` class. The first parameter of the `Diagram` constructor will be used to generate the output filename. ```python from diagrams import Diagram @@ -19,17 +19,17 @@ with Diagram("Simple Diagram"): EC2("web") ``` -And if you run the above script with below command, +If you run the above script with the command below, ```shell $ python diagram.py ``` -It will generate an image file with single `EC2` node drawn as `simple_diagram.png` on your working directory, and open that created image file immediately. +it will generate an image file with single `EC2` node drawn as `simple_diagram.png` in your working directory and open that created image file immediately. ## Jupyter Notebooks -Diagrams can be also rendered directly inside the notebook as like this: +Diagrams can also be rendered directly inside Jupyter notebooks like this: ```python from diagrams import Diagram @@ -42,9 +42,9 @@ diag ## Options -You can specify the output file format with `outformat` parameter. Default is **png**. +You can specify the output file format with the `outformat` parameter. The default is **png**. -> (png, jpg, svg, and pdf) are allowed. +> Allowed formats are: png, jpg, svg, pdf, and dot ```python from diagrams import Diagram @@ -54,7 +54,17 @@ with Diagram("Simple Diagram", outformat="jpg"): EC2("web") ``` -You can specify the output filename with `filename` parameter. The extension shouldn't be included, it's determined by the `outformat` parameter. +The `outformat` parameter also supports a list to output all the defined outputs in one call: + +```python +from diagrams import Diagram +from diagrams.aws.compute import EC2 + +with Diagram("Simple Diagram Multi Output", outformat=["jpg", "png", "dot"]): + EC2("web") +``` + +You can specify the output filename with the `filename` parameter. The extension shouldn't be included, it's determined by the `outformat` parameter. ```python from diagrams import Diagram @@ -64,7 +74,7 @@ with Diagram("Simple Diagram", filename="my_diagram"): EC2("web") ``` -You can also disable the automatic file opening by setting the `show` parameter as **false**. Default is **true**. +You can also disable the automatic file opening by setting the `show` parameter to **false**. The default is **true**. ```python from diagrams import Diagram @@ -74,7 +84,7 @@ with Diagram("Simple Diagram", show=False): EC2("web") ``` -It allows custom Graphviz dot attributes options. +Diagrams also allow custom Graphviz dot attributes options. > `graph_attr`, `node_attr` and `edge_attr` are supported. Here is a [reference link](https://www.graphviz.org/doc/info/attrs.html). diff --git a/docs/guides/edge.md b/docs/guides/edge.md index 630c3e4a..1c51a15a 100644 --- a/docs/guides/edge.md +++ b/docs/guides/edge.md @@ -3,13 +3,13 @@ id: edge title: Edges --- -Edge is representing an edge between Nodes. +`Edge` represents an edge between nodes. ## Basic -Edge is an object representing a connection between Nodes with some additional properties. +`Edge` is an object representing a connection between nodes with some additional properties. -An edge object contains three attributes: **label**, **color** and **style** which mirror corresponding graphviz edge attributes. +An edge object contains three attributes: **label**, **color**, and **style**. They mirror the corresponding Graphviz edge attributes. ```python from diagrams import Cluster, Diagram, Edge @@ -22,7 +22,7 @@ from diagrams.onprem.monitoring import Grafana, Prometheus from diagrams.onprem.network import Nginx from diagrams.onprem.queue import Kafka -with Diagram(name="Advanced Web Service with On-Premise (colored)", show=False): +with Diagram(name="Advanced Web Service with On-Premises (colored)", show=False): ingress = Nginx("ingress") metrics = Prometheus("metric") @@ -35,22 +35,22 @@ with Diagram(name="Advanced Web Service with On-Premise (colored)", show=False): Server("grpc3")] with Cluster("Sessions HA"): - master = Redis("session") - master \ + primary = Redis("session") + primary \ - Edge(color="brown", style="dashed") \ - Redis("replica") \ << Edge(label="collect") \ << metrics - grpcsvc >> Edge(color="brown") >> master + grpcsvc >> Edge(color="brown") >> primary with Cluster("Database HA"): - master = PostgreSQL("users") - master \ + primary = PostgreSQL("users") + primary \ - Edge(color="brown", style="dotted") \ - - PostgreSQL("slave") \ + - PostgreSQL("replica") \ << Edge(label="collect") \ << metrics - grpcsvc >> Edge(color="black") >> master + grpcsvc >> Edge(color="black") >> primary aggregator = Fluentd("logging") aggregator \ @@ -65,7 +65,6 @@ with Diagram(name="Advanced Web Service with On-Premise (colored)", show=False): >> Edge(color="darkorange") \ >> aggregator ``` - ![advanced web service with on-premise diagram colored](/img/advanced_web_service_with_on-premise_colored.png) ## Less Edges @@ -193,4 +192,4 @@ with Diagram("\n\nAdvanced Web Service with On-Premise Merged edges", show=False diag ``` -![advanced web service with on-premise merged edges](/img/advanced_web_service_with_on-premise_merged_edges.png) +![advanced web service with on-premise merged edges](/img/advanced_web_service_with_on-premise_merged_edges.png) \ No newline at end of file diff --git a/docs/guides/node.md b/docs/guides/node.md index f0f524a7..462440a1 100644 --- a/docs/guides/node.md +++ b/docs/guides/node.md @@ -3,11 +3,11 @@ id: node title: Nodes --- -Node is a second object representing a node or system component. +`Node` is an object representing a node or system component. ## Basic -Node is an abstract concept that represents a single system component object. +`Node` is an abstract concept that represents a single system component object. A node object consists of three parts: **provider**, **resource type** and **name**. You may already have seen each part in the previous example. @@ -19,9 +19,9 @@ with Diagram("Simple Diagram"): EC2("web") ``` -In above example, the `EC2` is a node of `compute` resource type which provided by `aws` provider. +In the example above, the `EC2` is a node of resource type `compute` which is provided by the `aws` provider. -You can use other node objects in a similar manner like: +You can use other node objects in a similar manner: ```python # aws resources @@ -42,7 +42,7 @@ from diagrams.alibabacloud.storage import ObjectTableStore # gcp resources from diagrams.gcp.compute import AppEngine, GKE -from diagrams.gcp.ml import AutoML +from diagrams.gcp.ml import AutoML ... # k8s resources @@ -57,15 +57,17 @@ from diagrams.oci.network import Firewall from diagrams.oci.storage import FileStorage, StorageGateway ``` -You can find all available nodes list in [Here](https://diagrams.mingrammer.com/docs/nodes/aws). +You can find lists of all available nodes for each provider in the sidebar on the left. + +For example, [here](https://diagrams.mingrammer.com/docs/nodes/aws) is the list of all available AWS nodes. ## Data Flow -You can represent data flow by connecting the nodes with these operators: `>>`, `<<` and `-`. +You can represent data flow by connecting the nodes with the operators `>>`, `<<`, and `-`. -* **>>**: Connect nodes in left to right direction. -* **<<**: Connect nodes in right to left direction. -* **-**: Connect nodes in no direction. Undirected. +- **>>** connects nodes in left to right direction. +- **<<** connects nodes in right to left direction. +- **-** connects nodes in no direction. Undirected. ```python from diagrams import Diagram @@ -80,15 +82,15 @@ with Diagram("Web Services", show=False): (ELB("lb") >> EC2("web")) - EC2("web") >> RDS("userdb") ``` -> Be careful when using the `-` and any shift operators together, which could cause unexpected results due to operator precedence. +> Be careful when using `-` and any shift operators together. It can cause unexpected results due to Python's operator precedence, so you might have to use parentheses. ![web services diagram](/img/web_services_diagram.png) > The order of rendered diagrams is the reverse of the declaration order. -You can change the data flow direction with `direction` parameter. Default is **LR**. +You can change the data flow direction with the `direction` parameter. The default is **LR**. -> (TB, BT, LR and RL) are allowed. +> Allowed values are: TB, BT, LR, and RL ```python from diagrams import Diagram @@ -110,7 +112,7 @@ with Diagram("Workers", show=False, direction="TB"): ## Group Data Flow -Above worker example has too many redundant flows. In this case, you can group nodes into a list so that all nodes are connected to other nodes at once. +The above worker example has too many redundant flows. To avoid this, you can group nodes into a list so that all nodes are connected to other nodes at once: ```python from diagrams import Diagram diff --git a/docs/nodes/alibabacloud.md b/docs/nodes/alibabacloud.md index cc274c24..a2744737 100644 --- a/docs/nodes/alibabacloud.md +++ b/docs/nodes/alibabacloud.md @@ -3,128 +3,316 @@ id: alibabacloud title: AlibabaCloud --- -Node classes list of alibabacloud provider. +Node classes list of the alibabacloud provider. ## alibabacloud.analytics -- **diagrams.alibabacloud.analytics.AnalyticDb** -- **diagrams.alibabacloud.analytics.ClickHouse** -- **diagrams.alibabacloud.analytics.DataLakeAnalytics** -- **diagrams.alibabacloud.analytics.ElaticMapReduce** -- **diagrams.alibabacloud.analytics.OpenSearch** + +AnalyticDb +**diagrams.alibabacloud.analytics.AnalyticDb** + +ClickHouse +**diagrams.alibabacloud.analytics.ClickHouse** + +DataLakeAnalytics +**diagrams.alibabacloud.analytics.DataLakeAnalytics** + +ElaticMapReduce +**diagrams.alibabacloud.analytics.ElaticMapReduce** + +OpenSearch +**diagrams.alibabacloud.analytics.OpenSearch** ## alibabacloud.application -- **diagrams.alibabacloud.application.ApiGateway** -- **diagrams.alibabacloud.application.BeeBot** -- **diagrams.alibabacloud.application.BlockchainAsAService** -- **diagrams.alibabacloud.application.CloudCallCenter** -- **diagrams.alibabacloud.application.CodePipeline** -- **diagrams.alibabacloud.application.DirectMail** -- **diagrams.alibabacloud.application.LogService**, **SLS** (alias) -- **diagrams.alibabacloud.application.MessageNotificationService**, **MNS** (alias) -- **diagrams.alibabacloud.application.NodeJsPerformancePlatform** -- **diagrams.alibabacloud.application.OpenSearch** -- **diagrams.alibabacloud.application.PerformanceTestingService**, **PTS** (alias) -- **diagrams.alibabacloud.application.RdCloud** -- **diagrams.alibabacloud.application.SmartConversationAnalysis**, **SCA** (alias) -- **diagrams.alibabacloud.application.Yida** + +ApiGateway +**diagrams.alibabacloud.application.ApiGateway** + +BeeBot +**diagrams.alibabacloud.application.BeeBot** + +BlockchainAsAService +**diagrams.alibabacloud.application.BlockchainAsAService** + +CloudCallCenter +**diagrams.alibabacloud.application.CloudCallCenter** + +CodePipeline +**diagrams.alibabacloud.application.CodePipeline** + +DirectMail +**diagrams.alibabacloud.application.DirectMail** + +LogService +**diagrams.alibabacloud.application.LogService**, **SLS** (alias) + +MessageNotificationService +**diagrams.alibabacloud.application.MessageNotificationService**, **MNS** (alias) + +NodeJsPerformancePlatform +**diagrams.alibabacloud.application.NodeJsPerformancePlatform** + +OpenSearch +**diagrams.alibabacloud.application.OpenSearch** + +PerformanceTestingService +**diagrams.alibabacloud.application.PerformanceTestingService**, **PTS** (alias) + +RdCloud +**diagrams.alibabacloud.application.RdCloud** + +SmartConversationAnalysis +**diagrams.alibabacloud.application.SmartConversationAnalysis**, **SCA** (alias) + +Yida +**diagrams.alibabacloud.application.Yida** ## alibabacloud.communication -- **diagrams.alibabacloud.communication.DirectMail** -- **diagrams.alibabacloud.communication.MobilePush** + +DirectMail +**diagrams.alibabacloud.communication.DirectMail** + +MobilePush +**diagrams.alibabacloud.communication.MobilePush** ## alibabacloud.compute -- **diagrams.alibabacloud.compute.AutoScaling**, **ESS** (alias) -- **diagrams.alibabacloud.compute.BatchCompute** -- **diagrams.alibabacloud.compute.ContainerRegistry** -- **diagrams.alibabacloud.compute.ContainerService** -- **diagrams.alibabacloud.compute.ElasticComputeService**, **ECS** (alias) -- **diagrams.alibabacloud.compute.ElasticContainerInstance**, **ECI** (alias) -- **diagrams.alibabacloud.compute.ElasticHighPerformanceComputing**, **EHPC** (alias) -- **diagrams.alibabacloud.compute.ElasticSearch** -- **diagrams.alibabacloud.compute.FunctionCompute**, **FC** (alias) -- **diagrams.alibabacloud.compute.OperationOrchestrationService**, **OOS** (alias) -- **diagrams.alibabacloud.compute.ResourceOrchestrationService**, **ROS** (alias) -- **diagrams.alibabacloud.compute.ServerLoadBalancer**, **SLB** (alias) -- **diagrams.alibabacloud.compute.ServerlessAppEngine**, **SAE** (alias) -- **diagrams.alibabacloud.compute.SimpleApplicationServer**, **SAS** (alias) -- **diagrams.alibabacloud.compute.WebAppService**, **WAS** (alias) + +AutoScaling +**diagrams.alibabacloud.compute.AutoScaling**, **ESS** (alias) + +BatchCompute +**diagrams.alibabacloud.compute.BatchCompute** + +ContainerRegistry +**diagrams.alibabacloud.compute.ContainerRegistry** + +ContainerService +**diagrams.alibabacloud.compute.ContainerService** + +ElasticComputeService +**diagrams.alibabacloud.compute.ElasticComputeService**, **ECS** (alias) + +ElasticContainerInstance +**diagrams.alibabacloud.compute.ElasticContainerInstance**, **ECI** (alias) + +ElasticHighPerformanceComputing +**diagrams.alibabacloud.compute.ElasticHighPerformanceComputing**, **EHPC** (alias) + +ElasticSearch +**diagrams.alibabacloud.compute.ElasticSearch** + +FunctionCompute +**diagrams.alibabacloud.compute.FunctionCompute**, **FC** (alias) + +OperationOrchestrationService +**diagrams.alibabacloud.compute.OperationOrchestrationService**, **OOS** (alias) + +ResourceOrchestrationService +**diagrams.alibabacloud.compute.ResourceOrchestrationService**, **ROS** (alias) + +ServerLoadBalancer +**diagrams.alibabacloud.compute.ServerLoadBalancer**, **SLB** (alias) + +ServerlessAppEngine +**diagrams.alibabacloud.compute.ServerlessAppEngine**, **SAE** (alias) + +SimpleApplicationServer +**diagrams.alibabacloud.compute.SimpleApplicationServer**, **SAS** (alias) + +WebAppService +**diagrams.alibabacloud.compute.WebAppService**, **WAS** (alias) ## alibabacloud.database -- **diagrams.alibabacloud.database.ApsaradbCassandra** -- **diagrams.alibabacloud.database.ApsaradbHbase** -- **diagrams.alibabacloud.database.ApsaradbMemcache** -- **diagrams.alibabacloud.database.ApsaradbMongodb** -- **diagrams.alibabacloud.database.ApsaradbOceanbase** -- **diagrams.alibabacloud.database.ApsaradbPolardb** -- **diagrams.alibabacloud.database.ApsaradbPostgresql** -- **diagrams.alibabacloud.database.ApsaradbPpas** -- **diagrams.alibabacloud.database.ApsaradbRedis** -- **diagrams.alibabacloud.database.ApsaradbSqlserver** -- **diagrams.alibabacloud.database.DataManagementService**, **DMS** (alias) -- **diagrams.alibabacloud.database.DataTransmissionService**, **DTS** (alias) -- **diagrams.alibabacloud.database.DatabaseBackupService**, **DBS** (alias) -- **diagrams.alibabacloud.database.DisributeRelationalDatabaseService**, **DRDS** (alias) -- **diagrams.alibabacloud.database.GraphDatabaseService**, **GDS** (alias) -- **diagrams.alibabacloud.database.HybriddbForMysql** -- **diagrams.alibabacloud.database.RelationalDatabaseService**, **RDS** (alias) + +ApsaradbCassandra +**diagrams.alibabacloud.database.ApsaradbCassandra** + +ApsaradbHbase +**diagrams.alibabacloud.database.ApsaradbHbase** + +ApsaradbMemcache +**diagrams.alibabacloud.database.ApsaradbMemcache** + +ApsaradbMongodb +**diagrams.alibabacloud.database.ApsaradbMongodb** + +ApsaradbOceanbase +**diagrams.alibabacloud.database.ApsaradbOceanbase** + +ApsaradbPolardb +**diagrams.alibabacloud.database.ApsaradbPolardb** + +ApsaradbPostgresql +**diagrams.alibabacloud.database.ApsaradbPostgresql** + +ApsaradbPpas +**diagrams.alibabacloud.database.ApsaradbPpas** + +ApsaradbRedis +**diagrams.alibabacloud.database.ApsaradbRedis** + +ApsaradbSqlserver +**diagrams.alibabacloud.database.ApsaradbSqlserver** + +DataManagementService +**diagrams.alibabacloud.database.DataManagementService**, **DMS** (alias) + +DataTransmissionService +**diagrams.alibabacloud.database.DataTransmissionService**, **DTS** (alias) + +DatabaseBackupService +**diagrams.alibabacloud.database.DatabaseBackupService**, **DBS** (alias) + +DisributeRelationalDatabaseService +**diagrams.alibabacloud.database.DisributeRelationalDatabaseService**, **DRDS** (alias) + +GraphDatabaseService +**diagrams.alibabacloud.database.GraphDatabaseService**, **GDS** (alias) + +HybriddbForMysql +**diagrams.alibabacloud.database.HybriddbForMysql** + +RelationalDatabaseService +**diagrams.alibabacloud.database.RelationalDatabaseService**, **RDS** (alias) ## alibabacloud.iot -- **diagrams.alibabacloud.iot.IotInternetDeviceId** -- **diagrams.alibabacloud.iot.IotLinkWan** -- **diagrams.alibabacloud.iot.IotMobileConnectionPackage** -- **diagrams.alibabacloud.iot.IotPlatform** + +IotInternetDeviceId +**diagrams.alibabacloud.iot.IotInternetDeviceId** + +IotLinkWan +**diagrams.alibabacloud.iot.IotLinkWan** + +IotMobileConnectionPackage +**diagrams.alibabacloud.iot.IotMobileConnectionPackage** + +IotPlatform +**diagrams.alibabacloud.iot.IotPlatform** ## alibabacloud.network -- **diagrams.alibabacloud.network.Cdn** -- **diagrams.alibabacloud.network.CloudEnterpriseNetwork**, **CEN** (alias) -- **diagrams.alibabacloud.network.ElasticIpAddress**, **EIP** (alias) -- **diagrams.alibabacloud.network.ExpressConnect** -- **diagrams.alibabacloud.network.NatGateway** -- **diagrams.alibabacloud.network.ServerLoadBalancer**, **SLB** (alias) -- **diagrams.alibabacloud.network.SmartAccessGateway** -- **diagrams.alibabacloud.network.VirtualPrivateCloud**, **VPC** (alias) -- **diagrams.alibabacloud.network.VpnGateway** + +Cdn +**diagrams.alibabacloud.network.Cdn** + +CloudEnterpriseNetwork +**diagrams.alibabacloud.network.CloudEnterpriseNetwork**, **CEN** (alias) + +ElasticIpAddress +**diagrams.alibabacloud.network.ElasticIpAddress**, **EIP** (alias) + +ExpressConnect +**diagrams.alibabacloud.network.ExpressConnect** + +NatGateway +**diagrams.alibabacloud.network.NatGateway** + +ServerLoadBalancer +**diagrams.alibabacloud.network.ServerLoadBalancer**, **SLB** (alias) + +SmartAccessGateway +**diagrams.alibabacloud.network.SmartAccessGateway** + +VirtualPrivateCloud +**diagrams.alibabacloud.network.VirtualPrivateCloud**, **VPC** (alias) + +VpnGateway +**diagrams.alibabacloud.network.VpnGateway** ## alibabacloud.security -- **diagrams.alibabacloud.security.AntiBotService**, **ABS** (alias) -- **diagrams.alibabacloud.security.AntiDdosBasic** -- **diagrams.alibabacloud.security.AntiDdosPro** -- **diagrams.alibabacloud.security.AntifraudService**, **AS** (alias) -- **diagrams.alibabacloud.security.BastionHost** -- **diagrams.alibabacloud.security.CloudFirewall**, **CFW** (alias) -- **diagrams.alibabacloud.security.CloudSecurityScanner** -- **diagrams.alibabacloud.security.ContentModeration**, **CM** (alias) -- **diagrams.alibabacloud.security.CrowdsourcedSecurityTesting** -- **diagrams.alibabacloud.security.DataEncryptionService**, **DES** (alias) -- **diagrams.alibabacloud.security.DbAudit** -- **diagrams.alibabacloud.security.GameShield** -- **diagrams.alibabacloud.security.IdVerification** -- **diagrams.alibabacloud.security.ManagedSecurityService** -- **diagrams.alibabacloud.security.SecurityCenter** -- **diagrams.alibabacloud.security.ServerGuard** -- **diagrams.alibabacloud.security.SslCertificates** -- **diagrams.alibabacloud.security.WebApplicationFirewall**, **WAF** (alias) + +AntiBotService +**diagrams.alibabacloud.security.AntiBotService**, **ABS** (alias) + +AntiDdosBasic +**diagrams.alibabacloud.security.AntiDdosBasic** + +AntiDdosPro +**diagrams.alibabacloud.security.AntiDdosPro** + +AntifraudService +**diagrams.alibabacloud.security.AntifraudService**, **AS** (alias) + +BastionHost +**diagrams.alibabacloud.security.BastionHost** + +CloudFirewall +**diagrams.alibabacloud.security.CloudFirewall**, **CFW** (alias) + +CloudSecurityScanner +**diagrams.alibabacloud.security.CloudSecurityScanner** + +ContentModeration +**diagrams.alibabacloud.security.ContentModeration**, **CM** (alias) + +CrowdsourcedSecurityTesting +**diagrams.alibabacloud.security.CrowdsourcedSecurityTesting** + +DataEncryptionService +**diagrams.alibabacloud.security.DataEncryptionService**, **DES** (alias) + +DbAudit +**diagrams.alibabacloud.security.DbAudit** + +GameShield +**diagrams.alibabacloud.security.GameShield** + +IdVerification +**diagrams.alibabacloud.security.IdVerification** + +ManagedSecurityService +**diagrams.alibabacloud.security.ManagedSecurityService** + +SecurityCenter +**diagrams.alibabacloud.security.SecurityCenter** + +ServerGuard +**diagrams.alibabacloud.security.ServerGuard** + +SslCertificates +**diagrams.alibabacloud.security.SslCertificates** + +WebApplicationFirewall +**diagrams.alibabacloud.security.WebApplicationFirewall**, **WAF** (alias) ## alibabacloud.storage -- **diagrams.alibabacloud.storage.CloudStorageGateway** -- **diagrams.alibabacloud.storage.FileStorageHdfs**, **HDFS** (alias) -- **diagrams.alibabacloud.storage.FileStorageNas**, **NAS** (alias) -- **diagrams.alibabacloud.storage.HybridBackupRecovery**, **HBR** (alias) -- **diagrams.alibabacloud.storage.HybridCloudDisasterRecovery**, **HDR** (alias) -- **diagrams.alibabacloud.storage.Imm** -- **diagrams.alibabacloud.storage.ObjectStorageService**, **OSS** (alias) -- **diagrams.alibabacloud.storage.ObjectTableStore**, **OTS** (alias) + +CloudStorageGateway +**diagrams.alibabacloud.storage.CloudStorageGateway** + +FileStorageHdfs +**diagrams.alibabacloud.storage.FileStorageHdfs**, **HDFS** (alias) + +FileStorageNas +**diagrams.alibabacloud.storage.FileStorageNas**, **NAS** (alias) + +HybridBackupRecovery +**diagrams.alibabacloud.storage.HybridBackupRecovery**, **HBR** (alias) + +HybridCloudDisasterRecovery +**diagrams.alibabacloud.storage.HybridCloudDisasterRecovery**, **HDR** (alias) + +Imm +**diagrams.alibabacloud.storage.Imm** + +ObjectStorageService +**diagrams.alibabacloud.storage.ObjectStorageService**, **OSS** (alias) + +ObjectTableStore +**diagrams.alibabacloud.storage.ObjectTableStore**, **OTS** (alias) ## alibabacloud.web -- **diagrams.alibabacloud.web.Dns** -- **diagrams.alibabacloud.web.Domain** + +Dns +**diagrams.alibabacloud.web.Dns** + +Domain +**diagrams.alibabacloud.web.Domain** diff --git a/docs/nodes/aws.md b/docs/nodes/aws.md index 8a0dea76..aede97f7 100644 --- a/docs/nodes/aws.md +++ b/docs/nodes/aws.md @@ -3,556 +3,1540 @@ id: aws title: AWS --- -Node classes list of aws provider. +Node classes list of the aws provider. ## aws.analytics -- **diagrams.aws.analytics.Analytics** -- **diagrams.aws.analytics.Athena** -- **diagrams.aws.analytics.CloudsearchSearchDocuments** -- **diagrams.aws.analytics.Cloudsearch** -- **diagrams.aws.analytics.DataLakeResource** -- **diagrams.aws.analytics.DataPipeline** -- **diagrams.aws.analytics.ElasticsearchService**, **ES** (alias) -- **diagrams.aws.analytics.EMRCluster** -- **diagrams.aws.analytics.EMREngineMaprM3** -- **diagrams.aws.analytics.EMREngineMaprM5** -- **diagrams.aws.analytics.EMREngineMaprM7** -- **diagrams.aws.analytics.EMREngine** -- **diagrams.aws.analytics.EMRHdfsCluster** -- **diagrams.aws.analytics.EMR** -- **diagrams.aws.analytics.GlueCrawlers** -- **diagrams.aws.analytics.GlueDataCatalog** -- **diagrams.aws.analytics.Glue** -- **diagrams.aws.analytics.KinesisDataAnalytics** -- **diagrams.aws.analytics.KinesisDataFirehose** -- **diagrams.aws.analytics.KinesisDataStreams** -- **diagrams.aws.analytics.KinesisVideoStreams** -- **diagrams.aws.analytics.Kinesis** -- **diagrams.aws.analytics.LakeFormation** -- **diagrams.aws.analytics.ManagedStreamingForKafka** -- **diagrams.aws.analytics.Quicksight** -- **diagrams.aws.analytics.RedshiftDenseComputeNode** -- **diagrams.aws.analytics.RedshiftDenseStorageNode** -- **diagrams.aws.analytics.Redshift** + +AmazonOpensearchService +**diagrams.aws.analytics.AmazonOpensearchService** + +Analytics +**diagrams.aws.analytics.Analytics** + +Athena +**diagrams.aws.analytics.Athena** + +CloudsearchSearchDocuments +**diagrams.aws.analytics.CloudsearchSearchDocuments** + +Cloudsearch +**diagrams.aws.analytics.Cloudsearch** + +DataLakeResource +**diagrams.aws.analytics.DataLakeResource** + +DataPipeline +**diagrams.aws.analytics.DataPipeline** + +ElasticsearchService +**diagrams.aws.analytics.ElasticsearchService**, **ES** (alias) + +EMRCluster +**diagrams.aws.analytics.EMRCluster** + +EMREngineMaprM3 +**diagrams.aws.analytics.EMREngineMaprM3** + +EMREngineMaprM5 +**diagrams.aws.analytics.EMREngineMaprM5** + +EMREngineMaprM7 +**diagrams.aws.analytics.EMREngineMaprM7** + +EMREngine +**diagrams.aws.analytics.EMREngine** + +EMRHdfsCluster +**diagrams.aws.analytics.EMRHdfsCluster** + +EMR +**diagrams.aws.analytics.EMR** + +GlueCrawlers +**diagrams.aws.analytics.GlueCrawlers** + +GlueDataCatalog +**diagrams.aws.analytics.GlueDataCatalog** + +Glue +**diagrams.aws.analytics.Glue** + +KinesisDataAnalytics +**diagrams.aws.analytics.KinesisDataAnalytics** + +KinesisDataFirehose +**diagrams.aws.analytics.KinesisDataFirehose** + +KinesisDataStreams +**diagrams.aws.analytics.KinesisDataStreams** + +KinesisVideoStreams +**diagrams.aws.analytics.KinesisVideoStreams** + +Kinesis +**diagrams.aws.analytics.Kinesis** + +LakeFormation +**diagrams.aws.analytics.LakeFormation** + +ManagedStreamingForKafka +**diagrams.aws.analytics.ManagedStreamingForKafka** + +Quicksight +**diagrams.aws.analytics.Quicksight** + +RedshiftDenseComputeNode +**diagrams.aws.analytics.RedshiftDenseComputeNode** + +RedshiftDenseStorageNode +**diagrams.aws.analytics.RedshiftDenseStorageNode** + +Redshift +**diagrams.aws.analytics.Redshift** ## aws.ar -- **diagrams.aws.ar.ArVr** -- **diagrams.aws.ar.Sumerian** + +ArVr +**diagrams.aws.ar.ArVr** + +Sumerian +**diagrams.aws.ar.Sumerian** ## aws.blockchain -- **diagrams.aws.blockchain.BlockchainResource** -- **diagrams.aws.blockchain.Blockchain** -- **diagrams.aws.blockchain.ManagedBlockchain** -- **diagrams.aws.blockchain.QuantumLedgerDatabaseQldb**, **QLDB** (alias) + +BlockchainResource +**diagrams.aws.blockchain.BlockchainResource** + +Blockchain +**diagrams.aws.blockchain.Blockchain** + +ManagedBlockchain +**diagrams.aws.blockchain.ManagedBlockchain** + +QuantumLedgerDatabaseQldb +**diagrams.aws.blockchain.QuantumLedgerDatabaseQldb**, **QLDB** (alias) ## aws.business -- **diagrams.aws.business.AlexaForBusiness**, **A4B** (alias) -- **diagrams.aws.business.BusinessApplications** -- **diagrams.aws.business.Chime** -- **diagrams.aws.business.Workmail** + +AlexaForBusiness +**diagrams.aws.business.AlexaForBusiness**, **A4B** (alias) + +BusinessApplications +**diagrams.aws.business.BusinessApplications** + +Chime +**diagrams.aws.business.Chime** + +Workmail +**diagrams.aws.business.Workmail** ## aws.compute -- **diagrams.aws.compute.ApplicationAutoScaling**, **AutoScaling** (alias) -- **diagrams.aws.compute.Batch** -- **diagrams.aws.compute.ComputeOptimizer** -- **diagrams.aws.compute.Compute** -- **diagrams.aws.compute.EC2Ami**, **AMI** (alias) -- **diagrams.aws.compute.EC2AutoScaling** -- **diagrams.aws.compute.EC2ContainerRegistryImage** -- **diagrams.aws.compute.EC2ContainerRegistryRegistry** -- **diagrams.aws.compute.EC2ContainerRegistry**, **ECR** (alias) -- **diagrams.aws.compute.EC2ElasticIpAddress** -- **diagrams.aws.compute.EC2ImageBuilder** -- **diagrams.aws.compute.EC2Instance** -- **diagrams.aws.compute.EC2Instances** -- **diagrams.aws.compute.EC2Rescue** -- **diagrams.aws.compute.EC2SpotInstance** -- **diagrams.aws.compute.EC2** -- **diagrams.aws.compute.ElasticBeanstalkApplication** -- **diagrams.aws.compute.ElasticBeanstalkDeployment** -- **diagrams.aws.compute.ElasticBeanstalk**, **EB** (alias) -- **diagrams.aws.compute.ElasticContainerServiceContainer** -- **diagrams.aws.compute.ElasticContainerServiceService** -- **diagrams.aws.compute.ElasticContainerService**, **ECS** (alias) -- **diagrams.aws.compute.ElasticKubernetesService**, **EKS** (alias) -- **diagrams.aws.compute.Fargate** -- **diagrams.aws.compute.LambdaFunction** -- **diagrams.aws.compute.Lambda** -- **diagrams.aws.compute.Lightsail** -- **diagrams.aws.compute.LocalZones** -- **diagrams.aws.compute.Outposts** -- **diagrams.aws.compute.ServerlessApplicationRepository**, **SAR** (alias) -- **diagrams.aws.compute.ThinkboxDeadline** -- **diagrams.aws.compute.ThinkboxDraft** -- **diagrams.aws.compute.ThinkboxFrost** -- **diagrams.aws.compute.ThinkboxKrakatoa** -- **diagrams.aws.compute.ThinkboxSequoia** -- **diagrams.aws.compute.ThinkboxStoke** -- **diagrams.aws.compute.ThinkboxXmesh** -- **diagrams.aws.compute.VmwareCloudOnAWS** -- **diagrams.aws.compute.Wavelength** + +AppRunner +**diagrams.aws.compute.AppRunner** + +ApplicationAutoScaling +**diagrams.aws.compute.ApplicationAutoScaling**, **AutoScaling** (alias) + +Batch +**diagrams.aws.compute.Batch** + +ComputeOptimizer +**diagrams.aws.compute.ComputeOptimizer** + +Compute +**diagrams.aws.compute.Compute** + +EC2Ami +**diagrams.aws.compute.EC2Ami**, **AMI** (alias) + +EC2AutoScaling +**diagrams.aws.compute.EC2AutoScaling** + +EC2ContainerRegistryImage +**diagrams.aws.compute.EC2ContainerRegistryImage** + +EC2ContainerRegistryRegistry +**diagrams.aws.compute.EC2ContainerRegistryRegistry** + +EC2ContainerRegistry +**diagrams.aws.compute.EC2ContainerRegistry**, **ECR** (alias) + +EC2ElasticIpAddress +**diagrams.aws.compute.EC2ElasticIpAddress** + +EC2ImageBuilder +**diagrams.aws.compute.EC2ImageBuilder** + +EC2Instance +**diagrams.aws.compute.EC2Instance** + +EC2Instances +**diagrams.aws.compute.EC2Instances** + +EC2Rescue +**diagrams.aws.compute.EC2Rescue** + +EC2SpotInstance +**diagrams.aws.compute.EC2SpotInstance** + +EC2 +**diagrams.aws.compute.EC2** + +ElasticBeanstalkApplication +**diagrams.aws.compute.ElasticBeanstalkApplication** + +ElasticBeanstalkDeployment +**diagrams.aws.compute.ElasticBeanstalkDeployment** + +ElasticBeanstalk +**diagrams.aws.compute.ElasticBeanstalk**, **EB** (alias) + +ElasticContainerServiceContainer +**diagrams.aws.compute.ElasticContainerServiceContainer** + +ElasticContainerServiceService +**diagrams.aws.compute.ElasticContainerServiceService** + +ElasticContainerService +**diagrams.aws.compute.ElasticContainerService**, **ECS** (alias) + +ElasticKubernetesService +**diagrams.aws.compute.ElasticKubernetesService**, **EKS** (alias) + +Fargate +**diagrams.aws.compute.Fargate** + +LambdaFunction +**diagrams.aws.compute.LambdaFunction** + +Lambda +**diagrams.aws.compute.Lambda** + +Lightsail +**diagrams.aws.compute.Lightsail** + +LocalZones +**diagrams.aws.compute.LocalZones** + +Outposts +**diagrams.aws.compute.Outposts** + +ServerlessApplicationRepository +**diagrams.aws.compute.ServerlessApplicationRepository**, **SAR** (alias) + +ThinkboxDeadline +**diagrams.aws.compute.ThinkboxDeadline** + +ThinkboxDraft +**diagrams.aws.compute.ThinkboxDraft** + +ThinkboxFrost +**diagrams.aws.compute.ThinkboxFrost** + +ThinkboxKrakatoa +**diagrams.aws.compute.ThinkboxKrakatoa** + +ThinkboxSequoia +**diagrams.aws.compute.ThinkboxSequoia** + +ThinkboxStoke +**diagrams.aws.compute.ThinkboxStoke** + +ThinkboxXmesh +**diagrams.aws.compute.ThinkboxXmesh** + +VmwareCloudOnAWS +**diagrams.aws.compute.VmwareCloudOnAWS** + +Wavelength +**diagrams.aws.compute.Wavelength** ## aws.cost -- **diagrams.aws.cost.Budgets** -- **diagrams.aws.cost.CostAndUsageReport** -- **diagrams.aws.cost.CostExplorer** -- **diagrams.aws.cost.CostManagement** -- **diagrams.aws.cost.ReservedInstanceReporting** -- **diagrams.aws.cost.SavingsPlans** + +Budgets +**diagrams.aws.cost.Budgets** + +CostAndUsageReport +**diagrams.aws.cost.CostAndUsageReport** + +CostExplorer +**diagrams.aws.cost.CostExplorer** + +CostManagement +**diagrams.aws.cost.CostManagement** + +ReservedInstanceReporting +**diagrams.aws.cost.ReservedInstanceReporting** + +SavingsPlans +**diagrams.aws.cost.SavingsPlans** ## aws.database -- **diagrams.aws.database.AuroraInstance** -- **diagrams.aws.database.Aurora** -- **diagrams.aws.database.DatabaseMigrationServiceDatabaseMigrationWorkflow** -- **diagrams.aws.database.DatabaseMigrationService**, **DMS** (alias) -- **diagrams.aws.database.Database**, **DB** (alias) -- **diagrams.aws.database.DocumentdbMongodbCompatibility**, **DocumentDB** (alias) -- **diagrams.aws.database.DynamodbAttribute** -- **diagrams.aws.database.DynamodbAttributes** -- **diagrams.aws.database.DynamodbDax**, **DAX** (alias) -- **diagrams.aws.database.DynamodbGlobalSecondaryIndex**, **DynamodbGSI** (alias) -- **diagrams.aws.database.DynamodbItem** -- **diagrams.aws.database.DynamodbItems** -- **diagrams.aws.database.DynamodbTable** -- **diagrams.aws.database.Dynamodb**, **DDB** (alias) -- **diagrams.aws.database.ElasticacheCacheNode** -- **diagrams.aws.database.ElasticacheForMemcached** -- **diagrams.aws.database.ElasticacheForRedis** -- **diagrams.aws.database.Elasticache**, **ElastiCache** (alias) -- **diagrams.aws.database.KeyspacesManagedApacheCassandraService** -- **diagrams.aws.database.Neptune** -- **diagrams.aws.database.QuantumLedgerDatabaseQldb**, **QLDB** (alias) -- **diagrams.aws.database.RDSInstance** -- **diagrams.aws.database.RDSMariadbInstance** -- **diagrams.aws.database.RDSMysqlInstance** -- **diagrams.aws.database.RDSOnVmware** -- **diagrams.aws.database.RDSOracleInstance** -- **diagrams.aws.database.RDSPostgresqlInstance** -- **diagrams.aws.database.RDSSqlServerInstance** -- **diagrams.aws.database.RDS** -- **diagrams.aws.database.RedshiftDenseComputeNode** -- **diagrams.aws.database.RedshiftDenseStorageNode** -- **diagrams.aws.database.Redshift** -- **diagrams.aws.database.Timestream** + +AuroraInstance +**diagrams.aws.database.AuroraInstance** + +Aurora +**diagrams.aws.database.Aurora** + +DatabaseMigrationServiceDatabaseMigrationWorkflow +**diagrams.aws.database.DatabaseMigrationServiceDatabaseMigrationWorkflow** + +DatabaseMigrationService +**diagrams.aws.database.DatabaseMigrationService**, **DMS** (alias) + +Database +**diagrams.aws.database.Database**, **DB** (alias) + +DocumentdbMongodbCompatibility +**diagrams.aws.database.DocumentdbMongodbCompatibility**, **DocumentDB** (alias) + +DynamodbAttribute +**diagrams.aws.database.DynamodbAttribute** + +DynamodbAttributes +**diagrams.aws.database.DynamodbAttributes** + +DynamodbDax +**diagrams.aws.database.DynamodbDax**, **DAX** (alias) + +DynamodbGlobalSecondaryIndex +**diagrams.aws.database.DynamodbGlobalSecondaryIndex**, **DynamodbGSI** (alias) + +DynamodbItem +**diagrams.aws.database.DynamodbItem** + +DynamodbItems +**diagrams.aws.database.DynamodbItems** + +DynamodbTable +**diagrams.aws.database.DynamodbTable** + +Dynamodb +**diagrams.aws.database.Dynamodb**, **DDB** (alias) + +ElasticacheCacheNode +**diagrams.aws.database.ElasticacheCacheNode** + +ElasticacheForMemcached +**diagrams.aws.database.ElasticacheForMemcached** + +ElasticacheForRedis +**diagrams.aws.database.ElasticacheForRedis** + +Elasticache +**diagrams.aws.database.Elasticache**, **ElastiCache** (alias) + +KeyspacesManagedApacheCassandraService +**diagrams.aws.database.KeyspacesManagedApacheCassandraService** + +Neptune +**diagrams.aws.database.Neptune** + +QuantumLedgerDatabaseQldb +**diagrams.aws.database.QuantumLedgerDatabaseQldb**, **QLDB** (alias) + +RDSInstance +**diagrams.aws.database.RDSInstance** + +RDSMariadbInstance +**diagrams.aws.database.RDSMariadbInstance** + +RDSMysqlInstance +**diagrams.aws.database.RDSMysqlInstance** + +RDSOnVmware +**diagrams.aws.database.RDSOnVmware** + +RDSOracleInstance +**diagrams.aws.database.RDSOracleInstance** + +RDSPostgresqlInstance +**diagrams.aws.database.RDSPostgresqlInstance** + +RDSSqlServerInstance +**diagrams.aws.database.RDSSqlServerInstance** + +RDS +**diagrams.aws.database.RDS** + +RedshiftDenseComputeNode +**diagrams.aws.database.RedshiftDenseComputeNode** + +RedshiftDenseStorageNode +**diagrams.aws.database.RedshiftDenseStorageNode** + +Redshift +**diagrams.aws.database.Redshift** + +Timestream +**diagrams.aws.database.Timestream** ## aws.devtools -- **diagrams.aws.devtools.CloudDevelopmentKit** -- **diagrams.aws.devtools.Cloud9Resource** -- **diagrams.aws.devtools.Cloud9** -- **diagrams.aws.devtools.Codebuild** -- **diagrams.aws.devtools.Codecommit** -- **diagrams.aws.devtools.Codedeploy** -- **diagrams.aws.devtools.Codepipeline** -- **diagrams.aws.devtools.Codestar** -- **diagrams.aws.devtools.CommandLineInterface**, **CLI** (alias) -- **diagrams.aws.devtools.DeveloperTools**, **DevTools** (alias) -- **diagrams.aws.devtools.ToolsAndSdks** -- **diagrams.aws.devtools.XRay** + +CloudDevelopmentKit +**diagrams.aws.devtools.CloudDevelopmentKit** + +Cloud9Resource +**diagrams.aws.devtools.Cloud9Resource** + +Cloud9 +**diagrams.aws.devtools.Cloud9** + +Codeartifact +**diagrams.aws.devtools.Codeartifact** + +Codebuild +**diagrams.aws.devtools.Codebuild** + +Codecommit +**diagrams.aws.devtools.Codecommit** + +Codedeploy +**diagrams.aws.devtools.Codedeploy** + +Codepipeline +**diagrams.aws.devtools.Codepipeline** + +Codestar +**diagrams.aws.devtools.Codestar** + +CommandLineInterface +**diagrams.aws.devtools.CommandLineInterface**, **CLI** (alias) + +DeveloperTools +**diagrams.aws.devtools.DeveloperTools**, **DevTools** (alias) + +ToolsAndSdks +**diagrams.aws.devtools.ToolsAndSdks** + +XRay +**diagrams.aws.devtools.XRay** ## aws.enablement -- **diagrams.aws.enablement.CustomerEnablement** -- **diagrams.aws.enablement.Iq** -- **diagrams.aws.enablement.ManagedServices** -- **diagrams.aws.enablement.ProfessionalServices** -- **diagrams.aws.enablement.Support** + +CustomerEnablement +**diagrams.aws.enablement.CustomerEnablement** + +Iq +**diagrams.aws.enablement.Iq** + +ManagedServices +**diagrams.aws.enablement.ManagedServices** + +ProfessionalServices +**diagrams.aws.enablement.ProfessionalServices** + +Support +**diagrams.aws.enablement.Support** ## aws.enduser -- **diagrams.aws.enduser.Appstream20** -- **diagrams.aws.enduser.DesktopAndAppStreaming** -- **diagrams.aws.enduser.Workdocs** -- **diagrams.aws.enduser.Worklink** -- **diagrams.aws.enduser.Workspaces** + +Appstream20 +**diagrams.aws.enduser.Appstream20** + +DesktopAndAppStreaming +**diagrams.aws.enduser.DesktopAndAppStreaming** + +Workdocs +**diagrams.aws.enduser.Workdocs** + +Worklink +**diagrams.aws.enduser.Worklink** + +Workspaces +**diagrams.aws.enduser.Workspaces** ## aws.engagement -- **diagrams.aws.engagement.Connect** -- **diagrams.aws.engagement.CustomerEngagement** -- **diagrams.aws.engagement.Pinpoint** -- **diagrams.aws.engagement.SimpleEmailServiceSesEmail** -- **diagrams.aws.engagement.SimpleEmailServiceSes**, **SES** (alias) + +Connect +**diagrams.aws.engagement.Connect** + +CustomerEngagement +**diagrams.aws.engagement.CustomerEngagement** + +Pinpoint +**diagrams.aws.engagement.Pinpoint** + +SimpleEmailServiceSesEmail +**diagrams.aws.engagement.SimpleEmailServiceSesEmail** + +SimpleEmailServiceSes +**diagrams.aws.engagement.SimpleEmailServiceSes**, **SES** (alias) ## aws.game -- **diagrams.aws.game.GameTech** -- **diagrams.aws.game.Gamelift** + +GameTech +**diagrams.aws.game.GameTech** + +Gamelift +**diagrams.aws.game.Gamelift** ## aws.general -- **diagrams.aws.general.Client** -- **diagrams.aws.general.Disk** -- **diagrams.aws.general.Forums** -- **diagrams.aws.general.General** -- **diagrams.aws.general.GenericDatabase** -- **diagrams.aws.general.GenericFirewall** -- **diagrams.aws.general.GenericOfficeBuilding**, **OfficeBuilding** (alias) -- **diagrams.aws.general.GenericSamlToken** -- **diagrams.aws.general.GenericSDK** -- **diagrams.aws.general.InternetAlt1** -- **diagrams.aws.general.InternetAlt2** -- **diagrams.aws.general.InternetGateway** -- **diagrams.aws.general.Marketplace** -- **diagrams.aws.general.MobileClient** -- **diagrams.aws.general.Multimedia** -- **diagrams.aws.general.OfficeBuilding** -- **diagrams.aws.general.SamlToken** -- **diagrams.aws.general.SDK** -- **diagrams.aws.general.SslPadlock** -- **diagrams.aws.general.TapeStorage** -- **diagrams.aws.general.Toolkit** -- **diagrams.aws.general.TraditionalServer** -- **diagrams.aws.general.User** -- **diagrams.aws.general.Users** + +Client +**diagrams.aws.general.Client** + +Disk +**diagrams.aws.general.Disk** + +Forums +**diagrams.aws.general.Forums** + +General +**diagrams.aws.general.General** + +GenericDatabase +**diagrams.aws.general.GenericDatabase** + +GenericFirewall +**diagrams.aws.general.GenericFirewall** + +GenericOfficeBuilding +**diagrams.aws.general.GenericOfficeBuilding**, **OfficeBuilding** (alias) + +GenericSamlToken +**diagrams.aws.general.GenericSamlToken** + +GenericSDK +**diagrams.aws.general.GenericSDK** + +InternetAlt1 +**diagrams.aws.general.InternetAlt1** + +InternetAlt2 +**diagrams.aws.general.InternetAlt2** + +InternetGateway +**diagrams.aws.general.InternetGateway** + +Marketplace +**diagrams.aws.general.Marketplace** + +MobileClient +**diagrams.aws.general.MobileClient** + +Multimedia +**diagrams.aws.general.Multimedia** + +OfficeBuilding +**diagrams.aws.general.OfficeBuilding** + +SamlToken +**diagrams.aws.general.SamlToken** + +SDK +**diagrams.aws.general.SDK** + +SslPadlock +**diagrams.aws.general.SslPadlock** + +TapeStorage +**diagrams.aws.general.TapeStorage** + +Toolkit +**diagrams.aws.general.Toolkit** + +TraditionalServer +**diagrams.aws.general.TraditionalServer** + +User +**diagrams.aws.general.User** + +Users +**diagrams.aws.general.Users** ## aws.integration -- **diagrams.aws.integration.ApplicationIntegration** -- **diagrams.aws.integration.Appsync** -- **diagrams.aws.integration.ConsoleMobileApplication** -- **diagrams.aws.integration.EventResource** -- **diagrams.aws.integration.EventbridgeCustomEventBusResource** -- **diagrams.aws.integration.EventbridgeDefaultEventBusResource** -- **diagrams.aws.integration.EventbridgeSaasPartnerEventBusResource** -- **diagrams.aws.integration.Eventbridge** -- **diagrams.aws.integration.ExpressWorkflows** -- **diagrams.aws.integration.MQ** -- **diagrams.aws.integration.SimpleNotificationServiceSnsEmailNotification** -- **diagrams.aws.integration.SimpleNotificationServiceSnsHttpNotification** -- **diagrams.aws.integration.SimpleNotificationServiceSnsTopic** -- **diagrams.aws.integration.SimpleNotificationServiceSns**, **SNS** (alias) -- **diagrams.aws.integration.SimpleQueueServiceSqsMessage** -- **diagrams.aws.integration.SimpleQueueServiceSqsQueue** -- **diagrams.aws.integration.SimpleQueueServiceSqs**, **SQS** (alias) -- **diagrams.aws.integration.StepFunctions**, **SF** (alias) + +ApplicationIntegration +**diagrams.aws.integration.ApplicationIntegration** + +Appsync +**diagrams.aws.integration.Appsync** + +ConsoleMobileApplication +**diagrams.aws.integration.ConsoleMobileApplication** + +EventResource +**diagrams.aws.integration.EventResource** + +EventbridgeCustomEventBusResource +**diagrams.aws.integration.EventbridgeCustomEventBusResource** + +EventbridgeDefaultEventBusResource +**diagrams.aws.integration.EventbridgeDefaultEventBusResource** + +EventbridgeSaasPartnerEventBusResource +**diagrams.aws.integration.EventbridgeSaasPartnerEventBusResource** + +Eventbridge +**diagrams.aws.integration.Eventbridge** + +ExpressWorkflows +**diagrams.aws.integration.ExpressWorkflows** + +MQ +**diagrams.aws.integration.MQ** + +SimpleNotificationServiceSnsEmailNotification +**diagrams.aws.integration.SimpleNotificationServiceSnsEmailNotification** + +SimpleNotificationServiceSnsHttpNotification +**diagrams.aws.integration.SimpleNotificationServiceSnsHttpNotification** + +SimpleNotificationServiceSnsTopic +**diagrams.aws.integration.SimpleNotificationServiceSnsTopic** + +SimpleNotificationServiceSns +**diagrams.aws.integration.SimpleNotificationServiceSns**, **SNS** (alias) + +SimpleQueueServiceSqsMessage +**diagrams.aws.integration.SimpleQueueServiceSqsMessage** + +SimpleQueueServiceSqsQueue +**diagrams.aws.integration.SimpleQueueServiceSqsQueue** + +SimpleQueueServiceSqs +**diagrams.aws.integration.SimpleQueueServiceSqs**, **SQS** (alias) + +StepFunctions +**diagrams.aws.integration.StepFunctions**, **SF** (alias) ## aws.iot -- **diagrams.aws.iot.Freertos**, **FreeRTOS** (alias) -- **diagrams.aws.iot.InternetOfThings** -- **diagrams.aws.iot.Iot1Click** -- **diagrams.aws.iot.IotAction** -- **diagrams.aws.iot.IotActuator** -- **diagrams.aws.iot.IotAlexaEcho** -- **diagrams.aws.iot.IotAlexaEnabledDevice** -- **diagrams.aws.iot.IotAlexaSkill** -- **diagrams.aws.iot.IotAlexaVoiceService** -- **diagrams.aws.iot.IotAnalyticsChannel** -- **diagrams.aws.iot.IotAnalyticsDataSet** -- **diagrams.aws.iot.IotAnalyticsDataStore** -- **diagrams.aws.iot.IotAnalyticsNotebook** -- **diagrams.aws.iot.IotAnalyticsPipeline** -- **diagrams.aws.iot.IotAnalytics** -- **diagrams.aws.iot.IotBank** -- **diagrams.aws.iot.IotBicycle** -- **diagrams.aws.iot.IotButton** -- **diagrams.aws.iot.IotCamera** -- **diagrams.aws.iot.IotCar** -- **diagrams.aws.iot.IotCart** -- **diagrams.aws.iot.IotCertificate** -- **diagrams.aws.iot.IotCoffeePot** -- **diagrams.aws.iot.IotCore** -- **diagrams.aws.iot.IotDesiredState** -- **diagrams.aws.iot.IotDeviceDefender** -- **diagrams.aws.iot.IotDeviceGateway** -- **diagrams.aws.iot.IotDeviceManagement** -- **diagrams.aws.iot.IotDoorLock** -- **diagrams.aws.iot.IotEvents** -- **diagrams.aws.iot.IotFactory** -- **diagrams.aws.iot.IotFireTvStick** -- **diagrams.aws.iot.IotFireTv** -- **diagrams.aws.iot.IotGeneric** -- **diagrams.aws.iot.IotGreengrassConnector** -- **diagrams.aws.iot.IotGreengrass** -- **diagrams.aws.iot.IotHardwareBoard**, **IotBoard** (alias) -- **diagrams.aws.iot.IotHouse** -- **diagrams.aws.iot.IotHttp** -- **diagrams.aws.iot.IotHttp2** -- **diagrams.aws.iot.IotJobs** -- **diagrams.aws.iot.IotLambda** -- **diagrams.aws.iot.IotLightbulb** -- **diagrams.aws.iot.IotMedicalEmergency** -- **diagrams.aws.iot.IotMqtt** -- **diagrams.aws.iot.IotOverTheAirUpdate** -- **diagrams.aws.iot.IotPolicyEmergency** -- **diagrams.aws.iot.IotPolicy** -- **diagrams.aws.iot.IotReportedState** -- **diagrams.aws.iot.IotRule** -- **diagrams.aws.iot.IotSensor** -- **diagrams.aws.iot.IotServo** -- **diagrams.aws.iot.IotShadow** -- **diagrams.aws.iot.IotSimulator** -- **diagrams.aws.iot.IotSitewise** -- **diagrams.aws.iot.IotThermostat** -- **diagrams.aws.iot.IotThingsGraph** -- **diagrams.aws.iot.IotTopic** -- **diagrams.aws.iot.IotTravel** -- **diagrams.aws.iot.IotUtility** -- **diagrams.aws.iot.IotWindfarm** + +Freertos +**diagrams.aws.iot.Freertos**, **FreeRTOS** (alias) + +InternetOfThings +**diagrams.aws.iot.InternetOfThings** + +Iot1Click +**diagrams.aws.iot.Iot1Click** + +IotAction +**diagrams.aws.iot.IotAction** + +IotActuator +**diagrams.aws.iot.IotActuator** + +IotAlexaEcho +**diagrams.aws.iot.IotAlexaEcho** + +IotAlexaEnabledDevice +**diagrams.aws.iot.IotAlexaEnabledDevice** + +IotAlexaSkill +**diagrams.aws.iot.IotAlexaSkill** + +IotAlexaVoiceService +**diagrams.aws.iot.IotAlexaVoiceService** + +IotAnalyticsChannel +**diagrams.aws.iot.IotAnalyticsChannel** + +IotAnalyticsDataSet +**diagrams.aws.iot.IotAnalyticsDataSet** + +IotAnalyticsDataStore +**diagrams.aws.iot.IotAnalyticsDataStore** + +IotAnalyticsNotebook +**diagrams.aws.iot.IotAnalyticsNotebook** + +IotAnalyticsPipeline +**diagrams.aws.iot.IotAnalyticsPipeline** + +IotAnalytics +**diagrams.aws.iot.IotAnalytics** + +IotBank +**diagrams.aws.iot.IotBank** + +IotBicycle +**diagrams.aws.iot.IotBicycle** + +IotButton +**diagrams.aws.iot.IotButton** + +IotCamera +**diagrams.aws.iot.IotCamera** + +IotCar +**diagrams.aws.iot.IotCar** + +IotCart +**diagrams.aws.iot.IotCart** + +IotCertificate +**diagrams.aws.iot.IotCertificate** + +IotCoffeePot +**diagrams.aws.iot.IotCoffeePot** + +IotCore +**diagrams.aws.iot.IotCore** + +IotDesiredState +**diagrams.aws.iot.IotDesiredState** + +IotDeviceDefender +**diagrams.aws.iot.IotDeviceDefender** + +IotDeviceGateway +**diagrams.aws.iot.IotDeviceGateway** + +IotDeviceManagement +**diagrams.aws.iot.IotDeviceManagement** + +IotDoorLock +**diagrams.aws.iot.IotDoorLock** + +IotEvents +**diagrams.aws.iot.IotEvents** + +IotFactory +**diagrams.aws.iot.IotFactory** + +IotFireTvStick +**diagrams.aws.iot.IotFireTvStick** + +IotFireTv +**diagrams.aws.iot.IotFireTv** + +IotGeneric +**diagrams.aws.iot.IotGeneric** + +IotGreengrassConnector +**diagrams.aws.iot.IotGreengrassConnector** + +IotGreengrass +**diagrams.aws.iot.IotGreengrass** + +IotHardwareBoard +**diagrams.aws.iot.IotHardwareBoard**, **IotBoard** (alias) + +IotHouse +**diagrams.aws.iot.IotHouse** + +IotHttp +**diagrams.aws.iot.IotHttp** + +IotHttp2 +**diagrams.aws.iot.IotHttp2** + +IotJobs +**diagrams.aws.iot.IotJobs** + +IotLambda +**diagrams.aws.iot.IotLambda** + +IotLightbulb +**diagrams.aws.iot.IotLightbulb** + +IotMedicalEmergency +**diagrams.aws.iot.IotMedicalEmergency** + +IotMqtt +**diagrams.aws.iot.IotMqtt** + +IotOverTheAirUpdate +**diagrams.aws.iot.IotOverTheAirUpdate** + +IotPolicyEmergency +**diagrams.aws.iot.IotPolicyEmergency** + +IotPolicy +**diagrams.aws.iot.IotPolicy** + +IotReportedState +**diagrams.aws.iot.IotReportedState** + +IotRule +**diagrams.aws.iot.IotRule** + +IotSensor +**diagrams.aws.iot.IotSensor** + +IotServo +**diagrams.aws.iot.IotServo** + +IotShadow +**diagrams.aws.iot.IotShadow** + +IotSimulator +**diagrams.aws.iot.IotSimulator** + +IotSitewise +**diagrams.aws.iot.IotSitewise** + +IotThermostat +**diagrams.aws.iot.IotThermostat** + +IotThingsGraph +**diagrams.aws.iot.IotThingsGraph** + +IotTopic +**diagrams.aws.iot.IotTopic** + +IotTravel +**diagrams.aws.iot.IotTravel** + +IotUtility +**diagrams.aws.iot.IotUtility** + +IotWindfarm +**diagrams.aws.iot.IotWindfarm** ## aws.management -- **diagrams.aws.management.AutoScaling** -- **diagrams.aws.management.CloudformationChangeSet** -- **diagrams.aws.management.CloudformationStack** -- **diagrams.aws.management.CloudformationTemplate** -- **diagrams.aws.management.Cloudformation** -- **diagrams.aws.management.Cloudtrail** -- **diagrams.aws.management.CloudwatchAlarm** -- **diagrams.aws.management.CloudwatchEventEventBased** -- **diagrams.aws.management.CloudwatchEventTimeBased** -- **diagrams.aws.management.CloudwatchRule** -- **diagrams.aws.management.Cloudwatch** -- **diagrams.aws.management.Codeguru** -- **diagrams.aws.management.CommandLineInterface** -- **diagrams.aws.management.Config** -- **diagrams.aws.management.ControlTower** -- **diagrams.aws.management.LicenseManager** -- **diagrams.aws.management.ManagedServices** -- **diagrams.aws.management.ManagementAndGovernance** -- **diagrams.aws.management.ManagementConsole** -- **diagrams.aws.management.OpsworksApps** -- **diagrams.aws.management.OpsworksDeployments** -- **diagrams.aws.management.OpsworksInstances** -- **diagrams.aws.management.OpsworksLayers** -- **diagrams.aws.management.OpsworksMonitoring** -- **diagrams.aws.management.OpsworksPermissions** -- **diagrams.aws.management.OpsworksResources** -- **diagrams.aws.management.OpsworksStack** -- **diagrams.aws.management.Opsworks** -- **diagrams.aws.management.OrganizationsAccount** -- **diagrams.aws.management.OrganizationsOrganizationalUnit** -- **diagrams.aws.management.Organizations** -- **diagrams.aws.management.PersonalHealthDashboard** -- **diagrams.aws.management.ServiceCatalog** -- **diagrams.aws.management.SystemsManagerAutomation** -- **diagrams.aws.management.SystemsManagerDocuments** -- **diagrams.aws.management.SystemsManagerInventory** -- **diagrams.aws.management.SystemsManagerMaintenanceWindows** -- **diagrams.aws.management.SystemsManagerOpscenter** -- **diagrams.aws.management.SystemsManagerParameterStore**, **ParameterStore** (alias) -- **diagrams.aws.management.SystemsManagerPatchManager** -- **diagrams.aws.management.SystemsManagerRunCommand** -- **diagrams.aws.management.SystemsManagerStateManager** -- **diagrams.aws.management.SystemsManager**, **SSM** (alias) -- **diagrams.aws.management.TrustedAdvisorChecklistCost** -- **diagrams.aws.management.TrustedAdvisorChecklistFaultTolerant** -- **diagrams.aws.management.TrustedAdvisorChecklistPerformance** -- **diagrams.aws.management.TrustedAdvisorChecklistSecurity** -- **diagrams.aws.management.TrustedAdvisorChecklist** -- **diagrams.aws.management.TrustedAdvisor** -- **diagrams.aws.management.WellArchitectedTool** + +AmazonDevopsGuru +**diagrams.aws.management.AmazonDevopsGuru** + +AmazonManagedGrafana +**diagrams.aws.management.AmazonManagedGrafana** + +AmazonManagedPrometheus +**diagrams.aws.management.AmazonManagedPrometheus** + +AmazonManagedWorkflowsApacheAirflow +**diagrams.aws.management.AmazonManagedWorkflowsApacheAirflow** + +AutoScaling +**diagrams.aws.management.AutoScaling** + +Chatbot +**diagrams.aws.management.Chatbot** + +CloudformationChangeSet +**diagrams.aws.management.CloudformationChangeSet** + +CloudformationStack +**diagrams.aws.management.CloudformationStack** + +CloudformationTemplate +**diagrams.aws.management.CloudformationTemplate** + +Cloudformation +**diagrams.aws.management.Cloudformation** + +Cloudtrail +**diagrams.aws.management.Cloudtrail** + +CloudwatchAlarm +**diagrams.aws.management.CloudwatchAlarm** + +CloudwatchEventEventBased +**diagrams.aws.management.CloudwatchEventEventBased** + +CloudwatchEventTimeBased +**diagrams.aws.management.CloudwatchEventTimeBased** + +CloudwatchRule +**diagrams.aws.management.CloudwatchRule** + +Cloudwatch +**diagrams.aws.management.Cloudwatch** + +Codeguru +**diagrams.aws.management.Codeguru** + +CommandLineInterface +**diagrams.aws.management.CommandLineInterface** + +Config +**diagrams.aws.management.Config** + +ControlTower +**diagrams.aws.management.ControlTower** + +LicenseManager +**diagrams.aws.management.LicenseManager** + +ManagedServices +**diagrams.aws.management.ManagedServices** + +ManagementAndGovernance +**diagrams.aws.management.ManagementAndGovernance** + +ManagementConsole +**diagrams.aws.management.ManagementConsole** + +OpsworksApps +**diagrams.aws.management.OpsworksApps** + +OpsworksDeployments +**diagrams.aws.management.OpsworksDeployments** + +OpsworksInstances +**diagrams.aws.management.OpsworksInstances** + +OpsworksLayers +**diagrams.aws.management.OpsworksLayers** + +OpsworksMonitoring +**diagrams.aws.management.OpsworksMonitoring** + +OpsworksPermissions +**diagrams.aws.management.OpsworksPermissions** + +OpsworksResources +**diagrams.aws.management.OpsworksResources** + +OpsworksStack +**diagrams.aws.management.OpsworksStack** + +Opsworks +**diagrams.aws.management.Opsworks** + +OrganizationsAccount +**diagrams.aws.management.OrganizationsAccount** + +OrganizationsOrganizationalUnit +**diagrams.aws.management.OrganizationsOrganizationalUnit** + +Organizations +**diagrams.aws.management.Organizations** + +PersonalHealthDashboard +**diagrams.aws.management.PersonalHealthDashboard** + +Proton +**diagrams.aws.management.Proton** + +ServiceCatalog +**diagrams.aws.management.ServiceCatalog** + +SystemsManagerAppConfig +**diagrams.aws.management.SystemsManagerAppConfig** + +SystemsManagerAutomation +**diagrams.aws.management.SystemsManagerAutomation** + +SystemsManagerDocuments +**diagrams.aws.management.SystemsManagerDocuments** + +SystemsManagerInventory +**diagrams.aws.management.SystemsManagerInventory** + +SystemsManagerMaintenanceWindows +**diagrams.aws.management.SystemsManagerMaintenanceWindows** + +SystemsManagerOpscenter +**diagrams.aws.management.SystemsManagerOpscenter** + +SystemsManagerParameterStore +**diagrams.aws.management.SystemsManagerParameterStore**, **ParameterStore** (alias) + +SystemsManagerPatchManager +**diagrams.aws.management.SystemsManagerPatchManager** + +SystemsManagerRunCommand +**diagrams.aws.management.SystemsManagerRunCommand** + +SystemsManagerStateManager +**diagrams.aws.management.SystemsManagerStateManager** + +SystemsManager +**diagrams.aws.management.SystemsManager**, **SSM** (alias) + +TrustedAdvisorChecklistCost +**diagrams.aws.management.TrustedAdvisorChecklistCost** + +TrustedAdvisorChecklistFaultTolerant +**diagrams.aws.management.TrustedAdvisorChecklistFaultTolerant** + +TrustedAdvisorChecklistPerformance +**diagrams.aws.management.TrustedAdvisorChecklistPerformance** + +TrustedAdvisorChecklistSecurity +**diagrams.aws.management.TrustedAdvisorChecklistSecurity** + +TrustedAdvisorChecklist +**diagrams.aws.management.TrustedAdvisorChecklist** + +TrustedAdvisor +**diagrams.aws.management.TrustedAdvisor** + +WellArchitectedTool +**diagrams.aws.management.WellArchitectedTool** ## aws.media -- **diagrams.aws.media.ElasticTranscoder** -- **diagrams.aws.media.ElementalConductor** -- **diagrams.aws.media.ElementalDelta** -- **diagrams.aws.media.ElementalLive** -- **diagrams.aws.media.ElementalMediaconnect** -- **diagrams.aws.media.ElementalMediaconvert** -- **diagrams.aws.media.ElementalMedialive** -- **diagrams.aws.media.ElementalMediapackage** -- **diagrams.aws.media.ElementalMediastore** -- **diagrams.aws.media.ElementalMediatailor** -- **diagrams.aws.media.ElementalServer** -- **diagrams.aws.media.KinesisVideoStreams** -- **diagrams.aws.media.MediaServices** + +ElasticTranscoder +**diagrams.aws.media.ElasticTranscoder** + +ElementalConductor +**diagrams.aws.media.ElementalConductor** + +ElementalDelta +**diagrams.aws.media.ElementalDelta** + +ElementalLive +**diagrams.aws.media.ElementalLive** + +ElementalMediaconnect +**diagrams.aws.media.ElementalMediaconnect** + +ElementalMediaconvert +**diagrams.aws.media.ElementalMediaconvert** + +ElementalMedialive +**diagrams.aws.media.ElementalMedialive** + +ElementalMediapackage +**diagrams.aws.media.ElementalMediapackage** + +ElementalMediastore +**diagrams.aws.media.ElementalMediastore** + +ElementalMediatailor +**diagrams.aws.media.ElementalMediatailor** + +ElementalServer +**diagrams.aws.media.ElementalServer** + +KinesisVideoStreams +**diagrams.aws.media.KinesisVideoStreams** + +MediaServices +**diagrams.aws.media.MediaServices** ## aws.migration -- **diagrams.aws.migration.ApplicationDiscoveryService**, **ADS** (alias) -- **diagrams.aws.migration.CloudendureMigration**, **CEM** (alias) -- **diagrams.aws.migration.DatabaseMigrationService**, **DMS** (alias) -- **diagrams.aws.migration.DatasyncAgent** -- **diagrams.aws.migration.Datasync** -- **diagrams.aws.migration.MigrationAndTransfer**, **MAT** (alias) -- **diagrams.aws.migration.MigrationHub** -- **diagrams.aws.migration.ServerMigrationService**, **SMS** (alias) -- **diagrams.aws.migration.SnowballEdge** -- **diagrams.aws.migration.Snowball** -- **diagrams.aws.migration.Snowmobile** -- **diagrams.aws.migration.TransferForSftp** + +ApplicationDiscoveryService +**diagrams.aws.migration.ApplicationDiscoveryService**, **ADS** (alias) + +CloudendureMigration +**diagrams.aws.migration.CloudendureMigration**, **CEM** (alias) + +DatabaseMigrationService +**diagrams.aws.migration.DatabaseMigrationService**, **DMS** (alias) + +DatasyncAgent +**diagrams.aws.migration.DatasyncAgent** + +Datasync +**diagrams.aws.migration.Datasync** + +MigrationAndTransfer +**diagrams.aws.migration.MigrationAndTransfer**, **MAT** (alias) + +MigrationHub +**diagrams.aws.migration.MigrationHub** + +ServerMigrationService +**diagrams.aws.migration.ServerMigrationService**, **SMS** (alias) + +SnowballEdge +**diagrams.aws.migration.SnowballEdge** + +Snowball +**diagrams.aws.migration.Snowball** + +Snowmobile +**diagrams.aws.migration.Snowmobile** + +TransferForSftp +**diagrams.aws.migration.TransferForSftp** ## aws.ml -- **diagrams.aws.ml.ApacheMxnetOnAWS** -- **diagrams.aws.ml.AugmentedAi** -- **diagrams.aws.ml.Comprehend** -- **diagrams.aws.ml.DeepLearningAmis** -- **diagrams.aws.ml.DeepLearningContainers**, **DLC** (alias) -- **diagrams.aws.ml.Deepcomposer** -- **diagrams.aws.ml.Deeplens** -- **diagrams.aws.ml.Deepracer** -- **diagrams.aws.ml.ElasticInference** -- **diagrams.aws.ml.Forecast** -- **diagrams.aws.ml.FraudDetector** -- **diagrams.aws.ml.Kendra** -- **diagrams.aws.ml.Lex** -- **diagrams.aws.ml.MachineLearning** -- **diagrams.aws.ml.Personalize** -- **diagrams.aws.ml.Polly** -- **diagrams.aws.ml.RekognitionImage** -- **diagrams.aws.ml.RekognitionVideo** -- **diagrams.aws.ml.Rekognition** -- **diagrams.aws.ml.SagemakerGroundTruth** -- **diagrams.aws.ml.SagemakerModel** -- **diagrams.aws.ml.SagemakerNotebook** -- **diagrams.aws.ml.SagemakerTrainingJob** -- **diagrams.aws.ml.Sagemaker** -- **diagrams.aws.ml.TensorflowOnAWS** -- **diagrams.aws.ml.Textract** -- **diagrams.aws.ml.Transcribe** -- **diagrams.aws.ml.Translate** + +ApacheMxnetOnAWS +**diagrams.aws.ml.ApacheMxnetOnAWS** + +AugmentedAi +**diagrams.aws.ml.AugmentedAi** + +Comprehend +**diagrams.aws.ml.Comprehend** + +DeepLearningAmis +**diagrams.aws.ml.DeepLearningAmis** + +DeepLearningContainers +**diagrams.aws.ml.DeepLearningContainers**, **DLC** (alias) + +Deepcomposer +**diagrams.aws.ml.Deepcomposer** + +Deeplens +**diagrams.aws.ml.Deeplens** + +Deepracer +**diagrams.aws.ml.Deepracer** + +ElasticInference +**diagrams.aws.ml.ElasticInference** + +Forecast +**diagrams.aws.ml.Forecast** + +FraudDetector +**diagrams.aws.ml.FraudDetector** + +Kendra +**diagrams.aws.ml.Kendra** + +Lex +**diagrams.aws.ml.Lex** + +MachineLearning +**diagrams.aws.ml.MachineLearning** + +Personalize +**diagrams.aws.ml.Personalize** + +Polly +**diagrams.aws.ml.Polly** + +RekognitionImage +**diagrams.aws.ml.RekognitionImage** + +RekognitionVideo +**diagrams.aws.ml.RekognitionVideo** + +Rekognition +**diagrams.aws.ml.Rekognition** + +SagemakerGroundTruth +**diagrams.aws.ml.SagemakerGroundTruth** + +SagemakerModel +**diagrams.aws.ml.SagemakerModel** + +SagemakerNotebook +**diagrams.aws.ml.SagemakerNotebook** + +SagemakerTrainingJob +**diagrams.aws.ml.SagemakerTrainingJob** + +Sagemaker +**diagrams.aws.ml.Sagemaker** + +TensorflowOnAWS +**diagrams.aws.ml.TensorflowOnAWS** + +Textract +**diagrams.aws.ml.Textract** + +Transcribe +**diagrams.aws.ml.Transcribe** + +Translate +**diagrams.aws.ml.Translate** ## aws.mobile -- **diagrams.aws.mobile.Amplify** -- **diagrams.aws.mobile.APIGatewayEndpoint** -- **diagrams.aws.mobile.APIGateway** -- **diagrams.aws.mobile.Appsync** -- **diagrams.aws.mobile.DeviceFarm** -- **diagrams.aws.mobile.Mobile** -- **diagrams.aws.mobile.Pinpoint** + +Amplify +**diagrams.aws.mobile.Amplify** + +APIGatewayEndpoint +**diagrams.aws.mobile.APIGatewayEndpoint** + +APIGateway +**diagrams.aws.mobile.APIGateway** + +Appsync +**diagrams.aws.mobile.Appsync** + +DeviceFarm +**diagrams.aws.mobile.DeviceFarm** + +Mobile +**diagrams.aws.mobile.Mobile** + +Pinpoint +**diagrams.aws.mobile.Pinpoint** ## aws.network -- **diagrams.aws.network.APIGatewayEndpoint** -- **diagrams.aws.network.APIGateway** -- **diagrams.aws.network.AppMesh** -- **diagrams.aws.network.ClientVpn** -- **diagrams.aws.network.CloudMap** -- **diagrams.aws.network.CloudFrontDownloadDistribution** -- **diagrams.aws.network.CloudFrontEdgeLocation** -- **diagrams.aws.network.CloudFrontStreamingDistribution** -- **diagrams.aws.network.CloudFront**, **CF** (alias) -- **diagrams.aws.network.DirectConnect** -- **diagrams.aws.network.ElasticLoadBalancing**, **ELB** (alias) -- **diagrams.aws.network.ElbApplicationLoadBalancer**, **ALB** (alias) -- **diagrams.aws.network.ElbClassicLoadBalancer**, **CLB** (alias) -- **diagrams.aws.network.ElbNetworkLoadBalancer**, **NLB** (alias) -- **diagrams.aws.network.Endpoint** -- **diagrams.aws.network.GlobalAccelerator**, **GAX** (alias) -- **diagrams.aws.network.InternetGateway** -- **diagrams.aws.network.Nacl** -- **diagrams.aws.network.NATGateway** -- **diagrams.aws.network.NetworkingAndContentDelivery** -- **diagrams.aws.network.PrivateSubnet** -- **diagrams.aws.network.Privatelink** -- **diagrams.aws.network.PublicSubnet** -- **diagrams.aws.network.Route53HostedZone** -- **diagrams.aws.network.Route53** -- **diagrams.aws.network.RouteTable** -- **diagrams.aws.network.SiteToSiteVpn** -- **diagrams.aws.network.TransitGateway** -- **diagrams.aws.network.VPCCustomerGateway** -- **diagrams.aws.network.VPCElasticNetworkAdapter** -- **diagrams.aws.network.VPCElasticNetworkInterface** -- **diagrams.aws.network.VPCFlowLogs** -- **diagrams.aws.network.VPCPeering** -- **diagrams.aws.network.VPCRouter** -- **diagrams.aws.network.VPCTrafficMirroring** -- **diagrams.aws.network.VPC** -- **diagrams.aws.network.VpnConnection** -- **diagrams.aws.network.VpnGateway** + +APIGatewayEndpoint +**diagrams.aws.network.APIGatewayEndpoint** + +APIGateway +**diagrams.aws.network.APIGateway** + +AppMesh +**diagrams.aws.network.AppMesh** + +ClientVpn +**diagrams.aws.network.ClientVpn** + +CloudMap +**diagrams.aws.network.CloudMap** + +CloudFrontDownloadDistribution +**diagrams.aws.network.CloudFrontDownloadDistribution** + +CloudFrontEdgeLocation +**diagrams.aws.network.CloudFrontEdgeLocation** + +CloudFrontStreamingDistribution +**diagrams.aws.network.CloudFrontStreamingDistribution** + +CloudFront +**diagrams.aws.network.CloudFront**, **CF** (alias) + +DirectConnect +**diagrams.aws.network.DirectConnect** + +ElasticLoadBalancing +**diagrams.aws.network.ElasticLoadBalancing**, **ELB** (alias) + +ElbApplicationLoadBalancer +**diagrams.aws.network.ElbApplicationLoadBalancer**, **ALB** (alias) + +ElbClassicLoadBalancer +**diagrams.aws.network.ElbClassicLoadBalancer**, **CLB** (alias) + +ElbNetworkLoadBalancer +**diagrams.aws.network.ElbNetworkLoadBalancer**, **NLB** (alias) + +Endpoint +**diagrams.aws.network.Endpoint** + +GlobalAccelerator +**diagrams.aws.network.GlobalAccelerator**, **GAX** (alias) + +InternetGateway +**diagrams.aws.network.InternetGateway**, **IGW** (alias) + +Nacl +**diagrams.aws.network.Nacl** + +NATGateway +**diagrams.aws.network.NATGateway** + +NetworkFirewall +**diagrams.aws.network.NetworkFirewall** + +NetworkingAndContentDelivery +**diagrams.aws.network.NetworkingAndContentDelivery** + +PrivateSubnet +**diagrams.aws.network.PrivateSubnet** + +Privatelink +**diagrams.aws.network.Privatelink** + +PublicSubnet +**diagrams.aws.network.PublicSubnet** + +Route53HostedZone +**diagrams.aws.network.Route53HostedZone** + +Route53 +**diagrams.aws.network.Route53** + +RouteTable +**diagrams.aws.network.RouteTable** + +SiteToSiteVpn +**diagrams.aws.network.SiteToSiteVpn** + +TransitGatewayAttachment +**diagrams.aws.network.TransitGatewayAttachment**, **TGWAttach** (alias) + +TransitGateway +**diagrams.aws.network.TransitGateway**, **TGW** (alias) + +VPCCustomerGateway +**diagrams.aws.network.VPCCustomerGateway** + +VPCElasticNetworkAdapter +**diagrams.aws.network.VPCElasticNetworkAdapter** + +VPCElasticNetworkInterface +**diagrams.aws.network.VPCElasticNetworkInterface** + +VPCFlowLogs +**diagrams.aws.network.VPCFlowLogs** + +VPCPeering +**diagrams.aws.network.VPCPeering** + +VPCRouter +**diagrams.aws.network.VPCRouter** + +VPCTrafficMirroring +**diagrams.aws.network.VPCTrafficMirroring** + +VPC +**diagrams.aws.network.VPC** + +VpnConnection +**diagrams.aws.network.VpnConnection** + +VpnGateway +**diagrams.aws.network.VpnGateway** ## aws.quantum -- **diagrams.aws.quantum.Braket** -- **diagrams.aws.quantum.QuantumTechnologies** + +Braket +**diagrams.aws.quantum.Braket** + +QuantumTechnologies +**diagrams.aws.quantum.QuantumTechnologies** ## aws.robotics -- **diagrams.aws.robotics.RobomakerCloudExtensionRos** -- **diagrams.aws.robotics.RobomakerDevelopmentEnvironment** -- **diagrams.aws.robotics.RobomakerFleetManagement** -- **diagrams.aws.robotics.RobomakerSimulator** -- **diagrams.aws.robotics.Robomaker** -- **diagrams.aws.robotics.Robotics** + +RobomakerCloudExtensionRos +**diagrams.aws.robotics.RobomakerCloudExtensionRos** + +RobomakerDevelopmentEnvironment +**diagrams.aws.robotics.RobomakerDevelopmentEnvironment** + +RobomakerFleetManagement +**diagrams.aws.robotics.RobomakerFleetManagement** + +RobomakerSimulator +**diagrams.aws.robotics.RobomakerSimulator** + +Robomaker +**diagrams.aws.robotics.Robomaker** + +Robotics +**diagrams.aws.robotics.Robotics** ## aws.satellite -- **diagrams.aws.satellite.GroundStation** -- **diagrams.aws.satellite.Satellite** + +GroundStation +**diagrams.aws.satellite.GroundStation** + +Satellite +**diagrams.aws.satellite.Satellite** ## aws.security -- **diagrams.aws.security.AdConnector** -- **diagrams.aws.security.Artifact** -- **diagrams.aws.security.CertificateAuthority** -- **diagrams.aws.security.CertificateManager**, **ACM** (alias) -- **diagrams.aws.security.CloudDirectory** -- **diagrams.aws.security.Cloudhsm**, **CloudHSM** (alias) -- **diagrams.aws.security.Cognito** -- **diagrams.aws.security.Detective** -- **diagrams.aws.security.DirectoryService**, **DS** (alias) -- **diagrams.aws.security.FirewallManager**, **FMS** (alias) -- **diagrams.aws.security.Guardduty** -- **diagrams.aws.security.IdentityAndAccessManagementIamAccessAnalyzer**, **IAMAccessAnalyzer** (alias) -- **diagrams.aws.security.IdentityAndAccessManagementIamAddOn** -- **diagrams.aws.security.IdentityAndAccessManagementIamAWSStsAlternate** -- **diagrams.aws.security.IdentityAndAccessManagementIamAWSSts**, **IAMAWSSts** (alias) -- **diagrams.aws.security.IdentityAndAccessManagementIamDataEncryptionKey** -- **diagrams.aws.security.IdentityAndAccessManagementIamEncryptedData** -- **diagrams.aws.security.IdentityAndAccessManagementIamLongTermSecurityCredential** -- **diagrams.aws.security.IdentityAndAccessManagementIamMfaToken** -- **diagrams.aws.security.IdentityAndAccessManagementIamPermissions**, **IAMPermissions** (alias) -- **diagrams.aws.security.IdentityAndAccessManagementIamRole**, **IAMRole** (alias) -- **diagrams.aws.security.IdentityAndAccessManagementIamTemporarySecurityCredential** -- **diagrams.aws.security.IdentityAndAccessManagementIam**, **IAM** (alias) -- **diagrams.aws.security.InspectorAgent** -- **diagrams.aws.security.Inspector** -- **diagrams.aws.security.KeyManagementService**, **KMS** (alias) -- **diagrams.aws.security.Macie** -- **diagrams.aws.security.ManagedMicrosoftAd** -- **diagrams.aws.security.ResourceAccessManager**, **RAM** (alias) -- **diagrams.aws.security.SecretsManager** -- **diagrams.aws.security.SecurityHubFinding** -- **diagrams.aws.security.SecurityHub** -- **diagrams.aws.security.SecurityIdentityAndCompliance** -- **diagrams.aws.security.ShieldAdvanced** -- **diagrams.aws.security.Shield** -- **diagrams.aws.security.SimpleAd** -- **diagrams.aws.security.SingleSignOn** -- **diagrams.aws.security.WAFFilteringRule** -- **diagrams.aws.security.WAF** + +AdConnector +**diagrams.aws.security.AdConnector** + +Artifact +**diagrams.aws.security.Artifact** + +CertificateAuthority +**diagrams.aws.security.CertificateAuthority** + +CertificateManager +**diagrams.aws.security.CertificateManager**, **ACM** (alias) + +CloudDirectory +**diagrams.aws.security.CloudDirectory** + +Cloudhsm +**diagrams.aws.security.Cloudhsm**, **CloudHSM** (alias) + +Cognito +**diagrams.aws.security.Cognito** + +Detective +**diagrams.aws.security.Detective** + +DirectoryService +**diagrams.aws.security.DirectoryService**, **DS** (alias) + +FirewallManager +**diagrams.aws.security.FirewallManager**, **FMS** (alias) + +Guardduty +**diagrams.aws.security.Guardduty** + +IdentityAndAccessManagementIamAccessAnalyzer +**diagrams.aws.security.IdentityAndAccessManagementIamAccessAnalyzer**, **IAMAccessAnalyzer** (alias) + +IdentityAndAccessManagementIamAddOn +**diagrams.aws.security.IdentityAndAccessManagementIamAddOn** + +IdentityAndAccessManagementIamAWSStsAlternate +**diagrams.aws.security.IdentityAndAccessManagementIamAWSStsAlternate** + +IdentityAndAccessManagementIamAWSSts +**diagrams.aws.security.IdentityAndAccessManagementIamAWSSts**, **IAMAWSSts** (alias) + +IdentityAndAccessManagementIamDataEncryptionKey +**diagrams.aws.security.IdentityAndAccessManagementIamDataEncryptionKey** + +IdentityAndAccessManagementIamEncryptedData +**diagrams.aws.security.IdentityAndAccessManagementIamEncryptedData** + +IdentityAndAccessManagementIamLongTermSecurityCredential +**diagrams.aws.security.IdentityAndAccessManagementIamLongTermSecurityCredential** + +IdentityAndAccessManagementIamMfaToken +**diagrams.aws.security.IdentityAndAccessManagementIamMfaToken** + +IdentityAndAccessManagementIamPermissions +**diagrams.aws.security.IdentityAndAccessManagementIamPermissions**, **IAMPermissions** (alias) + +IdentityAndAccessManagementIamRole +**diagrams.aws.security.IdentityAndAccessManagementIamRole**, **IAMRole** (alias) + +IdentityAndAccessManagementIamTemporarySecurityCredential +**diagrams.aws.security.IdentityAndAccessManagementIamTemporarySecurityCredential** + +IdentityAndAccessManagementIam +**diagrams.aws.security.IdentityAndAccessManagementIam**, **IAM** (alias) + +InspectorAgent +**diagrams.aws.security.InspectorAgent** + +Inspector +**diagrams.aws.security.Inspector** + +KeyManagementService +**diagrams.aws.security.KeyManagementService**, **KMS** (alias) + +Macie +**diagrams.aws.security.Macie** + +ManagedMicrosoftAd +**diagrams.aws.security.ManagedMicrosoftAd** + +ResourceAccessManager +**diagrams.aws.security.ResourceAccessManager**, **RAM** (alias) + +SecretsManager +**diagrams.aws.security.SecretsManager** + +SecurityHubFinding +**diagrams.aws.security.SecurityHubFinding** + +SecurityHub +**diagrams.aws.security.SecurityHub** + +SecurityIdentityAndCompliance +**diagrams.aws.security.SecurityIdentityAndCompliance** + +ShieldAdvanced +**diagrams.aws.security.ShieldAdvanced** + +Shield +**diagrams.aws.security.Shield** + +SimpleAd +**diagrams.aws.security.SimpleAd** + +SingleSignOn +**diagrams.aws.security.SingleSignOn** + +WAFFilteringRule +**diagrams.aws.security.WAFFilteringRule** + +WAF +**diagrams.aws.security.WAF** ## aws.storage -- **diagrams.aws.storage.Backup** -- **diagrams.aws.storage.CloudendureDisasterRecovery**, **CDR** (alias) -- **diagrams.aws.storage.EFSInfrequentaccessPrimaryBg** -- **diagrams.aws.storage.EFSStandardPrimaryBg** -- **diagrams.aws.storage.ElasticBlockStoreEBSSnapshot** -- **diagrams.aws.storage.ElasticBlockStoreEBSVolume** -- **diagrams.aws.storage.ElasticBlockStoreEBS**, **EBS** (alias) -- **diagrams.aws.storage.ElasticFileSystemEFSFileSystem** -- **diagrams.aws.storage.ElasticFileSystemEFS**, **EFS** (alias) -- **diagrams.aws.storage.FsxForLustre** -- **diagrams.aws.storage.FsxForWindowsFileServer** -- **diagrams.aws.storage.Fsx**, **FSx** (alias) -- **diagrams.aws.storage.MultipleVolumesResource** -- **diagrams.aws.storage.S3GlacierArchive** -- **diagrams.aws.storage.S3GlacierVault** -- **diagrams.aws.storage.S3Glacier** -- **diagrams.aws.storage.SimpleStorageServiceS3BucketWithObjects** -- **diagrams.aws.storage.SimpleStorageServiceS3Bucket** -- **diagrams.aws.storage.SimpleStorageServiceS3Object** -- **diagrams.aws.storage.SimpleStorageServiceS3**, **S3** (alias) -- **diagrams.aws.storage.SnowFamilySnowballImportExport** -- **diagrams.aws.storage.SnowballEdge** -- **diagrams.aws.storage.Snowball** -- **diagrams.aws.storage.Snowmobile** -- **diagrams.aws.storage.StorageGatewayCachedVolume** -- **diagrams.aws.storage.StorageGatewayNonCachedVolume** -- **diagrams.aws.storage.StorageGatewayVirtualTapeLibrary** -- **diagrams.aws.storage.StorageGateway** -- **diagrams.aws.storage.Storage** + +Backup +**diagrams.aws.storage.Backup** + +CloudendureDisasterRecovery +**diagrams.aws.storage.CloudendureDisasterRecovery**, **CDR** (alias) + +EFSInfrequentaccessPrimaryBg +**diagrams.aws.storage.EFSInfrequentaccessPrimaryBg** + +EFSStandardPrimaryBg +**diagrams.aws.storage.EFSStandardPrimaryBg** + +ElasticBlockStoreEBSSnapshot +**diagrams.aws.storage.ElasticBlockStoreEBSSnapshot** + +ElasticBlockStoreEBSVolume +**diagrams.aws.storage.ElasticBlockStoreEBSVolume** + +ElasticBlockStoreEBS +**diagrams.aws.storage.ElasticBlockStoreEBS**, **EBS** (alias) + +ElasticFileSystemEFSFileSystem +**diagrams.aws.storage.ElasticFileSystemEFSFileSystem** + +ElasticFileSystemEFS +**diagrams.aws.storage.ElasticFileSystemEFS**, **EFS** (alias) + +FsxForLustre +**diagrams.aws.storage.FsxForLustre** + +FsxForWindowsFileServer +**diagrams.aws.storage.FsxForWindowsFileServer** + +Fsx +**diagrams.aws.storage.Fsx**, **FSx** (alias) + +MultipleVolumesResource +**diagrams.aws.storage.MultipleVolumesResource** + +S3GlacierArchive +**diagrams.aws.storage.S3GlacierArchive** + +S3GlacierVault +**diagrams.aws.storage.S3GlacierVault** + +S3Glacier +**diagrams.aws.storage.S3Glacier** + +SimpleStorageServiceS3BucketWithObjects +**diagrams.aws.storage.SimpleStorageServiceS3BucketWithObjects** + +SimpleStorageServiceS3Bucket +**diagrams.aws.storage.SimpleStorageServiceS3Bucket** + +SimpleStorageServiceS3Object +**diagrams.aws.storage.SimpleStorageServiceS3Object** + +SimpleStorageServiceS3 +**diagrams.aws.storage.SimpleStorageServiceS3**, **S3** (alias) + +SnowFamilySnowballImportExport +**diagrams.aws.storage.SnowFamilySnowballImportExport** + +SnowballEdge +**diagrams.aws.storage.SnowballEdge** + +Snowball +**diagrams.aws.storage.Snowball** + +Snowmobile +**diagrams.aws.storage.Snowmobile** + +StorageGatewayCachedVolume +**diagrams.aws.storage.StorageGatewayCachedVolume** + +StorageGatewayNonCachedVolume +**diagrams.aws.storage.StorageGatewayNonCachedVolume** + +StorageGatewayVirtualTapeLibrary +**diagrams.aws.storage.StorageGatewayVirtualTapeLibrary** + +StorageGateway +**diagrams.aws.storage.StorageGateway** + +Storage +**diagrams.aws.storage.Storage** diff --git a/docs/nodes/azure.md b/docs/nodes/azure.md index a6c91e79..875471e8 100644 --- a/docs/nodes/azure.md +++ b/docs/nodes/azure.md @@ -3,242 +3,739 @@ id: azure title: Azure --- -Node classes list of azure provider. +Node classes list of the azure provider. ## azure.analytics -- **diagrams.azure.analytics.AnalysisServices** -- **diagrams.azure.analytics.DataExplorerClusters** -- **diagrams.azure.analytics.DataFactories** -- **diagrams.azure.analytics.DataLakeAnalytics** -- **diagrams.azure.analytics.DataLakeStoreGen1** -- **diagrams.azure.analytics.Databricks** -- **diagrams.azure.analytics.EventHubClusters** -- **diagrams.azure.analytics.EventHubs** -- **diagrams.azure.analytics.Hdinsightclusters** -- **diagrams.azure.analytics.LogAnalyticsWorkspaces** -- **diagrams.azure.analytics.StreamAnalyticsJobs** + +AnalysisServices +**diagrams.azure.analytics.AnalysisServices** + +DataExplorerClusters +**diagrams.azure.analytics.DataExplorerClusters** + +DataFactories +**diagrams.azure.analytics.DataFactories** + +DataLakeAnalytics +**diagrams.azure.analytics.DataLakeAnalytics** + +DataLakeStoreGen1 +**diagrams.azure.analytics.DataLakeStoreGen1** + +Databricks +**diagrams.azure.analytics.Databricks** + +EventHubClusters +**diagrams.azure.analytics.EventHubClusters** + +EventHubs +**diagrams.azure.analytics.EventHubs** + +Hdinsightclusters +**diagrams.azure.analytics.Hdinsightclusters** + +LogAnalyticsWorkspaces +**diagrams.azure.analytics.LogAnalyticsWorkspaces** + +StreamAnalyticsJobs +**diagrams.azure.analytics.StreamAnalyticsJobs** + +SynapseAnalytics +**diagrams.azure.analytics.SynapseAnalytics** ## azure.compute -- **diagrams.azure.compute.AvailabilitySets** -- **diagrams.azure.compute.BatchAccounts** -- **diagrams.azure.compute.CitrixVirtualDesktopsEssentials** -- **diagrams.azure.compute.CloudServicesClassic** -- **diagrams.azure.compute.CloudServices** -- **diagrams.azure.compute.CloudsimpleVirtualMachines** -- **diagrams.azure.compute.ContainerInstances** -- **diagrams.azure.compute.ContainerRegistries**, **ACR** (alias) -- **diagrams.azure.compute.DiskSnapshots** -- **diagrams.azure.compute.Disks** -- **diagrams.azure.compute.FunctionApps** -- **diagrams.azure.compute.KubernetesServices**, **AKS** (alias) -- **diagrams.azure.compute.MeshApplications** -- **diagrams.azure.compute.SAPHANAOnAzure** -- **diagrams.azure.compute.ServiceFabricClusters** -- **diagrams.azure.compute.VMClassic** -- **diagrams.azure.compute.VMImages** -- **diagrams.azure.compute.VMLinux** -- **diagrams.azure.compute.VMScaleSet**, **VMSS** (alias) -- **diagrams.azure.compute.VMWindows** -- **diagrams.azure.compute.VM** + +AppServices +**diagrams.azure.compute.AppServices** + +AutomanagedVM +**diagrams.azure.compute.AutomanagedVM** + +AvailabilitySets +**diagrams.azure.compute.AvailabilitySets** + +BatchAccounts +**diagrams.azure.compute.BatchAccounts** + +CitrixVirtualDesktopsEssentials +**diagrams.azure.compute.CitrixVirtualDesktopsEssentials** + +CloudServicesClassic +**diagrams.azure.compute.CloudServicesClassic** + +CloudServices +**diagrams.azure.compute.CloudServices** + +CloudsimpleVirtualMachines +**diagrams.azure.compute.CloudsimpleVirtualMachines** + +ContainerApps +**diagrams.azure.compute.ContainerApps** + +ContainerInstances +**diagrams.azure.compute.ContainerInstances** + +ContainerRegistries +**diagrams.azure.compute.ContainerRegistries**, **ACR** (alias) + +DiskEncryptionSets +**diagrams.azure.compute.DiskEncryptionSets** + +DiskSnapshots +**diagrams.azure.compute.DiskSnapshots** + +Disks +**diagrams.azure.compute.Disks** + +FunctionApps +**diagrams.azure.compute.FunctionApps** + +ImageDefinitions +**diagrams.azure.compute.ImageDefinitions** + +ImageVersions +**diagrams.azure.compute.ImageVersions** + +KubernetesServices +**diagrams.azure.compute.KubernetesServices**, **AKS** (alias) + +MeshApplications +**diagrams.azure.compute.MeshApplications** + +OsImages +**diagrams.azure.compute.OsImages** + +SAPHANAOnAzure +**diagrams.azure.compute.SAPHANAOnAzure** + +ServiceFabricClusters +**diagrams.azure.compute.ServiceFabricClusters** + +SharedImageGalleries +**diagrams.azure.compute.SharedImageGalleries** + +SpringCloud +**diagrams.azure.compute.SpringCloud** + +VMClassic +**diagrams.azure.compute.VMClassic** + +VMImages +**diagrams.azure.compute.VMImages** + +VMLinux +**diagrams.azure.compute.VMLinux** + +VMScaleSet +**diagrams.azure.compute.VMScaleSet**, **VMSS** (alias) + +VMWindows +**diagrams.azure.compute.VMWindows** + +VM +**diagrams.azure.compute.VM** + +Workspaces +**diagrams.azure.compute.Workspaces** ## azure.database -- **diagrams.azure.database.BlobStorage** -- **diagrams.azure.database.CacheForRedis** -- **diagrams.azure.database.CosmosDb** -- **diagrams.azure.database.DataLake** -- **diagrams.azure.database.DatabaseForMariadbServers** -- **diagrams.azure.database.DatabaseForMysqlServers** -- **diagrams.azure.database.DatabaseForPostgresqlServers** -- **diagrams.azure.database.ElasticDatabasePools** -- **diagrams.azure.database.ElasticJobAgents** -- **diagrams.azure.database.ManagedDatabases** -- **diagrams.azure.database.SQLDatabases** -- **diagrams.azure.database.SQLDatawarehouse** -- **diagrams.azure.database.SQLManagedInstances** -- **diagrams.azure.database.SQLServerStretchDatabases** -- **diagrams.azure.database.SQLServers** -- **diagrams.azure.database.VirtualClusters** -- **diagrams.azure.database.VirtualDatacenter** + +BlobStorage +**diagrams.azure.database.BlobStorage** + +CacheForRedis +**diagrams.azure.database.CacheForRedis** + +CosmosDb +**diagrams.azure.database.CosmosDb** + +DataExplorerClusters +**diagrams.azure.database.DataExplorerClusters** + +DataFactory +**diagrams.azure.database.DataFactory** + +DataLake +**diagrams.azure.database.DataLake** + +DatabaseForMariadbServers +**diagrams.azure.database.DatabaseForMariadbServers** + +DatabaseForMysqlServers +**diagrams.azure.database.DatabaseForMysqlServers** + +DatabaseForPostgresqlServers +**diagrams.azure.database.DatabaseForPostgresqlServers** + +ElasticDatabasePools +**diagrams.azure.database.ElasticDatabasePools** + +ElasticJobAgents +**diagrams.azure.database.ElasticJobAgents** + +InstancePools +**diagrams.azure.database.InstancePools** + +ManagedDatabases +**diagrams.azure.database.ManagedDatabases** + +SQLDatabases +**diagrams.azure.database.SQLDatabases** + +SQLDatawarehouse +**diagrams.azure.database.SQLDatawarehouse** + +SQLManagedInstances +**diagrams.azure.database.SQLManagedInstances** + +SQLServerStretchDatabases +**diagrams.azure.database.SQLServerStretchDatabases** + +SQLServers +**diagrams.azure.database.SQLServers** + +SQLVM +**diagrams.azure.database.SQLVM** + +SQL +**diagrams.azure.database.SQL** + +SsisLiftAndShiftIr +**diagrams.azure.database.SsisLiftAndShiftIr** + +SynapseAnalytics +**diagrams.azure.database.SynapseAnalytics** + +VirtualClusters +**diagrams.azure.database.VirtualClusters** + +VirtualDatacenter +**diagrams.azure.database.VirtualDatacenter** ## azure.devops -- **diagrams.azure.devops.ApplicationInsights** -- **diagrams.azure.devops.Artifacts** -- **diagrams.azure.devops.Boards** -- **diagrams.azure.devops.Devops** -- **diagrams.azure.devops.DevtestLabs** -- **diagrams.azure.devops.Pipelines** -- **diagrams.azure.devops.Repos** -- **diagrams.azure.devops.TestPlans** + +ApplicationInsights +**diagrams.azure.devops.ApplicationInsights** + +Artifacts +**diagrams.azure.devops.Artifacts** + +Boards +**diagrams.azure.devops.Boards** + +Devops +**diagrams.azure.devops.Devops** + +DevtestLabs +**diagrams.azure.devops.DevtestLabs** + +LabServices +**diagrams.azure.devops.LabServices** + +Pipelines +**diagrams.azure.devops.Pipelines** + +Repos +**diagrams.azure.devops.Repos** + +TestPlans +**diagrams.azure.devops.TestPlans** ## azure.general -- **diagrams.azure.general.Allresources** -- **diagrams.azure.general.Azurehome** -- **diagrams.azure.general.Developertools** -- **diagrams.azure.general.Helpsupport** -- **diagrams.azure.general.Information** -- **diagrams.azure.general.Managementgroups** -- **diagrams.azure.general.Marketplace** -- **diagrams.azure.general.Quickstartcenter** -- **diagrams.azure.general.Recent** -- **diagrams.azure.general.Reservations** -- **diagrams.azure.general.Resource** -- **diagrams.azure.general.Resourcegroups** -- **diagrams.azure.general.Servicehealth** -- **diagrams.azure.general.Shareddashboard** -- **diagrams.azure.general.Subscriptions** -- **diagrams.azure.general.Support** -- **diagrams.azure.general.Supportrequests** -- **diagrams.azure.general.Tag** -- **diagrams.azure.general.Tags** -- **diagrams.azure.general.Templates** -- **diagrams.azure.general.Twousericon** -- **diagrams.azure.general.Userhealthicon** -- **diagrams.azure.general.Usericon** -- **diagrams.azure.general.Userprivacy** -- **diagrams.azure.general.Userresource** -- **diagrams.azure.general.Whatsnew** + +Allresources +**diagrams.azure.general.Allresources** + +Azurehome +**diagrams.azure.general.Azurehome** + +Developertools +**diagrams.azure.general.Developertools** + +Helpsupport +**diagrams.azure.general.Helpsupport** + +Information +**diagrams.azure.general.Information** + +Managementgroups +**diagrams.azure.general.Managementgroups** + +Marketplace +**diagrams.azure.general.Marketplace** + +Quickstartcenter +**diagrams.azure.general.Quickstartcenter** + +Recent +**diagrams.azure.general.Recent** + +Reservations +**diagrams.azure.general.Reservations** + +Resource +**diagrams.azure.general.Resource** + +Resourcegroups +**diagrams.azure.general.Resourcegroups** + +Servicehealth +**diagrams.azure.general.Servicehealth** + +Shareddashboard +**diagrams.azure.general.Shareddashboard** + +Subscriptions +**diagrams.azure.general.Subscriptions** + +Support +**diagrams.azure.general.Support** + +Supportrequests +**diagrams.azure.general.Supportrequests** + +Tag +**diagrams.azure.general.Tag** + +Tags +**diagrams.azure.general.Tags** + +Templates +**diagrams.azure.general.Templates** + +Twousericon +**diagrams.azure.general.Twousericon** + +Userhealthicon +**diagrams.azure.general.Userhealthicon** + +Usericon +**diagrams.azure.general.Usericon** + +Userprivacy +**diagrams.azure.general.Userprivacy** + +Userresource +**diagrams.azure.general.Userresource** + +Whatsnew +**diagrams.azure.general.Whatsnew** ## azure.identity -- **diagrams.azure.identity.AccessReview** -- **diagrams.azure.identity.ActiveDirectoryConnectHealth** -- **diagrams.azure.identity.ActiveDirectory** -- **diagrams.azure.identity.ADB2C** -- **diagrams.azure.identity.ADDomainServices** -- **diagrams.azure.identity.ADIdentityProtection** -- **diagrams.azure.identity.ADPrivilegedIdentityManagement** -- **diagrams.azure.identity.AppRegistrations** -- **diagrams.azure.identity.ConditionalAccess** -- **diagrams.azure.identity.EnterpriseApplications** -- **diagrams.azure.identity.IdentityGovernance** -- **diagrams.azure.identity.InformationProtection** -- **diagrams.azure.identity.ManagedIdentities** + +AccessReview +**diagrams.azure.identity.AccessReview** + +ActiveDirectoryConnectHealth +**diagrams.azure.identity.ActiveDirectoryConnectHealth** + +ActiveDirectory +**diagrams.azure.identity.ActiveDirectory** + +ADB2C +**diagrams.azure.identity.ADB2C** + +ADDomainServices +**diagrams.azure.identity.ADDomainServices** + +ADIdentityProtection +**diagrams.azure.identity.ADIdentityProtection** + +ADPrivilegedIdentityManagement +**diagrams.azure.identity.ADPrivilegedIdentityManagement** + +AppRegistrations +**diagrams.azure.identity.AppRegistrations** + +ConditionalAccess +**diagrams.azure.identity.ConditionalAccess** + +EnterpriseApplications +**diagrams.azure.identity.EnterpriseApplications** + +Groups +**diagrams.azure.identity.Groups** + +IdentityGovernance +**diagrams.azure.identity.IdentityGovernance** + +InformationProtection +**diagrams.azure.identity.InformationProtection** + +ManagedIdentities +**diagrams.azure.identity.ManagedIdentities** + +Users +**diagrams.azure.identity.Users** ## azure.integration -- **diagrams.azure.integration.APIForFhir** -- **diagrams.azure.integration.APIManagement** -- **diagrams.azure.integration.AppConfiguration** -- **diagrams.azure.integration.DataCatalog** -- **diagrams.azure.integration.EventGridDomains** -- **diagrams.azure.integration.EventGridSubscriptions** -- **diagrams.azure.integration.EventGridTopics** -- **diagrams.azure.integration.IntegrationAccounts** -- **diagrams.azure.integration.IntegrationServiceEnvironments** -- **diagrams.azure.integration.LogicAppsCustomConnector** -- **diagrams.azure.integration.LogicApps** -- **diagrams.azure.integration.SendgridAccounts** -- **diagrams.azure.integration.ServiceBusRelays** -- **diagrams.azure.integration.ServiceBus** -- **diagrams.azure.integration.ServiceCatalogManagedApplicationDefinitions** -- **diagrams.azure.integration.SoftwareAsAService** -- **diagrams.azure.integration.StorsimpleDeviceManagers** + +APIForFhir +**diagrams.azure.integration.APIForFhir** + +APIManagement +**diagrams.azure.integration.APIManagement** + +AppConfiguration +**diagrams.azure.integration.AppConfiguration** + +DataCatalog +**diagrams.azure.integration.DataCatalog** + +EventGridDomains +**diagrams.azure.integration.EventGridDomains** + +EventGridSubscriptions +**diagrams.azure.integration.EventGridSubscriptions** + +EventGridTopics +**diagrams.azure.integration.EventGridTopics** + +IntegrationAccounts +**diagrams.azure.integration.IntegrationAccounts** + +IntegrationServiceEnvironments +**diagrams.azure.integration.IntegrationServiceEnvironments** + +LogicAppsCustomConnector +**diagrams.azure.integration.LogicAppsCustomConnector** + +LogicApps +**diagrams.azure.integration.LogicApps** + +PartnerTopic +**diagrams.azure.integration.PartnerTopic** + +SendgridAccounts +**diagrams.azure.integration.SendgridAccounts** + +ServiceBusRelays +**diagrams.azure.integration.ServiceBusRelays** + +ServiceBus +**diagrams.azure.integration.ServiceBus** + +ServiceCatalogManagedApplicationDefinitions +**diagrams.azure.integration.ServiceCatalogManagedApplicationDefinitions** + +SoftwareAsAService +**diagrams.azure.integration.SoftwareAsAService** + +StorsimpleDeviceManagers +**diagrams.azure.integration.StorsimpleDeviceManagers** + +SystemTopic +**diagrams.azure.integration.SystemTopic** ## azure.iot -- **diagrams.azure.iot.DeviceProvisioningServices** -- **diagrams.azure.iot.DigitalTwins** -- **diagrams.azure.iot.IotCentralApplications** -- **diagrams.azure.iot.IotHubSecurity** -- **diagrams.azure.iot.IotHub** -- **diagrams.azure.iot.Maps** -- **diagrams.azure.iot.Sphere** -- **diagrams.azure.iot.TimeSeriesInsightsEnvironments** -- **diagrams.azure.iot.TimeSeriesInsightsEventsSources** -- **diagrams.azure.iot.Windows10IotCoreServices** + +DeviceProvisioningServices +**diagrams.azure.iot.DeviceProvisioningServices** + +DigitalTwins +**diagrams.azure.iot.DigitalTwins** + +IotCentralApplications +**diagrams.azure.iot.IotCentralApplications** + +IotHubSecurity +**diagrams.azure.iot.IotHubSecurity** + +IotHub +**diagrams.azure.iot.IotHub** + +Maps +**diagrams.azure.iot.Maps** + +Sphere +**diagrams.azure.iot.Sphere** + +TimeSeriesInsightsEnvironments +**diagrams.azure.iot.TimeSeriesInsightsEnvironments** + +TimeSeriesInsightsEventsSources +**diagrams.azure.iot.TimeSeriesInsightsEventsSources** + +Windows10IotCoreServices +**diagrams.azure.iot.Windows10IotCoreServices** ## azure.migration -- **diagrams.azure.migration.DatabaseMigrationServices** -- **diagrams.azure.migration.MigrationProjects** -- **diagrams.azure.migration.RecoveryServicesVaults** + +DataBoxEdge +**diagrams.azure.migration.DataBoxEdge** + +DataBox +**diagrams.azure.migration.DataBox** + +DatabaseMigrationServices +**diagrams.azure.migration.DatabaseMigrationServices** + +MigrationProjects +**diagrams.azure.migration.MigrationProjects** + +RecoveryServicesVaults +**diagrams.azure.migration.RecoveryServicesVaults** ## azure.ml -- **diagrams.azure.ml.BatchAI** -- **diagrams.azure.ml.BotServices** -- **diagrams.azure.ml.CognitiveServices** -- **diagrams.azure.ml.GenomicsAccounts** -- **diagrams.azure.ml.MachineLearningServiceWorkspaces** -- **diagrams.azure.ml.MachineLearningStudioWebServicePlans** -- **diagrams.azure.ml.MachineLearningStudioWebServices** -- **diagrams.azure.ml.MachineLearningStudioWorkspaces** + +AzureOpenAI +**diagrams.azure.ml.AzureOpenAI** + +AzureSpeedToText +**diagrams.azure.ml.AzureSpeedToText** + +BatchAI +**diagrams.azure.ml.BatchAI** + +BotServices +**diagrams.azure.ml.BotServices** + +CognitiveServices +**diagrams.azure.ml.CognitiveServices** + +GenomicsAccounts +**diagrams.azure.ml.GenomicsAccounts** + +MachineLearningServiceWorkspaces +**diagrams.azure.ml.MachineLearningServiceWorkspaces** + +MachineLearningStudioWebServicePlans +**diagrams.azure.ml.MachineLearningStudioWebServicePlans** + +MachineLearningStudioWebServices +**diagrams.azure.ml.MachineLearningStudioWebServices** + +MachineLearningStudioWorkspaces +**diagrams.azure.ml.MachineLearningStudioWorkspaces** ## azure.mobile -- **diagrams.azure.mobile.AppServiceMobile** -- **diagrams.azure.mobile.MobileEngagement** -- **diagrams.azure.mobile.NotificationHubs** + +AppServiceMobile +**diagrams.azure.mobile.AppServiceMobile** + +MobileEngagement +**diagrams.azure.mobile.MobileEngagement** + +NotificationHubs +**diagrams.azure.mobile.NotificationHubs** + +## azure.monitor + + +ChangeAnalysis +**diagrams.azure.monitor.ChangeAnalysis** + +Logs +**diagrams.azure.monitor.Logs** + +Metrics +**diagrams.azure.monitor.Metrics** + +Monitor +**diagrams.azure.monitor.Monitor** ## azure.network -- **diagrams.azure.network.ApplicationGateway** -- **diagrams.azure.network.ApplicationSecurityGroups** -- **diagrams.azure.network.CDNProfiles** -- **diagrams.azure.network.Connections** -- **diagrams.azure.network.DDOSProtectionPlans** -- **diagrams.azure.network.DNSPrivateZones** -- **diagrams.azure.network.DNSZones** -- **diagrams.azure.network.ExpressrouteCircuits** -- **diagrams.azure.network.Firewall** -- **diagrams.azure.network.FrontDoors** -- **diagrams.azure.network.LoadBalancers** -- **diagrams.azure.network.LocalNetworkGateways** -- **diagrams.azure.network.NetworkInterfaces** -- **diagrams.azure.network.NetworkSecurityGroupsClassic** -- **diagrams.azure.network.NetworkWatcher** -- **diagrams.azure.network.OnPremisesDataGateways** -- **diagrams.azure.network.PublicIpAddresses** -- **diagrams.azure.network.ReservedIpAddressesClassic** -- **diagrams.azure.network.RouteFilters** -- **diagrams.azure.network.RouteTables** -- **diagrams.azure.network.ServiceEndpointPolicies** -- **diagrams.azure.network.Subnets** -- **diagrams.azure.network.TrafficManagerProfiles** -- **diagrams.azure.network.VirtualNetworkClassic** -- **diagrams.azure.network.VirtualNetworkGateways** -- **diagrams.azure.network.VirtualNetworks** -- **diagrams.azure.network.VirtualWans** + +ApplicationGateway +**diagrams.azure.network.ApplicationGateway** + +ApplicationSecurityGroups +**diagrams.azure.network.ApplicationSecurityGroups** + +CDNProfiles +**diagrams.azure.network.CDNProfiles** + +Connections +**diagrams.azure.network.Connections** + +DDOSProtectionPlans +**diagrams.azure.network.DDOSProtectionPlans** + +DNSPrivateZones +**diagrams.azure.network.DNSPrivateZones** + +DNSZones +**diagrams.azure.network.DNSZones** + +ExpressrouteCircuits +**diagrams.azure.network.ExpressrouteCircuits** + +Firewall +**diagrams.azure.network.Firewall** + +FrontDoors +**diagrams.azure.network.FrontDoors** + +LoadBalancers +**diagrams.azure.network.LoadBalancers** + +LocalNetworkGateways +**diagrams.azure.network.LocalNetworkGateways** + +NetworkInterfaces +**diagrams.azure.network.NetworkInterfaces** + +NetworkSecurityGroupsClassic +**diagrams.azure.network.NetworkSecurityGroupsClassic** + +NetworkWatcher +**diagrams.azure.network.NetworkWatcher** + +OnPremisesDataGateways +**diagrams.azure.network.OnPremisesDataGateways** + +PrivateEndpoint +**diagrams.azure.network.PrivateEndpoint** + +PublicIpAddresses +**diagrams.azure.network.PublicIpAddresses** + +ReservedIpAddressesClassic +**diagrams.azure.network.ReservedIpAddressesClassic** + +RouteFilters +**diagrams.azure.network.RouteFilters** + +RouteTables +**diagrams.azure.network.RouteTables** + +ServiceEndpointPolicies +**diagrams.azure.network.ServiceEndpointPolicies** + +Subnets +**diagrams.azure.network.Subnets** + +TrafficManagerProfiles +**diagrams.azure.network.TrafficManagerProfiles** + +VirtualNetworkClassic +**diagrams.azure.network.VirtualNetworkClassic** + +VirtualNetworkGateways +**diagrams.azure.network.VirtualNetworkGateways** + +VirtualNetworks +**diagrams.azure.network.VirtualNetworks** + +VirtualWans +**diagrams.azure.network.VirtualWans** ## azure.security -- **diagrams.azure.security.KeyVaults** -- **diagrams.azure.security.SecurityCenter** -- **diagrams.azure.security.Sentinel** + +ApplicationSecurityGroups +**diagrams.azure.security.ApplicationSecurityGroups** + +ConditionalAccess +**diagrams.azure.security.ConditionalAccess** + +Defender +**diagrams.azure.security.Defender** + +ExtendedSecurityUpdates +**diagrams.azure.security.ExtendedSecurityUpdates** + +KeyVaults +**diagrams.azure.security.KeyVaults** + +SecurityCenter +**diagrams.azure.security.SecurityCenter** + +Sentinel +**diagrams.azure.security.Sentinel** ## azure.storage -- **diagrams.azure.storage.ArchiveStorage** -- **diagrams.azure.storage.Azurefxtedgefiler** -- **diagrams.azure.storage.BlobStorage** -- **diagrams.azure.storage.DataBoxEdgeDataBoxGateway** -- **diagrams.azure.storage.DataBox** -- **diagrams.azure.storage.DataLakeStorage** -- **diagrams.azure.storage.GeneralStorage** -- **diagrams.azure.storage.NetappFiles** -- **diagrams.azure.storage.QueuesStorage** -- **diagrams.azure.storage.StorageAccountsClassic** -- **diagrams.azure.storage.StorageAccounts** -- **diagrams.azure.storage.StorageExplorer** -- **diagrams.azure.storage.StorageSyncServices** -- **diagrams.azure.storage.StorsimpleDataManagers** -- **diagrams.azure.storage.StorsimpleDeviceManagers** -- **diagrams.azure.storage.TableStorage** + +ArchiveStorage +**diagrams.azure.storage.ArchiveStorage** + +Azurefxtedgefiler +**diagrams.azure.storage.Azurefxtedgefiler** + +BlobStorage +**diagrams.azure.storage.BlobStorage** + +DataBoxEdgeDataBoxGateway +**diagrams.azure.storage.DataBoxEdgeDataBoxGateway** + +DataBox +**diagrams.azure.storage.DataBox** + +DataLakeStorage +**diagrams.azure.storage.DataLakeStorage** + +GeneralStorage +**diagrams.azure.storage.GeneralStorage** + +NetappFiles +**diagrams.azure.storage.NetappFiles** + +QueuesStorage +**diagrams.azure.storage.QueuesStorage** + +StorageAccountsClassic +**diagrams.azure.storage.StorageAccountsClassic** + +StorageAccounts +**diagrams.azure.storage.StorageAccounts** + +StorageExplorer +**diagrams.azure.storage.StorageExplorer** + +StorageSyncServices +**diagrams.azure.storage.StorageSyncServices** + +StorsimpleDataManagers +**diagrams.azure.storage.StorsimpleDataManagers** + +StorsimpleDeviceManagers +**diagrams.azure.storage.StorsimpleDeviceManagers** + +TableStorage +**diagrams.azure.storage.TableStorage** ## azure.web -- **diagrams.azure.web.APIConnections** -- **diagrams.azure.web.AppServiceCertificates** -- **diagrams.azure.web.AppServiceDomains** -- **diagrams.azure.web.AppServiceEnvironments** -- **diagrams.azure.web.AppServicePlans** -- **diagrams.azure.web.AppServices** -- **diagrams.azure.web.MediaServices** -- **diagrams.azure.web.NotificationHubNamespaces** -- **diagrams.azure.web.Search** -- **diagrams.azure.web.Signalr** + +APIConnections +**diagrams.azure.web.APIConnections** + +AppServiceCertificates +**diagrams.azure.web.AppServiceCertificates** + +AppServiceDomains +**diagrams.azure.web.AppServiceDomains** + +AppServiceEnvironments +**diagrams.azure.web.AppServiceEnvironments** + +AppServicePlans +**diagrams.azure.web.AppServicePlans** + +AppServices +**diagrams.azure.web.AppServices** + +MediaServices +**diagrams.azure.web.MediaServices** + +NotificationHubNamespaces +**diagrams.azure.web.NotificationHubNamespaces** + +Search +**diagrams.azure.web.Search** + +Signalr +**diagrams.azure.web.Signalr** diff --git a/docs/nodes/c4.md b/docs/nodes/c4.md new file mode 100644 index 00000000..9c21c2c8 --- /dev/null +++ b/docs/nodes/c4.md @@ -0,0 +1,77 @@ +--- +id: c4 +title: C4 +--- + +## C4 Diagrams + +[C4](https://c4model.com/) is a standardized model to visualize software architecture. +You can generate C4 diagrams by using the node and edge classes from the `diagrams.c4` package: + +```python +from diagrams import Diagram +from diagrams.c4 import Person, Container, Database, System, SystemBoundary, Relationship + +graph_attr = { + "splines": "spline", +} + +with Diagram("Container diagram for Internet Banking System", direction="TB", graph_attr=graph_attr): + customer = Person( + name="Personal Banking Customer", description="A customer of the bank, with personal bank accounts." + ) + + with SystemBoundary("Internet Banking System"): + webapp = Container( + name="Web Application", + technology="Java and Spring MVC", + description="Delivers the static content and the Internet banking single page application.", + ) + + spa = Container( + name="Single-Page Application", + technology="Javascript and Angular", + description="Provides all of the Internet banking functionality to customers via their web browser.", + ) + + mobileapp = Container( + name="Mobile App", + technology="Xamarin", + description="Provides a limited subset of the Internet banking functionality to customers via their mobile device.", + ) + + api = Container( + name="API Application", + technology="Java and Spring MVC", + description="Provides Internet banking functionality via a JSON/HTTPS API.", + ) + + database = Database( + name="Database", + technology="Oracle Database Schema", + description="Stores user registration information, hashed authentication credentials, access logs, etc.", + ) + + email = System(name="E-mail System", description="The internal Microsoft Exchange e-mail system.", external=True) + + mainframe = System( + name="Mainframe Banking System", + description="Stores all of the core banking information about customers, accounts, transactions, etc.", + external=True, + ) + + customer >> Relationship("Visits bigbank.com/ib using [HTTPS]") >> webapp + customer >> Relationship("Views account balances, and makes payments using") >> [spa, mobileapp] + webapp >> Relationship("Delivers to the customer's web browser") >> spa + spa >> Relationship("Make API calls to [JSON/HTTPS]") >> api + mobileapp >> Relationship("Make API calls to [JSON/HTTPS]") >> api + + api >> Relationship("reads from and writes to") >> database + api >> Relationship("Sends email using [SMTP]") >> email + api >> Relationship("Makes API calls to [XML/HTTPS]") >> mainframe + customer << Relationship("Sends e-mails to") << email +``` + +It will produce the following diagram: + +![c4](/img/c4.png) diff --git a/docs/nodes/digitalocean.md b/docs/nodes/digitalocean.md new file mode 100644 index 00000000..c29118c9 --- /dev/null +++ b/docs/nodes/digitalocean.md @@ -0,0 +1,93 @@ +--- +id: digitalocean +title: DigitalOcean +--- + +Node classes list of the digitalocean provider. + +## digitalocean.compute + + +Containers +**diagrams.digitalocean.compute.Containers** + +Docker +**diagrams.digitalocean.compute.Docker** + +DropletConnect +**diagrams.digitalocean.compute.DropletConnect** + +DropletSnapshot +**diagrams.digitalocean.compute.DropletSnapshot** + +Droplet +**diagrams.digitalocean.compute.Droplet** + +K8SCluster +**diagrams.digitalocean.compute.K8SCluster** + +K8SNodePool +**diagrams.digitalocean.compute.K8SNodePool** + +K8SNode +**diagrams.digitalocean.compute.K8SNode** + +## digitalocean.database + + +DbaasPrimaryStandbyMore +**diagrams.digitalocean.database.DbaasPrimaryStandbyMore** + +DbaasPrimary +**diagrams.digitalocean.database.DbaasPrimary** + +DbaasReadOnly +**diagrams.digitalocean.database.DbaasReadOnly** + +DbaasStandby +**diagrams.digitalocean.database.DbaasStandby** + +## digitalocean.network + + +Certificate +**diagrams.digitalocean.network.Certificate** + +DomainRegistration +**diagrams.digitalocean.network.DomainRegistration** + +Domain +**diagrams.digitalocean.network.Domain** + +Firewall +**diagrams.digitalocean.network.Firewall** + +FloatingIp +**diagrams.digitalocean.network.FloatingIp** + +InternetGateway +**diagrams.digitalocean.network.InternetGateway** + +LoadBalancer +**diagrams.digitalocean.network.LoadBalancer** + +ManagedVpn +**diagrams.digitalocean.network.ManagedVpn** + +Vpc +**diagrams.digitalocean.network.Vpc** + +## digitalocean.storage + + +Folder +**diagrams.digitalocean.storage.Folder** + +Space +**diagrams.digitalocean.storage.Space** + +VolumeSnapshot +**diagrams.digitalocean.storage.VolumeSnapshot** + +Volume +**diagrams.digitalocean.storage.Volume** diff --git a/docs/nodes/elastic.md b/docs/nodes/elastic.md index 28ed1e2e..8c1212d4 100644 --- a/docs/nodes/elastic.md +++ b/docs/nodes/elastic.md @@ -3,48 +3,160 @@ id: elastic title: Elastic --- -Node classes list of elastic provider. +Node classes list of the elastic provider. + +## elastic.agent + + +Agent +**diagrams.elastic.agent.Agent** + +Endpoint +**diagrams.elastic.agent.Endpoint** + +Fleet +**diagrams.elastic.agent.Fleet** + +Integrations +**diagrams.elastic.agent.Integrations** + +## elastic.beats + + +APM +**diagrams.elastic.beats.APM** + +Auditbeat +**diagrams.elastic.beats.Auditbeat** + +Filebeat +**diagrams.elastic.beats.Filebeat** + +Functionbeat +**diagrams.elastic.beats.Functionbeat** + +Heartbeat +**diagrams.elastic.beats.Heartbeat** + +Metricbeat +**diagrams.elastic.beats.Metricbeat** + +Packetbeat +**diagrams.elastic.beats.Packetbeat** + +Winlogbeat +**diagrams.elastic.beats.Winlogbeat** ## elastic.elasticsearch -- **diagrams.elastic.elasticsearch.Alerting** -- **diagrams.elastic.elasticsearch.Beats** -- **diagrams.elastic.elasticsearch.Elasticsearch** -- **diagrams.elastic.elasticsearch.Kibana** -- **diagrams.elastic.elasticsearch.Logstash**, **LogStash** (alias) -- **diagrams.elastic.elasticsearch.MachineLearning** -- **diagrams.elastic.elasticsearch.Maps** -- **diagrams.elastic.elasticsearch.Monitoring** -- **diagrams.elastic.elasticsearch.SecuritySettings** -- **diagrams.elastic.elasticsearch.Sql** + +Alerting +**diagrams.elastic.elasticsearch.Alerting** + +Beats +**diagrams.elastic.elasticsearch.Beats** + +Elasticsearch +**diagrams.elastic.elasticsearch.Elasticsearch**, **ElasticSearch** (alias) + +Kibana +**diagrams.elastic.elasticsearch.Kibana** + +LogstashPipeline +**diagrams.elastic.elasticsearch.LogstashPipeline** + +Logstash +**diagrams.elastic.elasticsearch.Logstash**, **LogStash** (alias) + +MachineLearning +**diagrams.elastic.elasticsearch.MachineLearning**, **ML** (alias) + +MapServices +**diagrams.elastic.elasticsearch.MapServices** + +Maps +**diagrams.elastic.elasticsearch.Maps** + +Monitoring +**diagrams.elastic.elasticsearch.Monitoring** + +SearchableSnapshots +**diagrams.elastic.elasticsearch.SearchableSnapshots** + +SecuritySettings +**diagrams.elastic.elasticsearch.SecuritySettings** + +SQL +**diagrams.elastic.elasticsearch.SQL** + +Stack +**diagrams.elastic.elasticsearch.Stack** ## elastic.enterprisesearch -- **diagrams.elastic.enterprisesearch.AppSearch** -- **diagrams.elastic.enterprisesearch.EnterpriseSearch** -- **diagrams.elastic.enterprisesearch.SiteSearch** -- **diagrams.elastic.enterprisesearch.WorkplaceSearch** + +AppSearch +**diagrams.elastic.enterprisesearch.AppSearch** + +Crawler +**diagrams.elastic.enterprisesearch.Crawler** + +EnterpriseSearch +**diagrams.elastic.enterprisesearch.EnterpriseSearch** + +SiteSearch +**diagrams.elastic.enterprisesearch.SiteSearch** + +WorkplaceSearch +**diagrams.elastic.enterprisesearch.WorkplaceSearch** ## elastic.observability -- **diagrams.elastic.observability.APM** -- **diagrams.elastic.observability.Logs** -- **diagrams.elastic.observability.Metrics** -- **diagrams.elastic.observability.Observability** -- **diagrams.elastic.observability.Uptime** + +APM +**diagrams.elastic.observability.APM** + +Logs +**diagrams.elastic.observability.Logs** + +Metrics +**diagrams.elastic.observability.Metrics** + +Observability +**diagrams.elastic.observability.Observability** + +Uptime +**diagrams.elastic.observability.Uptime** ## elastic.orchestration -- **diagrams.elastic.orchestration.ECE** -- **diagrams.elastic.orchestration.ECK** + +ECE +**diagrams.elastic.orchestration.ECE** + +ECK +**diagrams.elastic.orchestration.ECK** ## elastic.saas -- **diagrams.elastic.saas.Cloud** -- **diagrams.elastic.saas.Elastic** + +Cloud +**diagrams.elastic.saas.Cloud** + +Elastic +**diagrams.elastic.saas.Elastic** ## elastic.security -- **diagrams.elastic.security.Endpoint** -- **diagrams.elastic.security.Security** -- **diagrams.elastic.security.SIEM** + +Endpoint +**diagrams.elastic.security.Endpoint** + +Security +**diagrams.elastic.security.Security** + +SIEM +**diagrams.elastic.security.SIEM** + +Xdr +**diagrams.elastic.security.Xdr** diff --git a/docs/nodes/firebase.md b/docs/nodes/firebase.md index f49a5c9c..15c45822 100644 --- a/docs/nodes/firebase.md +++ b/docs/nodes/firebase.md @@ -3,41 +3,85 @@ id: firebase title: Firebase --- -Node classes list of firebase provider. +Node classes list of the firebase provider. ## firebase.base -- **diagrams.firebase.base.Firebase** + +Firebase +**diagrams.firebase.base.Firebase** ## firebase.develop -- **diagrams.firebase.develop.Authentication** -- **diagrams.firebase.develop.Firestore** -- **diagrams.firebase.develop.Functions** -- **diagrams.firebase.develop.Hosting** -- **diagrams.firebase.develop.MLKit** -- **diagrams.firebase.develop.RealtimeDatabase** -- **diagrams.firebase.develop.Storage** + +Authentication +**diagrams.firebase.develop.Authentication** + +Firestore +**diagrams.firebase.develop.Firestore** + +Functions +**diagrams.firebase.develop.Functions** + +Hosting +**diagrams.firebase.develop.Hosting** + +MLKit +**diagrams.firebase.develop.MLKit** + +RealtimeDatabase +**diagrams.firebase.develop.RealtimeDatabase** + +Storage +**diagrams.firebase.develop.Storage** ## firebase.extentions -- **diagrams.firebase.extentions.Extensions** + +Extensions +**diagrams.firebase.extentions.Extensions** ## firebase.grow -- **diagrams.firebase.grow.ABTesting** -- **diagrams.firebase.grow.AppIndexing** -- **diagrams.firebase.grow.DynamicLinks** -- **diagrams.firebase.grow.InAppMessaging** -- **diagrams.firebase.grow.Invites** -- **diagrams.firebase.grow.Messaging**, **FCM** (alias) -- **diagrams.firebase.grow.Predictions** -- **diagrams.firebase.grow.RemoteConfig** + +ABTesting +**diagrams.firebase.grow.ABTesting** + +AppIndexing +**diagrams.firebase.grow.AppIndexing** + +DynamicLinks +**diagrams.firebase.grow.DynamicLinks** + +InAppMessaging +**diagrams.firebase.grow.InAppMessaging** + +Invites +**diagrams.firebase.grow.Invites** + +Messaging +**diagrams.firebase.grow.Messaging**, **FCM** (alias) + +Predictions +**diagrams.firebase.grow.Predictions** + +RemoteConfig +**diagrams.firebase.grow.RemoteConfig** ## firebase.quality -- **diagrams.firebase.quality.AppDistribution** -- **diagrams.firebase.quality.CrashReporting** -- **diagrams.firebase.quality.Crashlytics** -- **diagrams.firebase.quality.PerformanceMonitoring** -- **diagrams.firebase.quality.TestLab** + +AppDistribution +**diagrams.firebase.quality.AppDistribution** + +CrashReporting +**diagrams.firebase.quality.CrashReporting** + +Crashlytics +**diagrams.firebase.quality.Crashlytics** + +PerformanceMonitoring +**diagrams.firebase.quality.PerformanceMonitoring** + +TestLab +**diagrams.firebase.quality.TestLab** diff --git a/docs/nodes/gcp.md b/docs/nodes/gcp.md index 3a1ee484..800489d5 100644 --- a/docs/nodes/gcp.md +++ b/docs/nodes/gcp.md @@ -3,130 +3,319 @@ id: gcp title: GCP --- -Node classes list of gcp provider. +Node classes list of the gcp provider. ## gcp.analytics -- **diagrams.gcp.analytics.Bigquery**, **BigQuery** (alias) -- **diagrams.gcp.analytics.Composer** -- **diagrams.gcp.analytics.DataCatalog** -- **diagrams.gcp.analytics.DataFusion** -- **diagrams.gcp.analytics.Dataflow** -- **diagrams.gcp.analytics.Datalab** -- **diagrams.gcp.analytics.Dataprep** -- **diagrams.gcp.analytics.Dataproc** -- **diagrams.gcp.analytics.Genomics** -- **diagrams.gcp.analytics.Pubsub**, **PubSub** (alias) + +Bigquery +**diagrams.gcp.analytics.Bigquery**, **BigQuery** (alias) + +Composer +**diagrams.gcp.analytics.Composer** + +DataCatalog +**diagrams.gcp.analytics.DataCatalog** + +DataFusion +**diagrams.gcp.analytics.DataFusion** + +Dataflow +**diagrams.gcp.analytics.Dataflow** + +Datalab +**diagrams.gcp.analytics.Datalab** + +Dataprep +**diagrams.gcp.analytics.Dataprep** + +Dataproc +**diagrams.gcp.analytics.Dataproc** + +Genomics +**diagrams.gcp.analytics.Genomics** + +Pubsub +**diagrams.gcp.analytics.Pubsub**, **PubSub** (alias) ## gcp.api -- **diagrams.gcp.api.Endpoints** + +APIGateway +**diagrams.gcp.api.APIGateway** + +Apigee +**diagrams.gcp.api.Apigee** + +Endpoints +**diagrams.gcp.api.Endpoints** ## gcp.compute -- **diagrams.gcp.compute.AppEngine**, **GAE** (alias) -- **diagrams.gcp.compute.ComputeEngine**, **GCE** (alias) -- **diagrams.gcp.compute.ContainerOptimizedOS** -- **diagrams.gcp.compute.Functions**, **GCF** (alias) -- **diagrams.gcp.compute.GKEOnPrem** -- **diagrams.gcp.compute.GPU** -- **diagrams.gcp.compute.KubernetesEngine**, **GKE** (alias) -- **diagrams.gcp.compute.Run** + +AppEngine +**diagrams.gcp.compute.AppEngine**, **GAE** (alias) + +ComputeEngine +**diagrams.gcp.compute.ComputeEngine**, **GCE** (alias) + +ContainerOptimizedOS +**diagrams.gcp.compute.ContainerOptimizedOS** + +Functions +**diagrams.gcp.compute.Functions**, **GCF** (alias) + +GKEOnPrem +**diagrams.gcp.compute.GKEOnPrem** + +GPU +**diagrams.gcp.compute.GPU** + +KubernetesEngine +**diagrams.gcp.compute.KubernetesEngine**, **GKE** (alias) + +Run +**diagrams.gcp.compute.Run** ## gcp.database -- **diagrams.gcp.database.Bigtable**, **BigTable** (alias) -- **diagrams.gcp.database.Datastore** -- **diagrams.gcp.database.Firestore** -- **diagrams.gcp.database.Memorystore** -- **diagrams.gcp.database.Spanner** -- **diagrams.gcp.database.SQL** + +Bigtable +**diagrams.gcp.database.Bigtable**, **BigTable** (alias) + +Datastore +**diagrams.gcp.database.Datastore** + +Firestore +**diagrams.gcp.database.Firestore** + +Memorystore +**diagrams.gcp.database.Memorystore** + +Spanner +**diagrams.gcp.database.Spanner** + +SQL +**diagrams.gcp.database.SQL** ## gcp.devtools -- **diagrams.gcp.devtools.Build** -- **diagrams.gcp.devtools.CodeForIntellij** -- **diagrams.gcp.devtools.Code** -- **diagrams.gcp.devtools.ContainerRegistry**, **GCR** (alias) -- **diagrams.gcp.devtools.GradleAppEnginePlugin** -- **diagrams.gcp.devtools.IdePlugins** -- **diagrams.gcp.devtools.MavenAppEnginePlugin** -- **diagrams.gcp.devtools.Scheduler** -- **diagrams.gcp.devtools.SDK** -- **diagrams.gcp.devtools.SourceRepositories** -- **diagrams.gcp.devtools.Tasks** -- **diagrams.gcp.devtools.TestLab** -- **diagrams.gcp.devtools.ToolsForEclipse** -- **diagrams.gcp.devtools.ToolsForPowershell** -- **diagrams.gcp.devtools.ToolsForVisualStudio** + +Build +**diagrams.gcp.devtools.Build** + +CodeForIntellij +**diagrams.gcp.devtools.CodeForIntellij** + +Code +**diagrams.gcp.devtools.Code** + +ContainerRegistry +**diagrams.gcp.devtools.ContainerRegistry**, **GCR** (alias) + +GradleAppEnginePlugin +**diagrams.gcp.devtools.GradleAppEnginePlugin** + +IdePlugins +**diagrams.gcp.devtools.IdePlugins** + +MavenAppEnginePlugin +**diagrams.gcp.devtools.MavenAppEnginePlugin** + +Scheduler +**diagrams.gcp.devtools.Scheduler** + +SDK +**diagrams.gcp.devtools.SDK** + +SourceRepositories +**diagrams.gcp.devtools.SourceRepositories** + +Tasks +**diagrams.gcp.devtools.Tasks** + +TestLab +**diagrams.gcp.devtools.TestLab** + +ToolsForEclipse +**diagrams.gcp.devtools.ToolsForEclipse** + +ToolsForPowershell +**diagrams.gcp.devtools.ToolsForPowershell** + +ToolsForVisualStudio +**diagrams.gcp.devtools.ToolsForVisualStudio** ## gcp.iot -- **diagrams.gcp.iot.IotCore** + +IotCore +**diagrams.gcp.iot.IotCore** ## gcp.migration -- **diagrams.gcp.migration.TransferAppliance** + +TransferAppliance +**diagrams.gcp.migration.TransferAppliance** ## gcp.ml -- **diagrams.gcp.ml.AdvancedSolutionsLab** -- **diagrams.gcp.ml.AIHub** -- **diagrams.gcp.ml.AIPlatformDataLabelingService** -- **diagrams.gcp.ml.AIPlatform** -- **diagrams.gcp.ml.AutomlNaturalLanguage** -- **diagrams.gcp.ml.AutomlTables** -- **diagrams.gcp.ml.AutomlTranslation** -- **diagrams.gcp.ml.AutomlVideoIntelligence** -- **diagrams.gcp.ml.AutomlVision** -- **diagrams.gcp.ml.Automl**, **AutoML** (alias) -- **diagrams.gcp.ml.DialogFlowEnterpriseEdition** -- **diagrams.gcp.ml.InferenceAPI** -- **diagrams.gcp.ml.JobsAPI** -- **diagrams.gcp.ml.NaturalLanguageAPI**, **NLAPI** (alias) -- **diagrams.gcp.ml.RecommendationsAI** -- **diagrams.gcp.ml.SpeechToText**, **STT** (alias) -- **diagrams.gcp.ml.TextToSpeech**, **TTS** (alias) -- **diagrams.gcp.ml.TPU** -- **diagrams.gcp.ml.TranslationAPI** -- **diagrams.gcp.ml.VideoIntelligenceAPI** -- **diagrams.gcp.ml.VisionAPI** + +AdvancedSolutionsLab +**diagrams.gcp.ml.AdvancedSolutionsLab** + +AIHub +**diagrams.gcp.ml.AIHub** + +AIPlatformDataLabelingService +**diagrams.gcp.ml.AIPlatformDataLabelingService** + +AIPlatform +**diagrams.gcp.ml.AIPlatform** + +AutomlNaturalLanguage +**diagrams.gcp.ml.AutomlNaturalLanguage** + +AutomlTables +**diagrams.gcp.ml.AutomlTables** + +AutomlTranslation +**diagrams.gcp.ml.AutomlTranslation** + +AutomlVideoIntelligence +**diagrams.gcp.ml.AutomlVideoIntelligence** + +AutomlVision +**diagrams.gcp.ml.AutomlVision** + +Automl +**diagrams.gcp.ml.Automl**, **AutoML** (alias) + +DialogFlowEnterpriseEdition +**diagrams.gcp.ml.DialogFlowEnterpriseEdition** + +InferenceAPI +**diagrams.gcp.ml.InferenceAPI** + +JobsAPI +**diagrams.gcp.ml.JobsAPI** + +NaturalLanguageAPI +**diagrams.gcp.ml.NaturalLanguageAPI**, **NLAPI** (alias) + +RecommendationsAI +**diagrams.gcp.ml.RecommendationsAI** + +SpeechToText +**diagrams.gcp.ml.SpeechToText**, **STT** (alias) + +TextToSpeech +**diagrams.gcp.ml.TextToSpeech**, **TTS** (alias) + +TPU +**diagrams.gcp.ml.TPU** + +TranslationAPI +**diagrams.gcp.ml.TranslationAPI** + +VideoIntelligenceAPI +**diagrams.gcp.ml.VideoIntelligenceAPI** + +VisionAPI +**diagrams.gcp.ml.VisionAPI** ## gcp.network -- **diagrams.gcp.network.Armor** -- **diagrams.gcp.network.CDN** -- **diagrams.gcp.network.DedicatedInterconnect** -- **diagrams.gcp.network.DNS** -- **diagrams.gcp.network.ExternalIpAddresses** -- **diagrams.gcp.network.FirewallRules** -- **diagrams.gcp.network.LoadBalancing** -- **diagrams.gcp.network.NAT** -- **diagrams.gcp.network.Network** -- **diagrams.gcp.network.PartnerInterconnect** -- **diagrams.gcp.network.PremiumNetworkTier** -- **diagrams.gcp.network.Router** -- **diagrams.gcp.network.Routes** -- **diagrams.gcp.network.StandardNetworkTier** -- **diagrams.gcp.network.TrafficDirector** -- **diagrams.gcp.network.VirtualPrivateCloud**, **VPC** (alias) -- **diagrams.gcp.network.VPN** + +Armor +**diagrams.gcp.network.Armor** + +CDN +**diagrams.gcp.network.CDN** + +DedicatedInterconnect +**diagrams.gcp.network.DedicatedInterconnect** + +DNS +**diagrams.gcp.network.DNS** + +ExternalIpAddresses +**diagrams.gcp.network.ExternalIpAddresses** + +FirewallRules +**diagrams.gcp.network.FirewallRules** + +LoadBalancing +**diagrams.gcp.network.LoadBalancing** + +NAT +**diagrams.gcp.network.NAT** + +Network +**diagrams.gcp.network.Network** + +PartnerInterconnect +**diagrams.gcp.network.PartnerInterconnect** + +PremiumNetworkTier +**diagrams.gcp.network.PremiumNetworkTier** + +Router +**diagrams.gcp.network.Router** + +Routes +**diagrams.gcp.network.Routes** + +StandardNetworkTier +**diagrams.gcp.network.StandardNetworkTier** + +TrafficDirector +**diagrams.gcp.network.TrafficDirector** + +VirtualPrivateCloud +**diagrams.gcp.network.VirtualPrivateCloud**, **VPC** (alias) + +VPN +**diagrams.gcp.network.VPN** ## gcp.operations -- **diagrams.gcp.operations.Monitoring** + +Logging +**diagrams.gcp.operations.Logging** + +Monitoring +**diagrams.gcp.operations.Monitoring** ## gcp.security -- **diagrams.gcp.security.Iam** -- **diagrams.gcp.security.IAP** -- **diagrams.gcp.security.KeyManagementService**, **KMS** (alias) -- **diagrams.gcp.security.ResourceManager** -- **diagrams.gcp.security.SecurityCommandCenter**, **SCC** (alias) -- **diagrams.gcp.security.SecurityScanner** + +Iam +**diagrams.gcp.security.Iam** + +IAP +**diagrams.gcp.security.IAP** + +KeyManagementService +**diagrams.gcp.security.KeyManagementService**, **KMS** (alias) + +ResourceManager +**diagrams.gcp.security.ResourceManager** + +SecurityCommandCenter +**diagrams.gcp.security.SecurityCommandCenter**, **SCC** (alias) + +SecurityScanner +**diagrams.gcp.security.SecurityScanner** ## gcp.storage -- **diagrams.gcp.storage.Filestore** -- **diagrams.gcp.storage.PersistentDisk** -- **diagrams.gcp.storage.Storage**, **GCS** (alias) + +Filestore +**diagrams.gcp.storage.Filestore** + +PersistentDisk +**diagrams.gcp.storage.PersistentDisk** + +Storage +**diagrams.gcp.storage.Storage**, **GCS** (alias) diff --git a/docs/nodes/generic.md b/docs/nodes/generic.md index 8e4249a1..054164bf 100644 --- a/docs/nodes/generic.md +++ b/docs/nodes/generic.md @@ -3,53 +3,109 @@ id: generic title: Generic --- -Node classes list of generic provider. +Node classes list of the generic provider. ## generic.blank -- **diagrams.generic.blank.Blank** + +Blank +**diagrams.generic.blank.Blank** ## generic.compute -- **diagrams.generic.compute.Rack** + +Rack +**diagrams.generic.compute.Rack** ## generic.database -- **diagrams.generic.database.SQL** + +SQL +**diagrams.generic.database.SQL** ## generic.device -- **diagrams.generic.device.Mobile** -- **diagrams.generic.device.Tablet** + +Mobile +**diagrams.generic.device.Mobile** + +Tablet +**diagrams.generic.device.Tablet** ## generic.network -- **diagrams.generic.network.Firewall** -- **diagrams.generic.network.Router** -- **diagrams.generic.network.Subnet** -- **diagrams.generic.network.Switch** -- **diagrams.generic.network.VPN** + +Firewall +**diagrams.generic.network.Firewall** + +Router +**diagrams.generic.network.Router** + +Subnet +**diagrams.generic.network.Subnet** + +Switch +**diagrams.generic.network.Switch** + +VPN +**diagrams.generic.network.VPN** ## generic.os -- **diagrams.generic.os.Android** -- **diagrams.generic.os.Centos** -- **diagrams.generic.os.IOS** -- **diagrams.generic.os.LinuxGeneral** -- **diagrams.generic.os.Suse** -- **diagrams.generic.os.Ubuntu** -- **diagrams.generic.os.Windows** + +Android +**diagrams.generic.os.Android** + +Centos +**diagrams.generic.os.Centos** + +Debian +**diagrams.generic.os.Debian** + +IOS +**diagrams.generic.os.IOS** + +LinuxGeneral +**diagrams.generic.os.LinuxGeneral** + +Raspbian +**diagrams.generic.os.Raspbian** + +RedHat +**diagrams.generic.os.RedHat** + +Suse +**diagrams.generic.os.Suse** + +Ubuntu +**diagrams.generic.os.Ubuntu** + +Windows +**diagrams.generic.os.Windows** ## generic.place -- **diagrams.generic.place.Datacenter** + +Datacenter +**diagrams.generic.place.Datacenter** ## generic.storage -- **diagrams.generic.storage.Storage** + +Storage +**diagrams.generic.storage.Storage** ## generic.virtualization -- **diagrams.generic.virtualization.Virtualbox** -- **diagrams.generic.virtualization.Vmware** -- **diagrams.generic.virtualization.XEN** + +Qemu +**diagrams.generic.virtualization.Qemu** + +Virtualbox +**diagrams.generic.virtualization.Virtualbox** + +Vmware +**diagrams.generic.virtualization.Vmware** + +XEN +**diagrams.generic.virtualization.XEN** diff --git a/docs/nodes/ibm.md b/docs/nodes/ibm.md new file mode 100644 index 00000000..1bb30682 --- /dev/null +++ b/docs/nodes/ibm.md @@ -0,0 +1,588 @@ +--- +id: ibm +title: IBM +--- + +Node classes list of the ibm provider. + +## ibm.analytics + + +Analytics +**diagrams.ibm.analytics.Analytics** + +DataIntegration +**diagrams.ibm.analytics.DataIntegration** + +DataRepositories +**diagrams.ibm.analytics.DataRepositories** + +DeviceAnalytics +**diagrams.ibm.analytics.DeviceAnalytics** + +StreamingComputing +**diagrams.ibm.analytics.StreamingComputing** + +## ibm.applications + + +ActionableInsight +**diagrams.ibm.applications.ActionableInsight** + +Annotate +**diagrams.ibm.applications.Annotate** + +ApiDeveloperPortal +**diagrams.ibm.applications.ApiDeveloperPortal** + +ApiPolyglotRuntimes +**diagrams.ibm.applications.ApiPolyglotRuntimes** + +AppServer +**diagrams.ibm.applications.AppServer** + +ApplicationLogic +**diagrams.ibm.applications.ApplicationLogic** + +EnterpriseApplications +**diagrams.ibm.applications.EnterpriseApplications** + +Index +**diagrams.ibm.applications.Index** + +IotApplication +**diagrams.ibm.applications.IotApplication** + +Microservice +**diagrams.ibm.applications.Microservice** + +MobileApp +**diagrams.ibm.applications.MobileApp** + +Ontology +**diagrams.ibm.applications.Ontology** + +OpenSourceTools +**diagrams.ibm.applications.OpenSourceTools** + +RuntimeServices +**diagrams.ibm.applications.RuntimeServices** + +SaasApplications +**diagrams.ibm.applications.SaasApplications** + +ServiceBroker +**diagrams.ibm.applications.ServiceBroker** + +SpeechToText +**diagrams.ibm.applications.SpeechToText** + +VisualRecognition +**diagrams.ibm.applications.VisualRecognition** + +Visualization +**diagrams.ibm.applications.Visualization** + +## ibm.blockchain + + +BlockchainDeveloper +**diagrams.ibm.blockchain.BlockchainDeveloper** + +Blockchain +**diagrams.ibm.blockchain.Blockchain** + +CertificateAuthority +**diagrams.ibm.blockchain.CertificateAuthority** + +ClientApplication +**diagrams.ibm.blockchain.ClientApplication** + +Communication +**diagrams.ibm.blockchain.Communication** + +Consensus +**diagrams.ibm.blockchain.Consensus** + +EventListener +**diagrams.ibm.blockchain.EventListener** + +Event +**diagrams.ibm.blockchain.Event** + +ExistingEnterpriseSystems +**diagrams.ibm.blockchain.ExistingEnterpriseSystems** + +HyperledgerFabric +**diagrams.ibm.blockchain.HyperledgerFabric** + +KeyManagement +**diagrams.ibm.blockchain.KeyManagement** + +Ledger +**diagrams.ibm.blockchain.Ledger** + +MembershipServicesProviderApi +**diagrams.ibm.blockchain.MembershipServicesProviderApi** + +Membership +**diagrams.ibm.blockchain.Membership** + +MessageBus +**diagrams.ibm.blockchain.MessageBus** + +Node +**diagrams.ibm.blockchain.Node** + +Services +**diagrams.ibm.blockchain.Services** + +SmartContract +**diagrams.ibm.blockchain.SmartContract** + +TransactionManager +**diagrams.ibm.blockchain.TransactionManager** + +Wallet +**diagrams.ibm.blockchain.Wallet** + +## ibm.compute + + +BareMetalServer +**diagrams.ibm.compute.BareMetalServer** + +ImageService +**diagrams.ibm.compute.ImageService** + +Instance +**diagrams.ibm.compute.Instance** + +Key +**diagrams.ibm.compute.Key** + +PowerInstance +**diagrams.ibm.compute.PowerInstance** + +## ibm.data + + +Caches +**diagrams.ibm.data.Caches** + +Cloud +**diagrams.ibm.data.Cloud** + +ConversationTrainedDeployed +**diagrams.ibm.data.ConversationTrainedDeployed** + +DataServices +**diagrams.ibm.data.DataServices** + +DataSources +**diagrams.ibm.data.DataSources** + +DeviceIdentityService +**diagrams.ibm.data.DeviceIdentityService** + +DeviceRegistry +**diagrams.ibm.data.DeviceRegistry** + +EnterpriseData +**diagrams.ibm.data.EnterpriseData** + +EnterpriseUserDirectory +**diagrams.ibm.data.EnterpriseUserDirectory** + +FileRepository +**diagrams.ibm.data.FileRepository** + +GroundTruth +**diagrams.ibm.data.GroundTruth** + +Model +**diagrams.ibm.data.Model** + +TmsDataInterface +**diagrams.ibm.data.TmsDataInterface** + +## ibm.devops + + +ArtifactManagement +**diagrams.ibm.devops.ArtifactManagement** + +BuildTest +**diagrams.ibm.devops.BuildTest** + +CodeEditor +**diagrams.ibm.devops.CodeEditor** + +CollaborativeDevelopment +**diagrams.ibm.devops.CollaborativeDevelopment** + +ConfigurationManagement +**diagrams.ibm.devops.ConfigurationManagement** + +ContinuousDeploy +**diagrams.ibm.devops.ContinuousDeploy** + +ContinuousTesting +**diagrams.ibm.devops.ContinuousTesting** + +Devops +**diagrams.ibm.devops.Devops** + +Provision +**diagrams.ibm.devops.Provision** + +ReleaseManagement +**diagrams.ibm.devops.ReleaseManagement** + +## ibm.general + + +CloudMessaging +**diagrams.ibm.general.CloudMessaging** + +CloudServices +**diagrams.ibm.general.CloudServices** + +Cloudant +**diagrams.ibm.general.Cloudant** + +CognitiveServices +**diagrams.ibm.general.CognitiveServices** + +DataSecurity +**diagrams.ibm.general.DataSecurity** + +Enterprise +**diagrams.ibm.general.Enterprise** + +GovernanceRiskCompliance +**diagrams.ibm.general.GovernanceRiskCompliance** + +IBMContainers +**diagrams.ibm.general.IBMContainers** + +IBMPublicCloud +**diagrams.ibm.general.IBMPublicCloud** + +IdentityAccessManagement +**diagrams.ibm.general.IdentityAccessManagement** + +IdentityProvider +**diagrams.ibm.general.IdentityProvider** + +InfrastructureSecurity +**diagrams.ibm.general.InfrastructureSecurity** + +Internet +**diagrams.ibm.general.Internet** + +IotCloud +**diagrams.ibm.general.IotCloud** + +MicroservicesApplication +**diagrams.ibm.general.MicroservicesApplication** + +MicroservicesMesh +**diagrams.ibm.general.MicroservicesMesh** + +MonitoringLogging +**diagrams.ibm.general.MonitoringLogging** + +Monitoring +**diagrams.ibm.general.Monitoring** + +ObjectStorage +**diagrams.ibm.general.ObjectStorage** + +OfflineCapabilities +**diagrams.ibm.general.OfflineCapabilities** + +Openwhisk +**diagrams.ibm.general.Openwhisk** + +PeerCloud +**diagrams.ibm.general.PeerCloud** + +RetrieveRank +**diagrams.ibm.general.RetrieveRank** + +Scalable +**diagrams.ibm.general.Scalable** + +ServiceDiscoveryConfiguration +**diagrams.ibm.general.ServiceDiscoveryConfiguration** + +TextToSpeech +**diagrams.ibm.general.TextToSpeech** + +TransformationConnectivity +**diagrams.ibm.general.TransformationConnectivity** + +## ibm.infrastructure + + +Channels +**diagrams.ibm.infrastructure.Channels** + +CloudMessaging +**diagrams.ibm.infrastructure.CloudMessaging** + +Dashboard +**diagrams.ibm.infrastructure.Dashboard** + +Diagnostics +**diagrams.ibm.infrastructure.Diagnostics** + +EdgeServices +**diagrams.ibm.infrastructure.EdgeServices** + +EnterpriseMessaging +**diagrams.ibm.infrastructure.EnterpriseMessaging** + +EventFeed +**diagrams.ibm.infrastructure.EventFeed** + +InfrastructureServices +**diagrams.ibm.infrastructure.InfrastructureServices** + +InterserviceCommunication +**diagrams.ibm.infrastructure.InterserviceCommunication** + +LoadBalancingRouting +**diagrams.ibm.infrastructure.LoadBalancingRouting** + +MicroservicesMesh +**diagrams.ibm.infrastructure.MicroservicesMesh** + +MobileBackend +**diagrams.ibm.infrastructure.MobileBackend** + +MobileProviderNetwork +**diagrams.ibm.infrastructure.MobileProviderNetwork** + +MonitoringLogging +**diagrams.ibm.infrastructure.MonitoringLogging** + +Monitoring +**diagrams.ibm.infrastructure.Monitoring** + +PeerServices +**diagrams.ibm.infrastructure.PeerServices** + +ServiceDiscoveryConfiguration +**diagrams.ibm.infrastructure.ServiceDiscoveryConfiguration** + +TransformationConnectivity +**diagrams.ibm.infrastructure.TransformationConnectivity** + +## ibm.management + + +AlertNotification +**diagrams.ibm.management.AlertNotification** + +ApiManagement +**diagrams.ibm.management.ApiManagement** + +CloudManagement +**diagrams.ibm.management.CloudManagement** + +ClusterManagement +**diagrams.ibm.management.ClusterManagement** + +ContentManagement +**diagrams.ibm.management.ContentManagement** + +DataServices +**diagrams.ibm.management.DataServices** + +DeviceManagement +**diagrams.ibm.management.DeviceManagement** + +InformationGovernance +**diagrams.ibm.management.InformationGovernance** + +ItServiceManagement +**diagrams.ibm.management.ItServiceManagement** + +Management +**diagrams.ibm.management.Management** + +MonitoringMetrics +**diagrams.ibm.management.MonitoringMetrics** + +ProcessManagement +**diagrams.ibm.management.ProcessManagement** + +ProviderCloudPortalService +**diagrams.ibm.management.ProviderCloudPortalService** + +PushNotifications +**diagrams.ibm.management.PushNotifications** + +ServiceManagementTools +**diagrams.ibm.management.ServiceManagementTools** + +## ibm.network + + +Bridge +**diagrams.ibm.network.Bridge** + +DirectLink +**diagrams.ibm.network.DirectLink** + +Enterprise +**diagrams.ibm.network.Enterprise** + +Firewall +**diagrams.ibm.network.Firewall** + +FloatingIp +**diagrams.ibm.network.FloatingIp** + +Gateway +**diagrams.ibm.network.Gateway** + +InternetServices +**diagrams.ibm.network.InternetServices** + +LoadBalancerListener +**diagrams.ibm.network.LoadBalancerListener** + +LoadBalancerPool +**diagrams.ibm.network.LoadBalancerPool** + +LoadBalancer +**diagrams.ibm.network.LoadBalancer** + +LoadBalancingRouting +**diagrams.ibm.network.LoadBalancingRouting** + +PublicGateway +**diagrams.ibm.network.PublicGateway** + +Region +**diagrams.ibm.network.Region** + +Router +**diagrams.ibm.network.Router** + +Rules +**diagrams.ibm.network.Rules** + +Subnet +**diagrams.ibm.network.Subnet** + +TransitGateway +**diagrams.ibm.network.TransitGateway** + +Vpc +**diagrams.ibm.network.Vpc** + +VpnConnection +**diagrams.ibm.network.VpnConnection** + +VpnGateway +**diagrams.ibm.network.VpnGateway** + +VpnPolicy +**diagrams.ibm.network.VpnPolicy** + +## ibm.security + + +ApiSecurity +**diagrams.ibm.security.ApiSecurity** + +BlockchainSecurityService +**diagrams.ibm.security.BlockchainSecurityService** + +DataSecurity +**diagrams.ibm.security.DataSecurity** + +Firewall +**diagrams.ibm.security.Firewall** + +Gateway +**diagrams.ibm.security.Gateway** + +GovernanceRiskCompliance +**diagrams.ibm.security.GovernanceRiskCompliance** + +IdentityAccessManagement +**diagrams.ibm.security.IdentityAccessManagement** + +IdentityProvider +**diagrams.ibm.security.IdentityProvider** + +InfrastructureSecurity +**diagrams.ibm.security.InfrastructureSecurity** + +PhysicalSecurity +**diagrams.ibm.security.PhysicalSecurity** + +SecurityMonitoringIntelligence +**diagrams.ibm.security.SecurityMonitoringIntelligence** + +SecurityServices +**diagrams.ibm.security.SecurityServices** + +TrustendComputing +**diagrams.ibm.security.TrustendComputing** + +Vpn +**diagrams.ibm.security.Vpn** + +## ibm.social + + +Communities +**diagrams.ibm.social.Communities** + +FileSync +**diagrams.ibm.social.FileSync** + +LiveCollaboration +**diagrams.ibm.social.LiveCollaboration** + +Messaging +**diagrams.ibm.social.Messaging** + +Networking +**diagrams.ibm.social.Networking** + +## ibm.storage + + +BlockStorage +**diagrams.ibm.storage.BlockStorage** + +ObjectStorage +**diagrams.ibm.storage.ObjectStorage** + +## ibm.user + + +Browser +**diagrams.ibm.user.Browser** + +Device +**diagrams.ibm.user.Device** + +IntegratedDigitalExperiences +**diagrams.ibm.user.IntegratedDigitalExperiences** + +PhysicalEntity +**diagrams.ibm.user.PhysicalEntity** + +Sensor +**diagrams.ibm.user.Sensor** + +User +**diagrams.ibm.user.User** diff --git a/docs/nodes/k8s.md b/docs/nodes/k8s.md index 6fe66cbd..3459d9e0 100644 --- a/docs/nodes/k8s.md +++ b/docs/nodes/k8s.md @@ -3,85 +3,175 @@ id: k8s title: K8S --- -Node classes list of k8s provider. +Node classes list of the k8s provider. ## k8s.chaos -- **diagrams.k8s.chaos.ChaosMesh** -- **diagrams.k8s.chaos.LitmusChaos** + +ChaosMesh +**diagrams.k8s.chaos.ChaosMesh** + +LitmusChaos +**diagrams.k8s.chaos.LitmusChaos** ## k8s.clusterconfig -- **diagrams.k8s.clusterconfig.HPA**, **HorizontalPodAutoscaler** (alias) -- **diagrams.k8s.clusterconfig.Limits**, **LimitRange** (alias) -- **diagrams.k8s.clusterconfig.Quota** + +HPA +**diagrams.k8s.clusterconfig.HPA**, **HorizontalPodAutoscaler** (alias) + +Limits +**diagrams.k8s.clusterconfig.Limits**, **LimitRange** (alias) + +Quota +**diagrams.k8s.clusterconfig.Quota** ## k8s.compute -- **diagrams.k8s.compute.Cronjob** -- **diagrams.k8s.compute.Deploy**, **Deployment** (alias) -- **diagrams.k8s.compute.DS**, **DaemonSet** (alias) -- **diagrams.k8s.compute.Job** -- **diagrams.k8s.compute.Pod** -- **diagrams.k8s.compute.RS**, **ReplicaSet** (alias) -- **diagrams.k8s.compute.STS**, **StatefulSet** (alias) + +Cronjob +**diagrams.k8s.compute.Cronjob** + +Deploy +**diagrams.k8s.compute.Deploy**, **Deployment** (alias) + +DS +**diagrams.k8s.compute.DS**, **DaemonSet** (alias) + +Job +**diagrams.k8s.compute.Job** + +Pod +**diagrams.k8s.compute.Pod** + +RS +**diagrams.k8s.compute.RS**, **ReplicaSet** (alias) + +STS +**diagrams.k8s.compute.STS**, **StatefulSet** (alias) ## k8s.controlplane -- **diagrams.k8s.controlplane.API**, **APIServer** (alias) -- **diagrams.k8s.controlplane.CCM** -- **diagrams.k8s.controlplane.CM**, **ControllerManager** (alias) -- **diagrams.k8s.controlplane.KProxy**, **KubeProxy** (alias) -- **diagrams.k8s.controlplane.Kubelet** -- **diagrams.k8s.controlplane.Sched**, **Scheduler** (alias) + +API +**diagrams.k8s.controlplane.API**, **APIServer** (alias) + +CCM +**diagrams.k8s.controlplane.CCM** + +CM +**diagrams.k8s.controlplane.CM**, **ControllerManager** (alias) + +KProxy +**diagrams.k8s.controlplane.KProxy**, **KubeProxy** (alias) + +Kubelet +**diagrams.k8s.controlplane.Kubelet** + +Sched +**diagrams.k8s.controlplane.Sched**, **Scheduler** (alias) ## k8s.ecosystem -- **diagrams.k8s.ecosystem.ExternalDns** -- **diagrams.k8s.ecosystem.Helm** -- **diagrams.k8s.ecosystem.Krew** -- **diagrams.k8s.ecosystem.Kustomize** + +ExternalDns +**diagrams.k8s.ecosystem.ExternalDns** + +Helm +**diagrams.k8s.ecosystem.Helm** + +Krew +**diagrams.k8s.ecosystem.Krew** + +Kustomize +**diagrams.k8s.ecosystem.Kustomize** ## k8s.group -- **diagrams.k8s.group.NS**, **Namespace** (alias) + +NS +**diagrams.k8s.group.NS**, **Namespace** (alias) ## k8s.infra -- **diagrams.k8s.infra.ETCD** -- **diagrams.k8s.infra.Master** -- **diagrams.k8s.infra.Node** + +ETCD +**diagrams.k8s.infra.ETCD** + +Master +**diagrams.k8s.infra.Master** + +Node +**diagrams.k8s.infra.Node** ## k8s.network -- **diagrams.k8s.network.Ep**, **Endpoint** (alias) -- **diagrams.k8s.network.Ing**, **Ingress** (alias) -- **diagrams.k8s.network.Netpol**, **NetworkPolicy** (alias) -- **diagrams.k8s.network.SVC**, **Service** (alias) + +Ep +**diagrams.k8s.network.Ep**, **Endpoint** (alias) + +Ing +**diagrams.k8s.network.Ing**, **Ingress** (alias) + +Netpol +**diagrams.k8s.network.Netpol**, **NetworkPolicy** (alias) + +SVC +**diagrams.k8s.network.SVC**, **Service** (alias) ## k8s.others -- **diagrams.k8s.others.CRD** -- **diagrams.k8s.others.PSP** + +CRD +**diagrams.k8s.others.CRD** + +PSP +**diagrams.k8s.others.PSP** ## k8s.podconfig -- **diagrams.k8s.podconfig.CM**, **ConfigMap** (alias) -- **diagrams.k8s.podconfig.Secret** + +CM +**diagrams.k8s.podconfig.CM**, **ConfigMap** (alias) + +Secret +**diagrams.k8s.podconfig.Secret** ## k8s.rbac -- **diagrams.k8s.rbac.CRole**, **ClusterRole** (alias) -- **diagrams.k8s.rbac.CRB**, **ClusterRoleBinding** (alias) -- **diagrams.k8s.rbac.Group** -- **diagrams.k8s.rbac.RB**, **RoleBinding** (alias) -- **diagrams.k8s.rbac.Role** -- **diagrams.k8s.rbac.SA**, **ServiceAccount** (alias) -- **diagrams.k8s.rbac.User** + +CRole +**diagrams.k8s.rbac.CRole**, **ClusterRole** (alias) + +CRB +**diagrams.k8s.rbac.CRB**, **ClusterRoleBinding** (alias) + +Group +**diagrams.k8s.rbac.Group** + +RB +**diagrams.k8s.rbac.RB**, **RoleBinding** (alias) + +Role +**diagrams.k8s.rbac.Role** + +SA +**diagrams.k8s.rbac.SA**, **ServiceAccount** (alias) + +User +**diagrams.k8s.rbac.User** ## k8s.storage -- **diagrams.k8s.storage.PV**, **PersistentVolume** (alias) -- **diagrams.k8s.storage.PVC**, **PersistentVolumeClaim** (alias) -- **diagrams.k8s.storage.SC**, **StorageClass** (alias) -- **diagrams.k8s.storage.Vol**, **Volume** (alias) + +PV +**diagrams.k8s.storage.PV**, **PersistentVolume** (alias) + +PVC +**diagrams.k8s.storage.PVC**, **PersistentVolumeClaim** (alias) + +SC +**diagrams.k8s.storage.SC**, **StorageClass** (alias) + +Vol +**diagrams.k8s.storage.Vol**, **Volume** (alias) diff --git a/docs/nodes/oci.md b/docs/nodes/oci.md index fcedc97e..2d0c6fa8 100644 --- a/docs/nodes/oci.md +++ b/docs/nodes/oci.md @@ -3,171 +3,451 @@ id: oci title: OCI --- -Node classes list of oci provider. +Node classes list of the oci provider. ## oci.compute -- **diagrams.oci.compute.AutoscaleWhite** -- **diagrams.oci.compute.Autoscale** -- **diagrams.oci.compute.BMWhite**, **BareMetalWhite** (alias) -- **diagrams.oci.compute.BM**, **BareMetal** (alias) -- **diagrams.oci.compute.ContainerWhite** -- **diagrams.oci.compute.Container** -- **diagrams.oci.compute.FunctionsWhite** -- **diagrams.oci.compute.Functions** -- **diagrams.oci.compute.InstancePoolsWhite** -- **diagrams.oci.compute.InstancePools** -- **diagrams.oci.compute.OCIRWhite**, **OCIRegistryWhite** (alias) -- **diagrams.oci.compute.OCIR**, **OCIRegistry** (alias) -- **diagrams.oci.compute.OKEWhite**, **ContainerEngineWhite** (alias) -- **diagrams.oci.compute.OKE**, **ContainerEngine** (alias) -- **diagrams.oci.compute.VMWhite**, **VirtualMachineWhite** (alias) -- **diagrams.oci.compute.VM**, **VirtualMachine** (alias) + +AutoscaleWhite +**diagrams.oci.compute.AutoscaleWhite** + +Autoscale +**diagrams.oci.compute.Autoscale** + +BMWhite +**diagrams.oci.compute.BMWhite**, **BareMetalWhite** (alias) + +BM +**diagrams.oci.compute.BM**, **BareMetal** (alias) + +ContainerWhite +**diagrams.oci.compute.ContainerWhite** + +Container +**diagrams.oci.compute.Container** + +FunctionsWhite +**diagrams.oci.compute.FunctionsWhite** + +Functions +**diagrams.oci.compute.Functions** + +InstancePoolsWhite +**diagrams.oci.compute.InstancePoolsWhite** + +InstancePools +**diagrams.oci.compute.InstancePools** + +OCIRWhite +**diagrams.oci.compute.OCIRWhite**, **OCIRegistryWhite** (alias) + +OCIR +**diagrams.oci.compute.OCIR**, **OCIRegistry** (alias) + +OKEWhite +**diagrams.oci.compute.OKEWhite**, **ContainerEngineWhite** (alias) + +OKE +**diagrams.oci.compute.OKE**, **ContainerEngine** (alias) + +VMWhite +**diagrams.oci.compute.VMWhite**, **VirtualMachineWhite** (alias) + +VM +**diagrams.oci.compute.VM**, **VirtualMachine** (alias) ## oci.connectivity -- **diagrams.oci.connectivity.BackboneWhite** -- **diagrams.oci.connectivity.Backbone** -- **diagrams.oci.connectivity.CDNWhite** -- **diagrams.oci.connectivity.CDN** -- **diagrams.oci.connectivity.CustomerDatacenter** -- **diagrams.oci.connectivity.CustomerDatacntrWhite** -- **diagrams.oci.connectivity.CustomerPremiseWhite** -- **diagrams.oci.connectivity.CustomerPremise** -- **diagrams.oci.connectivity.DisconnectedRegionsWhite** -- **diagrams.oci.connectivity.DisconnectedRegions** -- **diagrams.oci.connectivity.DNSWhite** -- **diagrams.oci.connectivity.DNS** -- **diagrams.oci.connectivity.FastConnectWhite** -- **diagrams.oci.connectivity.FastConnect** -- **diagrams.oci.connectivity.NATGatewayWhite** -- **diagrams.oci.connectivity.NATGateway** -- **diagrams.oci.connectivity.VPNWhite** -- **diagrams.oci.connectivity.VPN** + +BackboneWhite +**diagrams.oci.connectivity.BackboneWhite** + +Backbone +**diagrams.oci.connectivity.Backbone** + +CDNWhite +**diagrams.oci.connectivity.CDNWhite** + +CDN +**diagrams.oci.connectivity.CDN** + +CustomerDatacenter +**diagrams.oci.connectivity.CustomerDatacenter** + +CustomerDatacntrWhite +**diagrams.oci.connectivity.CustomerDatacntrWhite** + +CustomerPremisesWhite +**diagrams.oci.connectivity.CustomerPremisesWhite** + +CustomerPremises +**diagrams.oci.connectivity.CustomerPremises** + +DisconnectedRegionsWhite +**diagrams.oci.connectivity.DisconnectedRegionsWhite** + +DisconnectedRegions +**diagrams.oci.connectivity.DisconnectedRegions** + +DNSWhite +**diagrams.oci.connectivity.DNSWhite** + +DNS +**diagrams.oci.connectivity.DNS** + +FastConnectWhite +**diagrams.oci.connectivity.FastConnectWhite** + +FastConnect +**diagrams.oci.connectivity.FastConnect** + +NATGatewayWhite +**diagrams.oci.connectivity.NATGatewayWhite** + +NATGateway +**diagrams.oci.connectivity.NATGateway** + +VPNWhite +**diagrams.oci.connectivity.VPNWhite** + +VPN +**diagrams.oci.connectivity.VPN** ## oci.database -- **diagrams.oci.database.AutonomousWhite**, **ADBWhite** (alias) -- **diagrams.oci.database.Autonomous**, **ADB** (alias) -- **diagrams.oci.database.BigdataServiceWhite** -- **diagrams.oci.database.BigdataService** -- **diagrams.oci.database.DatabaseServiceWhite**, **DBServiceWhite** (alias) -- **diagrams.oci.database.DatabaseService**, **DBService** (alias) -- **diagrams.oci.database.DataflowApacheWhite** -- **diagrams.oci.database.DataflowApache** -- **diagrams.oci.database.DcatWhite** -- **diagrams.oci.database.Dcat** -- **diagrams.oci.database.DisWhite** -- **diagrams.oci.database.Dis** -- **diagrams.oci.database.DMSWhite** -- **diagrams.oci.database.DMS** -- **diagrams.oci.database.ScienceWhite** -- **diagrams.oci.database.Science** -- **diagrams.oci.database.StreamWhite** -- **diagrams.oci.database.Stream** + +AutonomousWhite +**diagrams.oci.database.AutonomousWhite**, **ADBWhite** (alias) + +Autonomous +**diagrams.oci.database.Autonomous**, **ADB** (alias) + +BigdataServiceWhite +**diagrams.oci.database.BigdataServiceWhite** + +BigdataService +**diagrams.oci.database.BigdataService** + +DatabaseServiceWhite +**diagrams.oci.database.DatabaseServiceWhite**, **DBServiceWhite** (alias) + +DatabaseService +**diagrams.oci.database.DatabaseService**, **DBService** (alias) + +DataflowApacheWhite +**diagrams.oci.database.DataflowApacheWhite** + +DataflowApache +**diagrams.oci.database.DataflowApache** + +DcatWhite +**diagrams.oci.database.DcatWhite** + +Dcat +**diagrams.oci.database.Dcat** + +DisWhite +**diagrams.oci.database.DisWhite** + +Dis +**diagrams.oci.database.Dis** + +DMSWhite +**diagrams.oci.database.DMSWhite** + +DMS +**diagrams.oci.database.DMS** + +ScienceWhite +**diagrams.oci.database.ScienceWhite** + +Science +**diagrams.oci.database.Science** + +StreamWhite +**diagrams.oci.database.StreamWhite** + +Stream +**diagrams.oci.database.Stream** ## oci.devops -- **diagrams.oci.devops.APIGatewayWhite** -- **diagrams.oci.devops.APIGateway** -- **diagrams.oci.devops.APIServiceWhite** -- **diagrams.oci.devops.APIService** -- **diagrams.oci.devops.ResourceMgmtWhite** -- **diagrams.oci.devops.ResourceMgmt** + +APIGatewayWhite +**diagrams.oci.devops.APIGatewayWhite** + +APIGateway +**diagrams.oci.devops.APIGateway** + +APIServiceWhite +**diagrams.oci.devops.APIServiceWhite** + +APIService +**diagrams.oci.devops.APIService** + +ResourceMgmtWhite +**diagrams.oci.devops.ResourceMgmtWhite** + +ResourceMgmt +**diagrams.oci.devops.ResourceMgmt** ## oci.governance -- **diagrams.oci.governance.AuditWhite** -- **diagrams.oci.governance.Audit** -- **diagrams.oci.governance.CompartmentsWhite** -- **diagrams.oci.governance.Compartments** -- **diagrams.oci.governance.GroupsWhite** -- **diagrams.oci.governance.Groups** -- **diagrams.oci.governance.LoggingWhite** -- **diagrams.oci.governance.Logging** -- **diagrams.oci.governance.OCIDWhite** -- **diagrams.oci.governance.OCID** -- **diagrams.oci.governance.PoliciesWhite** -- **diagrams.oci.governance.Policies** -- **diagrams.oci.governance.TaggingWhite** -- **diagrams.oci.governance.Tagging** + +AuditWhite +**diagrams.oci.governance.AuditWhite** + +Audit +**diagrams.oci.governance.Audit** + +CompartmentsWhite +**diagrams.oci.governance.CompartmentsWhite** + +Compartments +**diagrams.oci.governance.Compartments** + +GroupsWhite +**diagrams.oci.governance.GroupsWhite** + +Groups +**diagrams.oci.governance.Groups** + +LoggingWhite +**diagrams.oci.governance.LoggingWhite** + +Logging +**diagrams.oci.governance.Logging** + +OCIDWhite +**diagrams.oci.governance.OCIDWhite** + +OCID +**diagrams.oci.governance.OCID** + +PoliciesWhite +**diagrams.oci.governance.PoliciesWhite** + +Policies +**diagrams.oci.governance.Policies** + +TaggingWhite +**diagrams.oci.governance.TaggingWhite** + +Tagging +**diagrams.oci.governance.Tagging** ## oci.monitoring -- **diagrams.oci.monitoring.AlarmWhite** -- **diagrams.oci.monitoring.Alarm** -- **diagrams.oci.monitoring.EmailWhite** -- **diagrams.oci.monitoring.Email** -- **diagrams.oci.monitoring.EventsWhite** -- **diagrams.oci.monitoring.Events** -- **diagrams.oci.monitoring.HealthCheckWhite** -- **diagrams.oci.monitoring.HealthCheck** -- **diagrams.oci.monitoring.NotificationsWhite** -- **diagrams.oci.monitoring.Notifications** -- **diagrams.oci.monitoring.QueueWhite** -- **diagrams.oci.monitoring.Queue** -- **diagrams.oci.monitoring.SearchWhite** -- **diagrams.oci.monitoring.Search** -- **diagrams.oci.monitoring.TelemetryWhite** -- **diagrams.oci.monitoring.Telemetry** -- **diagrams.oci.monitoring.WorkflowWhite** -- **diagrams.oci.monitoring.Workflow** + +AlarmWhite +**diagrams.oci.monitoring.AlarmWhite** + +Alarm +**diagrams.oci.monitoring.Alarm** + +EmailWhite +**diagrams.oci.monitoring.EmailWhite** + +Email +**diagrams.oci.monitoring.Email** + +EventsWhite +**diagrams.oci.monitoring.EventsWhite** + +Events +**diagrams.oci.monitoring.Events** + +HealthCheckWhite +**diagrams.oci.monitoring.HealthCheckWhite** + +HealthCheck +**diagrams.oci.monitoring.HealthCheck** + +NotificationsWhite +**diagrams.oci.monitoring.NotificationsWhite** + +Notifications +**diagrams.oci.monitoring.Notifications** + +QueueWhite +**diagrams.oci.monitoring.QueueWhite** + +Queue +**diagrams.oci.monitoring.Queue** + +SearchWhite +**diagrams.oci.monitoring.SearchWhite** + +Search +**diagrams.oci.monitoring.Search** + +TelemetryWhite +**diagrams.oci.monitoring.TelemetryWhite** + +Telemetry +**diagrams.oci.monitoring.Telemetry** + +WorkflowWhite +**diagrams.oci.monitoring.WorkflowWhite** + +Workflow +**diagrams.oci.monitoring.Workflow** ## oci.network -- **diagrams.oci.network.DrgWhite** -- **diagrams.oci.network.Drg** -- **diagrams.oci.network.FirewallWhite** -- **diagrams.oci.network.Firewall** -- **diagrams.oci.network.InternetGatewayWhite** -- **diagrams.oci.network.InternetGateway** -- **diagrams.oci.network.LoadBalancerWhite** -- **diagrams.oci.network.LoadBalancer** -- **diagrams.oci.network.RouteTableWhite** -- **diagrams.oci.network.RouteTable** -- **diagrams.oci.network.SecurityListsWhite** -- **diagrams.oci.network.SecurityLists** -- **diagrams.oci.network.ServiceGatewayWhite** -- **diagrams.oci.network.ServiceGateway** -- **diagrams.oci.network.VcnWhite** -- **diagrams.oci.network.Vcn** + +DrgWhite +**diagrams.oci.network.DrgWhite** + +Drg +**diagrams.oci.network.Drg** + +FirewallWhite +**diagrams.oci.network.FirewallWhite** + +Firewall +**diagrams.oci.network.Firewall** + +InternetGatewayWhite +**diagrams.oci.network.InternetGatewayWhite** + +InternetGateway +**diagrams.oci.network.InternetGateway** + +LoadBalancerWhite +**diagrams.oci.network.LoadBalancerWhite** + +LoadBalancer +**diagrams.oci.network.LoadBalancer** + +RouteTableWhite +**diagrams.oci.network.RouteTableWhite** + +RouteTable +**diagrams.oci.network.RouteTable** + +SecurityListsWhite +**diagrams.oci.network.SecurityListsWhite** + +SecurityLists +**diagrams.oci.network.SecurityLists** + +ServiceGatewayWhite +**diagrams.oci.network.ServiceGatewayWhite** + +ServiceGateway +**diagrams.oci.network.ServiceGateway** + +VcnWhite +**diagrams.oci.network.VcnWhite** + +Vcn +**diagrams.oci.network.Vcn** ## oci.security -- **diagrams.oci.security.CloudGuardWhite** -- **diagrams.oci.security.CloudGuard** -- **diagrams.oci.security.DDOSWhite** -- **diagrams.oci.security.DDOS** -- **diagrams.oci.security.EncryptionWhite** -- **diagrams.oci.security.Encryption** -- **diagrams.oci.security.IDAccessWhite** -- **diagrams.oci.security.IDAccess** -- **diagrams.oci.security.KeyManagementWhite** -- **diagrams.oci.security.KeyManagement** -- **diagrams.oci.security.MaxSecurityZoneWhite** -- **diagrams.oci.security.MaxSecurityZone** -- **diagrams.oci.security.VaultWhite** -- **diagrams.oci.security.Vault** -- **diagrams.oci.security.WAFWhite** -- **diagrams.oci.security.WAF** + +CloudGuardWhite +**diagrams.oci.security.CloudGuardWhite** + +CloudGuard +**diagrams.oci.security.CloudGuard** + +DDOSWhite +**diagrams.oci.security.DDOSWhite** + +DDOS +**diagrams.oci.security.DDOS** + +EncryptionWhite +**diagrams.oci.security.EncryptionWhite** + +Encryption +**diagrams.oci.security.Encryption** + +IDAccessWhite +**diagrams.oci.security.IDAccessWhite** + +IDAccess +**diagrams.oci.security.IDAccess** + +KeyManagementWhite +**diagrams.oci.security.KeyManagementWhite** + +KeyManagement +**diagrams.oci.security.KeyManagement** + +MaxSecurityZoneWhite +**diagrams.oci.security.MaxSecurityZoneWhite** + +MaxSecurityZone +**diagrams.oci.security.MaxSecurityZone** + +VaultWhite +**diagrams.oci.security.VaultWhite** + +Vault +**diagrams.oci.security.Vault** + +WAFWhite +**diagrams.oci.security.WAFWhite** + +WAF +**diagrams.oci.security.WAF** ## oci.storage -- **diagrams.oci.storage.BackupRestoreWhite** -- **diagrams.oci.storage.BackupRestore** -- **diagrams.oci.storage.BlockStorageCloneWhite** -- **diagrams.oci.storage.BlockStorageClone** -- **diagrams.oci.storage.BlockStorageWhite** -- **diagrams.oci.storage.BlockStorage** -- **diagrams.oci.storage.BucketsWhite** -- **diagrams.oci.storage.Buckets** -- **diagrams.oci.storage.DataTransferWhite** -- **diagrams.oci.storage.DataTransfer** -- **diagrams.oci.storage.ElasticPerformanceWhite** -- **diagrams.oci.storage.ElasticPerformance** -- **diagrams.oci.storage.FileStorageWhite** -- **diagrams.oci.storage.FileStorage** -- **diagrams.oci.storage.ObjectStorageWhite** -- **diagrams.oci.storage.ObjectStorage** -- **diagrams.oci.storage.StorageGatewayWhite** -- **diagrams.oci.storage.StorageGateway** + +BackupRestoreWhite +**diagrams.oci.storage.BackupRestoreWhite** + +BackupRestore +**diagrams.oci.storage.BackupRestore** + +BlockStorageCloneWhite +**diagrams.oci.storage.BlockStorageCloneWhite** + +BlockStorageClone +**diagrams.oci.storage.BlockStorageClone** + +BlockStorageWhite +**diagrams.oci.storage.BlockStorageWhite** + +BlockStorage +**diagrams.oci.storage.BlockStorage** + +BucketsWhite +**diagrams.oci.storage.BucketsWhite** + +Buckets +**diagrams.oci.storage.Buckets** + +DataTransferWhite +**diagrams.oci.storage.DataTransferWhite** + +DataTransfer +**diagrams.oci.storage.DataTransfer** + +ElasticPerformanceWhite +**diagrams.oci.storage.ElasticPerformanceWhite** + +ElasticPerformance +**diagrams.oci.storage.ElasticPerformance** + +FileStorageWhite +**diagrams.oci.storage.FileStorageWhite** + +FileStorage +**diagrams.oci.storage.FileStorage** + +ObjectStorageWhite +**diagrams.oci.storage.ObjectStorageWhite** + +ObjectStorage +**diagrams.oci.storage.ObjectStorage** + +StorageGatewayWhite +**diagrams.oci.storage.StorageGatewayWhite** + +StorageGateway +**diagrams.oci.storage.StorageGateway** diff --git a/docs/nodes/onprem.md b/docs/nodes/onprem.md index 585dcb75..149ebf90 100644 --- a/docs/nodes/onprem.md +++ b/docs/nodes/onprem.md @@ -3,238 +3,595 @@ id: onprem title: OnPrem --- -Node classes list of onprem provider. +Node classes list of the onprem provider. ## onprem.aggregator -- **diagrams.onprem.aggregator.Fluentd** -- **diagrams.onprem.aggregator.Vector** + +Fluentd +**diagrams.onprem.aggregator.Fluentd** + +Vector +**diagrams.onprem.aggregator.Vector** ## onprem.analytics -- **diagrams.onprem.analytics.Beam** -- **diagrams.onprem.analytics.Databricks** -- **diagrams.onprem.analytics.Dbt** -- **diagrams.onprem.analytics.Flink** -- **diagrams.onprem.analytics.Hadoop** -- **diagrams.onprem.analytics.Hive** -- **diagrams.onprem.analytics.Metabase** -- **diagrams.onprem.analytics.Norikra** -- **diagrams.onprem.analytics.Powerbi**, **PowerBI** (alias) -- **diagrams.onprem.analytics.Presto** -- **diagrams.onprem.analytics.Singer** -- **diagrams.onprem.analytics.Spark** -- **diagrams.onprem.analytics.Storm** -- **diagrams.onprem.analytics.Superset** -- **diagrams.onprem.analytics.Tableau** + +Beam +**diagrams.onprem.analytics.Beam** + +Databricks +**diagrams.onprem.analytics.Databricks** + +Dbt +**diagrams.onprem.analytics.Dbt** + +Dremio +**diagrams.onprem.analytics.Dremio** + +Flink +**diagrams.onprem.analytics.Flink** + +Hadoop +**diagrams.onprem.analytics.Hadoop** + +Hive +**diagrams.onprem.analytics.Hive** + +Metabase +**diagrams.onprem.analytics.Metabase** + +Norikra +**diagrams.onprem.analytics.Norikra** + +Powerbi +**diagrams.onprem.analytics.Powerbi**, **PowerBI** (alias) + +Presto +**diagrams.onprem.analytics.Presto** + +Singer +**diagrams.onprem.analytics.Singer** + +Spark +**diagrams.onprem.analytics.Spark** + +Storm +**diagrams.onprem.analytics.Storm** + +Superset +**diagrams.onprem.analytics.Superset** + +Tableau +**diagrams.onprem.analytics.Tableau** + +Trino +**diagrams.onprem.analytics.Trino** ## onprem.auth -- **diagrams.onprem.auth.Boundary** -- **diagrams.onprem.auth.BuzzfeedSso** -- **diagrams.onprem.auth.Oauth2Proxy** + +Boundary +**diagrams.onprem.auth.Boundary** + +BuzzfeedSso +**diagrams.onprem.auth.BuzzfeedSso** + +Oauth2Proxy +**diagrams.onprem.auth.Oauth2Proxy** ## onprem.cd -- **diagrams.onprem.cd.Spinnaker** -- **diagrams.onprem.cd.TektonCli** -- **diagrams.onprem.cd.Tekton** + +Spinnaker +**diagrams.onprem.cd.Spinnaker** + +TektonCli +**diagrams.onprem.cd.TektonCli** + +Tekton +**diagrams.onprem.cd.Tekton** ## onprem.certificates -- **diagrams.onprem.certificates.CertManager** -- **diagrams.onprem.certificates.LetsEncrypt** + +CertManager +**diagrams.onprem.certificates.CertManager** + +LetsEncrypt +**diagrams.onprem.certificates.LetsEncrypt** ## onprem.ci -- **diagrams.onprem.ci.Circleci**, **CircleCI** (alias) -- **diagrams.onprem.ci.Concourseci**, **ConcourseCI** (alias) -- **diagrams.onprem.ci.Droneci**, **DroneCI** (alias) -- **diagrams.onprem.ci.GithubActions** -- **diagrams.onprem.ci.Gitlabci**, **GitlabCI** (alias) -- **diagrams.onprem.ci.Jenkins** -- **diagrams.onprem.ci.Teamcity**, **TC** (alias) -- **diagrams.onprem.ci.Travisci**, **TravisCI** (alias) -- **diagrams.onprem.ci.Zuulci**, **ZuulCI** (alias) + +Circleci +**diagrams.onprem.ci.Circleci**, **CircleCI** (alias) + +Concourseci +**diagrams.onprem.ci.Concourseci**, **ConcourseCI** (alias) + +Droneci +**diagrams.onprem.ci.Droneci**, **DroneCI** (alias) + +GithubActions +**diagrams.onprem.ci.GithubActions** + +Gitlabci +**diagrams.onprem.ci.Gitlabci**, **GitlabCI** (alias) + +Jenkins +**diagrams.onprem.ci.Jenkins** + +Teamcity +**diagrams.onprem.ci.Teamcity**, **TC** (alias) + +Travisci +**diagrams.onprem.ci.Travisci**, **TravisCI** (alias) + +Zuulci +**diagrams.onprem.ci.Zuulci**, **ZuulCI** (alias) ## onprem.client -- **diagrams.onprem.client.Client** -- **diagrams.onprem.client.User** -- **diagrams.onprem.client.Users** + +Client +**diagrams.onprem.client.Client** + +User +**diagrams.onprem.client.User** + +Users +**diagrams.onprem.client.Users** ## onprem.compute -- **diagrams.onprem.compute.Nomad** -- **diagrams.onprem.compute.Server** + +Nomad +**diagrams.onprem.compute.Nomad** + +Server +**diagrams.onprem.compute.Server** ## onprem.container -- **diagrams.onprem.container.Containerd** -- **diagrams.onprem.container.Crio** -- **diagrams.onprem.container.Docker** -- **diagrams.onprem.container.Firecracker** -- **diagrams.onprem.container.Gvisor** -- **diagrams.onprem.container.Lxc**, **LXC** (alias) -- **diagrams.onprem.container.Rkt**, **RKT** (alias) + +Containerd +**diagrams.onprem.container.Containerd** + +Crio +**diagrams.onprem.container.Crio** + +Docker +**diagrams.onprem.container.Docker** + +Firecracker +**diagrams.onprem.container.Firecracker** + +Gvisor +**diagrams.onprem.container.Gvisor** + +K3S +**diagrams.onprem.container.K3S** + +Lxc +**diagrams.onprem.container.Lxc**, **LXC** (alias) + +Rkt +**diagrams.onprem.container.Rkt**, **RKT** (alias) ## onprem.database -- **diagrams.onprem.database.Cassandra** -- **diagrams.onprem.database.Clickhouse**, **ClickHouse** (alias) -- **diagrams.onprem.database.Cockroachdb**, **CockroachDB** (alias) -- **diagrams.onprem.database.Couchbase** -- **diagrams.onprem.database.Couchdb**, **CouchDB** (alias) -- **diagrams.onprem.database.Dgraph** -- **diagrams.onprem.database.Druid** -- **diagrams.onprem.database.Hbase**, **HBase** (alias) -- **diagrams.onprem.database.Influxdb**, **InfluxDB** (alias) -- **diagrams.onprem.database.Janusgraph**, **JanusGraph** (alias) -- **diagrams.onprem.database.Mariadb**, **MariaDB** (alias) -- **diagrams.onprem.database.Mongodb**, **MongoDB** (alias) -- **diagrams.onprem.database.Mssql**, **MSSQL** (alias) -- **diagrams.onprem.database.Mysql**, **MySQL** (alias) -- **diagrams.onprem.database.Neo4J** -- **diagrams.onprem.database.Oracle** -- **diagrams.onprem.database.Postgresql**, **PostgreSQL** (alias) -- **diagrams.onprem.database.Scylla** + +Cassandra +**diagrams.onprem.database.Cassandra** + +Clickhouse +**diagrams.onprem.database.Clickhouse**, **ClickHouse** (alias) + +Cockroachdb +**diagrams.onprem.database.Cockroachdb**, **CockroachDB** (alias) + +Couchbase +**diagrams.onprem.database.Couchbase** + +Couchdb +**diagrams.onprem.database.Couchdb**, **CouchDB** (alias) + +Dgraph +**diagrams.onprem.database.Dgraph** + +Druid +**diagrams.onprem.database.Druid** + +Hbase +**diagrams.onprem.database.Hbase**, **HBase** (alias) + +Influxdb +**diagrams.onprem.database.Influxdb**, **InfluxDB** (alias) + +Janusgraph +**diagrams.onprem.database.Janusgraph**, **JanusGraph** (alias) + +Mariadb +**diagrams.onprem.database.Mariadb**, **MariaDB** (alias) + +Mongodb +**diagrams.onprem.database.Mongodb**, **MongoDB** (alias) + +Mssql +**diagrams.onprem.database.Mssql**, **MSSQL** (alias) + +Mysql +**diagrams.onprem.database.Mysql**, **MySQL** (alias) + +Neo4J +**diagrams.onprem.database.Neo4J** + +Oracle +**diagrams.onprem.database.Oracle** + +Postgresql +**diagrams.onprem.database.Postgresql**, **PostgreSQL** (alias) + +Scylla +**diagrams.onprem.database.Scylla** ## onprem.dns -- **diagrams.onprem.dns.Coredns** -- **diagrams.onprem.dns.Powerdns** + +Coredns +**diagrams.onprem.dns.Coredns** + +Powerdns +**diagrams.onprem.dns.Powerdns** ## onprem.etl -- **diagrams.onprem.etl.Embulk** + +Embulk +**diagrams.onprem.etl.Embulk** ## onprem.gitops -- **diagrams.onprem.gitops.Argocd**, **ArgoCD** (alias) -- **diagrams.onprem.gitops.Flagger** -- **diagrams.onprem.gitops.Flux** + +Argocd +**diagrams.onprem.gitops.Argocd**, **ArgoCD** (alias) + +Flagger +**diagrams.onprem.gitops.Flagger** + +Flux +**diagrams.onprem.gitops.Flux** ## onprem.groupware -- **diagrams.onprem.groupware.Nextcloud** + +Nextcloud +**diagrams.onprem.groupware.Nextcloud** ## onprem.iac -- **diagrams.onprem.iac.Ansible** -- **diagrams.onprem.iac.Atlantis** -- **diagrams.onprem.iac.Awx** -- **diagrams.onprem.iac.Terraform** + +Ansible +**diagrams.onprem.iac.Ansible** + +Atlantis +**diagrams.onprem.iac.Atlantis** + +Awx +**diagrams.onprem.iac.Awx** + +Puppet +**diagrams.onprem.iac.Puppet** + +Terraform +**diagrams.onprem.iac.Terraform** ## onprem.identity -- **diagrams.onprem.identity.Dex** + +Dex +**diagrams.onprem.identity.Dex** ## onprem.inmemory -- **diagrams.onprem.inmemory.Aerospike** -- **diagrams.onprem.inmemory.Hazelcast** -- **diagrams.onprem.inmemory.Memcached** -- **diagrams.onprem.inmemory.Redis** + +Aerospike +**diagrams.onprem.inmemory.Aerospike** + +Hazelcast +**diagrams.onprem.inmemory.Hazelcast** + +Memcached +**diagrams.onprem.inmemory.Memcached** + +Redis +**diagrams.onprem.inmemory.Redis** ## onprem.logging -- **diagrams.onprem.logging.Fluentbit**, **FluentBit** (alias) -- **diagrams.onprem.logging.Graylog** -- **diagrams.onprem.logging.Loki** -- **diagrams.onprem.logging.Rsyslog**, **RSyslog** (alias) -- **diagrams.onprem.logging.SyslogNg** + +Fluentbit +**diagrams.onprem.logging.Fluentbit**, **FluentBit** (alias) + +Graylog +**diagrams.onprem.logging.Graylog** + +Loki +**diagrams.onprem.logging.Loki** + +Rsyslog +**diagrams.onprem.logging.Rsyslog**, **RSyslog** (alias) + +SyslogNg +**diagrams.onprem.logging.SyslogNg** + +## onprem.messaging + + +Centrifugo +**diagrams.onprem.messaging.Centrifugo** ## onprem.mlops -- **diagrams.onprem.mlops.Polyaxon** + +Mlflow +**diagrams.onprem.mlops.Mlflow** + +Polyaxon +**diagrams.onprem.mlops.Polyaxon** ## onprem.monitoring -- **diagrams.onprem.monitoring.Cortex** -- **diagrams.onprem.monitoring.Datadog** -- **diagrams.onprem.monitoring.Grafana** -- **diagrams.onprem.monitoring.Humio** -- **diagrams.onprem.monitoring.Newrelic** -- **diagrams.onprem.monitoring.PrometheusOperator** -- **diagrams.onprem.monitoring.Prometheus** -- **diagrams.onprem.monitoring.Sentry** -- **diagrams.onprem.monitoring.Splunk** -- **diagrams.onprem.monitoring.Thanos** -- **diagrams.onprem.monitoring.Zabbix** + +Cortex +**diagrams.onprem.monitoring.Cortex** + +Datadog +**diagrams.onprem.monitoring.Datadog** + +Dynatrace +**diagrams.onprem.monitoring.Dynatrace** + +Grafana +**diagrams.onprem.monitoring.Grafana** + +Humio +**diagrams.onprem.monitoring.Humio** + +Mimir +**diagrams.onprem.monitoring.Mimir** + +Nagios +**diagrams.onprem.monitoring.Nagios** + +Newrelic +**diagrams.onprem.monitoring.Newrelic** + +PrometheusOperator +**diagrams.onprem.monitoring.PrometheusOperator** + +Prometheus +**diagrams.onprem.monitoring.Prometheus** + +Sentry +**diagrams.onprem.monitoring.Sentry** + +Splunk +**diagrams.onprem.monitoring.Splunk** + +Thanos +**diagrams.onprem.monitoring.Thanos** + +Zabbix +**diagrams.onprem.monitoring.Zabbix** ## onprem.network -- **diagrams.onprem.network.Ambassador** -- **diagrams.onprem.network.Apache** -- **diagrams.onprem.network.Bind9** -- **diagrams.onprem.network.Caddy** -- **diagrams.onprem.network.Consul** -- **diagrams.onprem.network.Envoy** -- **diagrams.onprem.network.Etcd**, **ETCD** (alias) -- **diagrams.onprem.network.Glassfish** -- **diagrams.onprem.network.Gunicorn** -- **diagrams.onprem.network.Haproxy**, **HAProxy** (alias) -- **diagrams.onprem.network.Internet** -- **diagrams.onprem.network.Istio** -- **diagrams.onprem.network.Jbossas** -- **diagrams.onprem.network.Jetty** -- **diagrams.onprem.network.Kong** -- **diagrams.onprem.network.Linkerd** -- **diagrams.onprem.network.Nginx** -- **diagrams.onprem.network.Ocelot** -- **diagrams.onprem.network.OpenServiceMesh**, **OSM** (alias) -- **diagrams.onprem.network.Opnsense**, **OPNSense** (alias) -- **diagrams.onprem.network.Pfsense**, **PFSense** (alias) -- **diagrams.onprem.network.Pomerium** -- **diagrams.onprem.network.Powerdns** -- **diagrams.onprem.network.Tomcat** -- **diagrams.onprem.network.Traefik** -- **diagrams.onprem.network.Vyos**, **VyOS** (alias) -- **diagrams.onprem.network.Wildfly** -- **diagrams.onprem.network.Zookeeper** + +Ambassador +**diagrams.onprem.network.Ambassador** + +Apache +**diagrams.onprem.network.Apache** + +Bind9 +**diagrams.onprem.network.Bind9** + +Caddy +**diagrams.onprem.network.Caddy** + +Consul +**diagrams.onprem.network.Consul** + +Envoy +**diagrams.onprem.network.Envoy** + +Etcd +**diagrams.onprem.network.Etcd**, **ETCD** (alias) + +Glassfish +**diagrams.onprem.network.Glassfish** + +Gunicorn +**diagrams.onprem.network.Gunicorn** + +Haproxy +**diagrams.onprem.network.Haproxy**, **HAProxy** (alias) + +Internet +**diagrams.onprem.network.Internet** + +Istio +**diagrams.onprem.network.Istio** + +Jbossas +**diagrams.onprem.network.Jbossas** + +Jetty +**diagrams.onprem.network.Jetty** + +Kong +**diagrams.onprem.network.Kong** + +Linkerd +**diagrams.onprem.network.Linkerd** + +Mikrotik +**diagrams.onprem.network.Mikrotik** + +Nginx +**diagrams.onprem.network.Nginx** + +Ocelot +**diagrams.onprem.network.Ocelot** + +OpenServiceMesh +**diagrams.onprem.network.OpenServiceMesh**, **OSM** (alias) + +Opnsense +**diagrams.onprem.network.Opnsense**, **OPNSense** (alias) + +Pfsense +**diagrams.onprem.network.Pfsense**, **PFSense** (alias) + +Pomerium +**diagrams.onprem.network.Pomerium** + +Powerdns +**diagrams.onprem.network.Powerdns** + +Tomcat +**diagrams.onprem.network.Tomcat** + +Traefik +**diagrams.onprem.network.Traefik** + +Tyk +**diagrams.onprem.network.Tyk** + +Vyos +**diagrams.onprem.network.Vyos**, **VyOS** (alias) + +Wildfly +**diagrams.onprem.network.Wildfly** + +Yarp +**diagrams.onprem.network.Yarp** + +Zookeeper +**diagrams.onprem.network.Zookeeper** ## onprem.proxmox -- **diagrams.onprem.proxmox.Pve**, **ProxmoxVE** (alias) + +Pve +**diagrams.onprem.proxmox.Pve**, **ProxmoxVE** (alias) ## onprem.queue -- **diagrams.onprem.queue.Activemq**, **ActiveMQ** (alias) -- **diagrams.onprem.queue.Celery** -- **diagrams.onprem.queue.Kafka** -- **diagrams.onprem.queue.Nats** -- **diagrams.onprem.queue.Rabbitmq**, **RabbitMQ** (alias) -- **diagrams.onprem.queue.Zeromq**, **ZeroMQ** (alias) + +Activemq +**diagrams.onprem.queue.Activemq**, **ActiveMQ** (alias) + +Celery +**diagrams.onprem.queue.Celery** + +Emqx +**diagrams.onprem.queue.Emqx**, **EMQX** (alias) + +Kafka +**diagrams.onprem.queue.Kafka** + +Nats +**diagrams.onprem.queue.Nats** + +Rabbitmq +**diagrams.onprem.queue.Rabbitmq**, **RabbitMQ** (alias) + +Zeromq +**diagrams.onprem.queue.Zeromq**, **ZeroMQ** (alias) + +## onprem.registry + + +Harbor +**diagrams.onprem.registry.Harbor** + +Jfrog +**diagrams.onprem.registry.Jfrog** ## onprem.search -- **diagrams.onprem.search.Solr** + +Solr +**diagrams.onprem.search.Solr** ## onprem.security -- **diagrams.onprem.security.Bitwarden** -- **diagrams.onprem.security.Trivy** -- **diagrams.onprem.security.Vault** + +Bitwarden +**diagrams.onprem.security.Bitwarden** + +Trivy +**diagrams.onprem.security.Trivy** + +Vault +**diagrams.onprem.security.Vault** ## onprem.storage -- **diagrams.onprem.storage.CephOsd**, **CEPH_OSD** (alias) -- **diagrams.onprem.storage.Ceph**, **CEPH** (alias) -- **diagrams.onprem.storage.Glusterfs** + +CephOsd +**diagrams.onprem.storage.CephOsd**, **CEPH_OSD** (alias) + +Ceph +**diagrams.onprem.storage.Ceph**, **CEPH** (alias) + +Glusterfs +**diagrams.onprem.storage.Glusterfs** + +Portworx +**diagrams.onprem.storage.Portworx** ## onprem.tracing -- **diagrams.onprem.tracing.Jaeger** + +Jaeger +**diagrams.onprem.tracing.Jaeger** + +Tempo +**diagrams.onprem.tracing.Tempo** ## onprem.vcs -- **diagrams.onprem.vcs.Git** -- **diagrams.onprem.vcs.Github** -- **diagrams.onprem.vcs.Gitlab** + +Git +**diagrams.onprem.vcs.Git** + +Gitea +**diagrams.onprem.vcs.Gitea** + +Github +**diagrams.onprem.vcs.Github** + +Gitlab +**diagrams.onprem.vcs.Gitlab** + +Svn +**diagrams.onprem.vcs.Svn** ## onprem.workflow -- **diagrams.onprem.workflow.Airflow** -- **diagrams.onprem.workflow.Digdag** -- **diagrams.onprem.workflow.Kubeflow**, **KubeFlow** (alias) -- **diagrams.onprem.workflow.Nifi**, **NiFi** (alias) + +Airflow +**diagrams.onprem.workflow.Airflow** + +Digdag +**diagrams.onprem.workflow.Digdag** + +Kubeflow +**diagrams.onprem.workflow.Kubeflow**, **KubeFlow** (alias) + +Nifi +**diagrams.onprem.workflow.Nifi**, **NiFi** (alias) diff --git a/docs/nodes/openstack.md b/docs/nodes/openstack.md index 0d4c5059..c88727a1 100644 --- a/docs/nodes/openstack.md +++ b/docs/nodes/openstack.md @@ -3,120 +3,211 @@ id: openstack title: OpenStack --- -Node classes list of openstack provider. - -## openstack.adjacentenablers - +Node classes list of the openstack provider. ## openstack.apiproxies -- **diagrams.openstack.apiproxies.EC2API** + +EC2API +**diagrams.openstack.apiproxies.EC2API** ## openstack.applicationlifecycle -- **diagrams.openstack.applicationlifecycle.Freezer** -- **diagrams.openstack.applicationlifecycle.Masakari** -- **diagrams.openstack.applicationlifecycle.Murano** -- **diagrams.openstack.applicationlifecycle.Solum** + +Freezer +**diagrams.openstack.applicationlifecycle.Freezer** + +Masakari +**diagrams.openstack.applicationlifecycle.Masakari** + +Murano +**diagrams.openstack.applicationlifecycle.Murano** + +Solum +**diagrams.openstack.applicationlifecycle.Solum** ## openstack.baremetal -- **diagrams.openstack.baremetal.Cyborg** -- **diagrams.openstack.baremetal.Ironic** + +Cyborg +**diagrams.openstack.baremetal.Cyborg** + +Ironic +**diagrams.openstack.baremetal.Ironic** ## openstack.billing -- **diagrams.openstack.billing.Cloudkitty**, **CloudKitty** (alias) + +Cloudkitty +**diagrams.openstack.billing.Cloudkitty**, **CloudKitty** (alias) ## openstack.compute -- **diagrams.openstack.compute.Nova** -- **diagrams.openstack.compute.Qinling** -- **diagrams.openstack.compute.Zun** + +Nova +**diagrams.openstack.compute.Nova** + +Qinling +**diagrams.openstack.compute.Qinling** + +Zun +**diagrams.openstack.compute.Zun** ## openstack.containerservices -- **diagrams.openstack.containerservices.Kuryr** + +Kuryr +**diagrams.openstack.containerservices.Kuryr** ## openstack.deployment -- **diagrams.openstack.deployment.Ansible** -- **diagrams.openstack.deployment.Charms** -- **diagrams.openstack.deployment.Chef** -- **diagrams.openstack.deployment.Helm** -- **diagrams.openstack.deployment.Kolla**, **KollaAnsible** (alias) -- **diagrams.openstack.deployment.Tripleo**, **TripleO** (alias) -## openstack.frontend +Ansible +**diagrams.openstack.deployment.Ansible** + +Charms +**diagrams.openstack.deployment.Charms** + +Chef +**diagrams.openstack.deployment.Chef** -- **diagrams.openstack.frontend.Horizon** +Helm +**diagrams.openstack.deployment.Helm** -## openstack.lifecyclemanagement +Kolla +**diagrams.openstack.deployment.Kolla**, **KollaAnsible** (alias) + +Tripleo +**diagrams.openstack.deployment.Tripleo**, **TripleO** (alias) + +## openstack.frontend +Horizon +**diagrams.openstack.frontend.Horizon** + ## openstack.monitoring -- **diagrams.openstack.monitoring.Monasca** -- **diagrams.openstack.monitoring.Telemetry** + +Monasca +**diagrams.openstack.monitoring.Monasca** + +Telemetry +**diagrams.openstack.monitoring.Telemetry** ## openstack.multiregion -- **diagrams.openstack.multiregion.Tricircle** + +Tricircle +**diagrams.openstack.multiregion.Tricircle** ## openstack.networking -- **diagrams.openstack.networking.Designate** -- **diagrams.openstack.networking.Neutron** -- **diagrams.openstack.networking.Octavia** -## openstack.nfv +Designate +**diagrams.openstack.networking.Designate** + +Neutron +**diagrams.openstack.networking.Neutron** -- **diagrams.openstack.nfv.Tacker** +Octavia +**diagrams.openstack.networking.Octavia** + +## openstack.nfv -## openstack.operations +Tacker +**diagrams.openstack.nfv.Tacker** ## openstack.optimization -- **diagrams.openstack.optimization.Congress** -- **diagrams.openstack.optimization.Rally** -- **diagrams.openstack.optimization.Vitrage** -- **diagrams.openstack.optimization.Watcher** + +Congress +**diagrams.openstack.optimization.Congress** + +Rally +**diagrams.openstack.optimization.Rally** + +Vitrage +**diagrams.openstack.optimization.Vitrage** + +Watcher +**diagrams.openstack.optimization.Watcher** ## openstack.orchestration -- **diagrams.openstack.orchestration.Blazar** -- **diagrams.openstack.orchestration.Heat** -- **diagrams.openstack.orchestration.Mistral** -- **diagrams.openstack.orchestration.Senlin** -- **diagrams.openstack.orchestration.Zaqar** + +Blazar +**diagrams.openstack.orchestration.Blazar** + +Heat +**diagrams.openstack.orchestration.Heat** + +Mistral +**diagrams.openstack.orchestration.Mistral** + +Senlin +**diagrams.openstack.orchestration.Senlin** + +Zaqar +**diagrams.openstack.orchestration.Zaqar** ## openstack.packaging -- **diagrams.openstack.packaging.LOCI** -- **diagrams.openstack.packaging.Puppet** -- **diagrams.openstack.packaging.RPM** + +LOCI +**diagrams.openstack.packaging.LOCI** + +Puppet +**diagrams.openstack.packaging.Puppet** + +RPM +**diagrams.openstack.packaging.RPM** ## openstack.sharedservices -- **diagrams.openstack.sharedservices.Barbican** -- **diagrams.openstack.sharedservices.Glance** -- **diagrams.openstack.sharedservices.Karbor** -- **diagrams.openstack.sharedservices.Keystone** -- **diagrams.openstack.sharedservices.Searchlight** + +Barbican +**diagrams.openstack.sharedservices.Barbican** + +Glance +**diagrams.openstack.sharedservices.Glance** + +Karbor +**diagrams.openstack.sharedservices.Karbor** + +Keystone +**diagrams.openstack.sharedservices.Keystone** + +Searchlight +**diagrams.openstack.sharedservices.Searchlight** ## openstack.storage -- **diagrams.openstack.storage.Cinder** -- **diagrams.openstack.storage.Manila** -- **diagrams.openstack.storage.Swift** + +Cinder +**diagrams.openstack.storage.Cinder** + +Manila +**diagrams.openstack.storage.Manila** + +Swift +**diagrams.openstack.storage.Swift** ## openstack.user -- **diagrams.openstack.user.Openstackclient**, **OpenStackClient** (alias) + +Openstackclient +**diagrams.openstack.user.Openstackclient**, **OpenStackClient** (alias) ## openstack.workloadprovisioning -- **diagrams.openstack.workloadprovisioning.Magnum** -- **diagrams.openstack.workloadprovisioning.Sahara** -- **diagrams.openstack.workloadprovisioning.Trove** + +Magnum +**diagrams.openstack.workloadprovisioning.Magnum** + +Sahara +**diagrams.openstack.workloadprovisioning.Sahara** + +Trove +**diagrams.openstack.workloadprovisioning.Trove** diff --git a/docs/nodes/outscale.md b/docs/nodes/outscale.md index 2e583fe4..34a25c16 100644 --- a/docs/nodes/outscale.md +++ b/docs/nodes/outscale.md @@ -3,28 +3,52 @@ id: outscale title: Outscale --- -Node classes list of outscale provider. +Node classes list of the outscale provider. ## outscale.compute -- **diagrams.outscale.compute.Compute** -- **diagrams.outscale.compute.DirectConnect** + +Compute +**diagrams.outscale.compute.Compute** + +DirectConnect +**diagrams.outscale.compute.DirectConnect** ## outscale.network -- **diagrams.outscale.network.ClientVpn** -- **diagrams.outscale.network.InternetService** -- **diagrams.outscale.network.LoadBalancer** -- **diagrams.outscale.network.NatService** -- **diagrams.outscale.network.Net** -- **diagrams.outscale.network.SiteToSiteVpng** + +ClientVpn +**diagrams.outscale.network.ClientVpn** + +InternetService +**diagrams.outscale.network.InternetService** + +LoadBalancer +**diagrams.outscale.network.LoadBalancer** + +NatService +**diagrams.outscale.network.NatService** + +Net +**diagrams.outscale.network.Net** + +SiteToSiteVpng +**diagrams.outscale.network.SiteToSiteVpng** ## outscale.security -- **diagrams.outscale.security.Firewall** -- **diagrams.outscale.security.IdentityAndAccessManagement** + +Firewall +**diagrams.outscale.security.Firewall** + +IdentityAndAccessManagement +**diagrams.outscale.security.IdentityAndAccessManagement** ## outscale.storage -- **diagrams.outscale.storage.SimpleStorageService** -- **diagrams.outscale.storage.Storage** + +SimpleStorageService +**diagrams.outscale.storage.SimpleStorageService** + +Storage +**diagrams.outscale.storage.Storage** diff --git a/docs/nodes/programming.md b/docs/nodes/programming.md index fdd25404..44843c71 100644 --- a/docs/nodes/programming.md +++ b/docs/nodes/programming.md @@ -3,71 +3,226 @@ id: programming title: Programming --- -Node classes list of programming provider. +Node classes list of the programming provider. ## programming.flowchart -- **diagrams.programming.flowchart.Action** -- **diagrams.programming.flowchart.Collate** -- **diagrams.programming.flowchart.Database** -- **diagrams.programming.flowchart.Decision** -- **diagrams.programming.flowchart.Delay** -- **diagrams.programming.flowchart.Display** -- **diagrams.programming.flowchart.Document** -- **diagrams.programming.flowchart.InputOutput** -- **diagrams.programming.flowchart.Inspection** -- **diagrams.programming.flowchart.InternalStorage** -- **diagrams.programming.flowchart.LoopLimit** -- **diagrams.programming.flowchart.ManualInput** -- **diagrams.programming.flowchart.ManualLoop** -- **diagrams.programming.flowchart.Merge** -- **diagrams.programming.flowchart.MultipleDocuments** -- **diagrams.programming.flowchart.OffPageConnectorLeft** -- **diagrams.programming.flowchart.OffPageConnectorRight** -- **diagrams.programming.flowchart.Or** -- **diagrams.programming.flowchart.PredefinedProcess** -- **diagrams.programming.flowchart.Preparation** -- **diagrams.programming.flowchart.Sort** -- **diagrams.programming.flowchart.StartEnd** -- **diagrams.programming.flowchart.StoredData** -- **diagrams.programming.flowchart.SummingJunction** + +Action +**diagrams.programming.flowchart.Action** + +Collate +**diagrams.programming.flowchart.Collate** + +Database +**diagrams.programming.flowchart.Database** + +Decision +**diagrams.programming.flowchart.Decision** + +Delay +**diagrams.programming.flowchart.Delay** + +Display +**diagrams.programming.flowchart.Display** + +Document +**diagrams.programming.flowchart.Document** + +InputOutput +**diagrams.programming.flowchart.InputOutput** + +Inspection +**diagrams.programming.flowchart.Inspection** + +InternalStorage +**diagrams.programming.flowchart.InternalStorage** + +LoopLimit +**diagrams.programming.flowchart.LoopLimit** + +ManualInput +**diagrams.programming.flowchart.ManualInput** + +ManualLoop +**diagrams.programming.flowchart.ManualLoop** + +Merge +**diagrams.programming.flowchart.Merge** + +MultipleDocuments +**diagrams.programming.flowchart.MultipleDocuments** + +OffPageConnectorLeft +**diagrams.programming.flowchart.OffPageConnectorLeft** + +OffPageConnectorRight +**diagrams.programming.flowchart.OffPageConnectorRight** + +Or +**diagrams.programming.flowchart.Or** + +PredefinedProcess +**diagrams.programming.flowchart.PredefinedProcess** + +Preparation +**diagrams.programming.flowchart.Preparation** + +Sort +**diagrams.programming.flowchart.Sort** + +StartEnd +**diagrams.programming.flowchart.StartEnd** + +StoredData +**diagrams.programming.flowchart.StoredData** + +SummingJunction +**diagrams.programming.flowchart.SummingJunction** ## programming.framework -- **diagrams.programming.framework.Angular** -- **diagrams.programming.framework.Backbone** -- **diagrams.programming.framework.Django** -- **diagrams.programming.framework.Ember** -- **diagrams.programming.framework.Fastapi**, **FastAPI** (alias) -- **diagrams.programming.framework.Flask** -- **diagrams.programming.framework.Flutter** -- **diagrams.programming.framework.Laravel** -- **diagrams.programming.framework.Micronaut** -- **diagrams.programming.framework.Rails** -- **diagrams.programming.framework.React** -- **diagrams.programming.framework.Spring** -- **diagrams.programming.framework.Vue** + +Angular +**diagrams.programming.framework.Angular** + +Backbone +**diagrams.programming.framework.Backbone** + +Camel +**diagrams.programming.framework.Camel** + +Django +**diagrams.programming.framework.Django** + +Dotnet +**diagrams.programming.framework.Dotnet**, **DotNet** (alias) + +Ember +**diagrams.programming.framework.Ember** + +Fastapi +**diagrams.programming.framework.Fastapi**, **FastAPI** (alias) + +Flask +**diagrams.programming.framework.Flask** + +Flutter +**diagrams.programming.framework.Flutter** + +Graphql +**diagrams.programming.framework.Graphql**, **GraphQL** (alias) + +Hibernate +**diagrams.programming.framework.Hibernate** + +Jhipster +**diagrams.programming.framework.Jhipster**, **JHipster** (alias) + +Laravel +**diagrams.programming.framework.Laravel** + +Micronaut +**diagrams.programming.framework.Micronaut** + +Nextjs +**diagrams.programming.framework.Nextjs**, **NextJs** (alias) + +Quarkus +**diagrams.programming.framework.Quarkus** + +Rails +**diagrams.programming.framework.Rails** + +React +**diagrams.programming.framework.React** + +Spring +**diagrams.programming.framework.Spring** + +Starlette +**diagrams.programming.framework.Starlette** + +Svelte +**diagrams.programming.framework.Svelte** + +Vercel +**diagrams.programming.framework.Vercel** + +Vue +**diagrams.programming.framework.Vue** ## programming.language -- **diagrams.programming.language.Bash** -- **diagrams.programming.language.C** -- **diagrams.programming.language.Cpp** -- **diagrams.programming.language.Csharp** -- **diagrams.programming.language.Dart** -- **diagrams.programming.language.Elixir** -- **diagrams.programming.language.Erlang** -- **diagrams.programming.language.Go** -- **diagrams.programming.language.Java** -- **diagrams.programming.language.Javascript**, **JavaScript** (alias) -- **diagrams.programming.language.Kotlin** -- **diagrams.programming.language.Matlab** -- **diagrams.programming.language.Nodejs**, **NodeJS** (alias) -- **diagrams.programming.language.Php**, **PHP** (alias) -- **diagrams.programming.language.Python** -- **diagrams.programming.language.R** -- **diagrams.programming.language.Ruby** -- **diagrams.programming.language.Rust** -- **diagrams.programming.language.Scala** -- **diagrams.programming.language.Swift** -- **diagrams.programming.language.Typescript**, **TypeScript** (alias) + +Bash +**diagrams.programming.language.Bash** + +C +**diagrams.programming.language.C** + +Cpp +**diagrams.programming.language.Cpp** + +Csharp +**diagrams.programming.language.Csharp** + +Dart +**diagrams.programming.language.Dart** + +Elixir +**diagrams.programming.language.Elixir** + +Erlang +**diagrams.programming.language.Erlang** + +Go +**diagrams.programming.language.Go** + +Java +**diagrams.programming.language.Java** + +Javascript +**diagrams.programming.language.Javascript**, **JavaScript** (alias) + +Kotlin +**diagrams.programming.language.Kotlin** + +Latex +**diagrams.programming.language.Latex** + +Matlab +**diagrams.programming.language.Matlab** + +Nodejs +**diagrams.programming.language.Nodejs**, **NodeJS** (alias) + +Php +**diagrams.programming.language.Php**, **PHP** (alias) + +Python +**diagrams.programming.language.Python** + +R +**diagrams.programming.language.R** + +Ruby +**diagrams.programming.language.Ruby** + +Rust +**diagrams.programming.language.Rust** + +Scala +**diagrams.programming.language.Scala** + +Swift +**diagrams.programming.language.Swift** + +Typescript +**diagrams.programming.language.Typescript**, **TypeScript** (alias) + +## programming.runtime + + +Dapr +**diagrams.programming.runtime.Dapr** diff --git a/docs/nodes/saas.md b/docs/nodes/saas.md index 146e93ca..68bdeea9 100644 --- a/docs/nodes/saas.md +++ b/docs/nodes/saas.md @@ -3,57 +3,136 @@ id: saas title: Saas --- -Node classes list of saas provider. +Node classes list of the saas provider. ## saas.alerting -- **diagrams.saas.alerting.Newrelic** -- **diagrams.saas.alerting.Opsgenie** -- **diagrams.saas.alerting.Pushover** + +Newrelic +**diagrams.saas.alerting.Newrelic** + +Opsgenie +**diagrams.saas.alerting.Opsgenie** + +Pagerduty +**diagrams.saas.alerting.Pagerduty** + +Pushover +**diagrams.saas.alerting.Pushover** + +Xmatters +**diagrams.saas.alerting.Xmatters** ## saas.analytics -- **diagrams.saas.analytics.Snowflake** -- **diagrams.saas.analytics.Stitch** + +Dataform +**diagrams.saas.analytics.Dataform** + +Snowflake +**diagrams.saas.analytics.Snowflake** + +Stitch +**diagrams.saas.analytics.Stitch** ## saas.cdn -- **diagrams.saas.cdn.Akamai** -- **diagrams.saas.cdn.Cloudflare** + +Akamai +**diagrams.saas.cdn.Akamai** + +Cloudflare +**diagrams.saas.cdn.Cloudflare** + +Fastly +**diagrams.saas.cdn.Fastly** ## saas.chat -- **diagrams.saas.chat.Discord** -- **diagrams.saas.chat.Mattermost** -- **diagrams.saas.chat.RocketChat** -- **diagrams.saas.chat.Slack** -- **diagrams.saas.chat.Teams** -- **diagrams.saas.chat.Telegram** + +Discord +**diagrams.saas.chat.Discord** + +Line +**diagrams.saas.chat.Line** + +Mattermost +**diagrams.saas.chat.Mattermost** + +Messenger +**diagrams.saas.chat.Messenger** + +RocketChat +**diagrams.saas.chat.RocketChat** + +Slack +**diagrams.saas.chat.Slack** + +Teams +**diagrams.saas.chat.Teams** + +Telegram +**diagrams.saas.chat.Telegram** + +## saas.communication + + +Twilio +**diagrams.saas.communication.Twilio** ## saas.filesharing -- **diagrams.saas.filesharing.Nextcloud** + +Nextcloud +**diagrams.saas.filesharing.Nextcloud** ## saas.identity -- **diagrams.saas.identity.Auth0** -- **diagrams.saas.identity.Okta** + +Auth0 +**diagrams.saas.identity.Auth0** + +Okta +**diagrams.saas.identity.Okta** ## saas.logging -- **diagrams.saas.logging.Datadog**, **DataDog** (alias) -- **diagrams.saas.logging.Newrelic**, **NewRelic** (alias) -- **diagrams.saas.logging.Papertrail** + +Datadog +**diagrams.saas.logging.Datadog**, **DataDog** (alias) + +Newrelic +**diagrams.saas.logging.Newrelic**, **NewRelic** (alias) + +Papertrail +**diagrams.saas.logging.Papertrail** ## saas.media -- **diagrams.saas.media.Cloudinary** + +Cloudinary +**diagrams.saas.media.Cloudinary** ## saas.recommendation -- **diagrams.saas.recommendation.Recombee** + +Recombee +**diagrams.saas.recommendation.Recombee** + +## saas.security + + +Scrowdstrike +**diagrams.saas.security.Scrowdstrike** + +Sonarqube +**diagrams.saas.security.Sonarqube** ## saas.social -- **diagrams.saas.social.Facebook** -- **diagrams.saas.social.Twitter** + +Facebook +**diagrams.saas.social.Facebook** + +Twitter +**diagrams.saas.social.Twitter** diff --git a/poetry.lock b/poetry.lock index 7aba1d89..02f04d8d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,583 +1,448 @@ -[[package]] -name = "appdirs" -version = "1.4.3" -description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -category = "dev" -optional = false -python-versions = "*" +# This file is automatically @generated by Poetry 1.8.4 and should not be changed by hand. [[package]] name = "astroid" -version = "2.5" +version = "3.2.4" description = "An abstract syntax tree for Python with inference support." -category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8.0" +files = [ + {file = "astroid-3.2.4-py3-none-any.whl", hash = "sha256:413658a61eeca6202a59231abb473f932038fbcbf1666587f66d482083413a25"}, + {file = "astroid-3.2.4.tar.gz", hash = "sha256:0e14202810b30da1b735827f78f5157be2bbd4a7a59b7707ca0bfc2fb4c0063a"}, +] [package.dependencies] -lazy-object-proxy = ">=1.4.0" -typed-ast = {version = ">=1.4.0,<1.5", markers = "implementation_name == \"cpython\" and python_version < \"3.8\""} -wrapt = ">=1.11,<1.13" - -[[package]] -name = "atomicwrites" -version = "1.3.0" -description = "Atomic file writes." -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[[package]] -name = "attrs" -version = "19.3.0" -description = "Classes Without Boilerplate" -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[package.extras] -azure-pipelines = ["coverage", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "zope.interface", "pytest-azurepipelines"] -dev = ["coverage", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "zope.interface", "sphinx", "pre-commit"] -docs = ["sphinx", "zope.interface"] -tests = ["coverage", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "zope.interface"] +typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""} [[package]] name = "black" -version = "19.10b0" +version = "24.8.0" description = "The uncompromising code formatter." -category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" +files = [ + {file = "black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6"}, + {file = "black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb"}, + {file = "black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42"}, + {file = "black-24.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a"}, + {file = "black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1"}, + {file = "black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af"}, + {file = "black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4"}, + {file = "black-24.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af"}, + {file = "black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368"}, + {file = "black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed"}, + {file = "black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018"}, + {file = "black-24.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2"}, + {file = "black-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:505289f17ceda596658ae81b61ebbe2d9b25aa78067035184ed0a9d855d18afd"}, + {file = "black-24.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b19c9ad992c7883ad84c9b22aaa73562a16b819c1d8db7a1a1a49fb7ec13c7d2"}, + {file = "black-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1f13f7f386f86f8121d76599114bb8c17b69d962137fc70efe56137727c7047e"}, + {file = "black-24.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:f490dbd59680d809ca31efdae20e634f3fae27fba3ce0ba3208333b713bc3920"}, + {file = "black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c"}, + {file = "black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e"}, + {file = "black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47"}, + {file = "black-24.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb"}, + {file = "black-24.8.0-py3-none-any.whl", hash = "sha256:972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed"}, + {file = "black-24.8.0.tar.gz", hash = "sha256:2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f"}, +] [package.dependencies] -appdirs = "*" -attrs = ">=18.1.0" -click = ">=6.5" -pathspec = ">=0.6,<1" -regex = "*" -toml = ">=0.9.4" -typed-ast = ">=1.4.0" +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} [package.extras] -d = ["aiohttp (>=3.3.2)", "aiohttp-cors"] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)", "aiohttp (>=3.7.4,!=3.9.0)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] [[package]] name = "click" -version = "7.0" +version = "8.1.7" description = "Composable command line interface toolkit" -category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "colorama" -version = "0.4.3" +version = "0.4.6" description = "Cross-platform colored terminal text." -category = "dev" 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" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] [[package]] -name = "contextvars" -version = "2.4" -description = "PEP 567 Backport" -category = "main" +name = "dill" +version = "0.3.9" +description = "serialize all of Python" optional = false -python-versions = "*" +python-versions = ">=3.8" +files = [ + {file = "dill-0.3.9-py3-none-any.whl", hash = "sha256:468dff3b89520b474c0397703366b7b95eebe6303f108adf9b19da1f702be87a"}, + {file = "dill-0.3.9.tar.gz", hash = "sha256:81aa267dddf68cbfe8029c42ca9ec6a4ab3b22371d1c450abc54422577b4512c"}, +] -[package.dependencies] -immutables = ">=0.9" +[package.extras] +graph = ["objgraph (>=1.7.2)"] +profile = ["gprof2dot (>=2022.7.29)"] [[package]] -name = "graphviz" -version = "0.16" -description = "Simple Python interface for Graphviz" -category = "main" +name = "exceptiongroup" +version = "1.2.2" +description = "Backport of PEP 654 (exception groups)" optional = false -python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*" +python-versions = ">=3.7" +files = [ + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, +] [package.extras] -dev = ["tox (>=3)", "flake8", "pep8-naming", "wheel", "twine"] -docs = ["sphinx (>=1.8)", "sphinx-rtd-theme"] -test = ["mock (>=3)", "pytest (>=4)", "pytest-mock (>=2)", "pytest-cov"] - -[[package]] -name = "immutables" -version = "0.11" -description = "Immutable Collections" -category = "main" -optional = false -python-versions = "*" +test = ["pytest (>=6)"] [[package]] -name = "importlib-metadata" -version = "1.5.0" -description = "Read metadata from Python packages" -category = "dev" +name = "graphviz" +version = "0.20.3" +description = "Simple Python interface for Graphviz" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" - -[package.dependencies] -zipp = ">=0.5" +python-versions = ">=3.8" +files = [ + {file = "graphviz-0.20.3-py3-none-any.whl", hash = "sha256:81f848f2904515d8cd359cc611faba817598d2feaac4027b266aa3eda7b3dde5"}, + {file = "graphviz-0.20.3.zip", hash = "sha256:09d6bc81e6a9fa392e7ba52135a9d49f1ed62526f96499325930e87ca1b5925d"}, +] [package.extras] -docs = ["sphinx", "rst.linker"] -testing = ["packaging", "importlib-resources"] +dev = ["flake8", "pep8-naming", "tox (>=3)", "twine", "wheel"] +docs = ["sphinx (>=5,<7)", "sphinx-autodoc-typehints", "sphinx-rtd-theme"] +test = ["coverage", "pytest (>=7,<8.1)", "pytest-cov", "pytest-mock (>=3)"] [[package]] name = "iniconfig" -version = "1.1.1" -description = "iniconfig: brain-dead simple config-ini parsing" -category = "dev" +version = "2.0.0" +description = "brain-dead simple config-ini parsing" optional = false -python-versions = "*" +python-versions = ">=3.7" +files = [ + {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, + {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, +] [[package]] name = "isort" -version = "4.3.21" +version = "5.13.2" description = "A Python utility / library to sort Python imports." -category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.8.0" +files = [ + {file = "isort-5.13.2-py3-none-any.whl", hash = "sha256:8ca5e72a8d85860d5a3fa69b8745237f2939afe12dbf656afbcb47fe72d947a6"}, + {file = "isort-5.13.2.tar.gz", hash = "sha256:48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109"}, +] [package.extras] -pipfile = ["pipreqs", "requirementslib"] -pyproject = ["toml"] -requirements = ["pipreqs", "pip-api"] -xdg_home = ["appdirs (>=1.4.0)"] +colors = ["colorama (>=0.4.6)"] [[package]] name = "jinja2" -version = "2.11.3" +version = "3.1.4" description = "A very fast and expressive template engine." -category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.7" +files = [ + {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, + {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, +] [package.dependencies] -MarkupSafe = ">=0.23" +MarkupSafe = ">=2.0" [package.extras] -i18n = ["Babel (>=0.8)"] - -[[package]] -name = "lazy-object-proxy" -version = "1.4.3" -description = "A fast and thorough lazy object proxy." -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +i18n = ["Babel (>=2.7)"] [[package]] name = "markupsafe" -version = "1.1.1" +version = "2.1.5" description = "Safely add untrusted strings to HTML/XML markup." -category = "main" optional = false -python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*" +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, + {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, +] [[package]] name = "mccabe" -version = "0.6.1" +version = "0.7.0" description = "McCabe checker, plugin for flake8" -category = "dev" optional = false -python-versions = "*" +python-versions = ">=3.6" +files = [ + {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"}, + {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] [[package]] name = "packaging" -version = "20.8" +version = "24.1" description = "Core utilities for Python packages" -category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[package.dependencies] -pyparsing = ">=2.0.2" +python-versions = ">=3.8" +files = [ + {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, + {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, +] [[package]] name = "pathspec" -version = "0.7.0" +version = "0.12.1" description = "Utility library for gitignore style pattern matching of file paths." -category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.8" +files = [ + {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, + {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, +] [[package]] -name = "pluggy" -version = "0.13.1" -description = "plugin and hook calling mechanisms for python" -category = "dev" +name = "platformdirs" +version = "4.3.6" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[package.dependencies] -importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} +python-versions = ">=3.8" +files = [ + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, +] [package.extras] -dev = ["pre-commit", "tox"] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] [[package]] -name = "py" -version = "1.10.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -category = "dev" +name = "pluggy" +version = "1.5.0" +description = "plugin and hook calling mechanisms for python" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.8" +files = [ + {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, + {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, +] + +[package.extras] +dev = ["pre-commit", "tox"] +testing = ["pytest", "pytest-benchmark"] [[package]] name = "pylint" -version = "2.7.0" +version = "3.2.7" description = "python code static checker" -category = "dev" optional = false -python-versions = "~=3.6" +python-versions = ">=3.8.0" +files = [ + {file = "pylint-3.2.7-py3-none-any.whl", hash = "sha256:02f4aedeac91be69fb3b4bea997ce580a4ac68ce58b89eaefeaf06749df73f4b"}, + {file = "pylint-3.2.7.tar.gz", hash = "sha256:1b7a721b575eaeaa7d39db076b6e7743c993ea44f57979127c517c6c572c803e"}, +] [package.dependencies] -astroid = "2.5.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -isort = ">=4.2.5,<6" -mccabe = ">=0.6,<0.7" -toml = ">=0.7.1" +astroid = ">=3.2.4,<=3.3.0-dev0" +colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} +dill = [ + {version = ">=0.2", markers = "python_version < \"3.11\""}, + {version = ">=0.3.7", markers = "python_version >= \"3.12\""}, + {version = ">=0.3.6", markers = "python_version >= \"3.11\" and python_version < \"3.12\""}, +] +isort = ">=4.2.5,<5.13.0 || >5.13.0,<6" +mccabe = ">=0.6,<0.8" +platformdirs = ">=2.2.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +tomlkit = ">=0.10.1" +typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["sphinx (>=3.2,<4.0)", "python-docs-theme"] - -[[package]] -name = "pyparsing" -version = "2.4.7" -description = "Python parsing module" -category = "dev" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +spelling = ["pyenchant (>=3.2,<4.0)"] +testutils = ["gitpython (>3)"] [[package]] name = "pytest" -version = "6.2.1" +version = "8.3.3" description = "pytest: simple powerful testing with Python" -category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" +files = [ + {file = "pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2"}, + {file = "pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181"}, +] [package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" colorama = {version = "*", markers = "sys_platform == \"win32\""} -importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} +exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} iniconfig = "*" packaging = "*" -pluggy = ">=0.12,<1.0.0a1" -py = ">=1.8.2" -toml = "*" +pluggy = ">=1.5,<2" +tomli = {version = ">=1", markers = "python_version < \"3.11\""} [package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] +dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] [[package]] -name = "regex" -version = "2020.2.20" -description = "Alternative regular expression module, to replace re." -category = "dev" +name = "pytoolconfig" +version = "1.3.1" +description = "Python tool configuration" optional = false -python-versions = "*" +python-versions = ">=3.8" +files = [ + {file = "pytoolconfig-1.3.1-py3-none-any.whl", hash = "sha256:5d8cea8ae1996938ec3eaf44567bbc5ef1bc900742190c439a44a704d6e1b62b"}, + {file = "pytoolconfig-1.3.1.tar.gz", hash = "sha256:51e6bd1a6f108238ae6aab6a65e5eed5e75d456be1c2bf29b04e5c1e7d7adbae"}, +] + +[package.dependencies] +packaging = ">=23.2" +platformdirs = {version = ">=3.11.0", optional = true, markers = "extra == \"global\""} +tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""} + +[package.extras] +doc = ["sphinx (>=7.1.2)", "tabulate (>=0.9.0)"] +gendocs = ["pytoolconfig[doc]", "sphinx (>=7.1.2)", "sphinx-autodoc-typehints (>=1.25.2)", "sphinx-rtd-theme (>=2.0.0)"] +global = ["platformdirs (>=3.11.0)"] +validation = ["pydantic (>=2.5.3)"] [[package]] name = "rope" -version = "0.14.0" +version = "1.13.0" description = "a python refactoring library..." -category = "dev" optional = false -python-versions = "*" +python-versions = ">=3.8" +files = [ + {file = "rope-1.13.0-py3-none-any.whl", hash = "sha256:b435a0c0971244fdcd8741676a9fae697ae614c20cc36003678a7782f25c0d6c"}, + {file = "rope-1.13.0.tar.gz", hash = "sha256:51437d2decc8806cd5e9dd1fd9c1306a6d9075ecaf78d191af85fc1dfface880"}, +] -[[package]] -name = "toml" -version = "0.10.0" -description = "Python Library for Tom's Obvious, Minimal Language" -category = "dev" -optional = false -python-versions = "*" +[package.dependencies] +pytoolconfig = {version = ">=1.2.2", extras = ["global"]} + +[package.extras] +dev = ["build (>=0.7.0)", "pre-commit (>=2.20.0)", "pytest (>=7.0.1)", "pytest-cov (>=4.1.0)", "pytest-timeout (>=2.1.0)"] +doc = ["pytoolconfig[doc]", "sphinx (>=4.5.0)", "sphinx-autodoc-typehints (>=1.18.1)", "sphinx-rtd-theme (>=1.0.0)"] +release = ["pip-tools (>=6.12.1)", "toml (>=0.10.2)", "twine (>=4.0.2)"] [[package]] -name = "typed-ast" -version = "1.4.1" -description = "a fork of Python 2 and 3 ast modules with type comment support" -category = "dev" +name = "tomli" +version = "2.0.2" +description = "A lil' TOML parser" optional = false -python-versions = "*" +python-versions = ">=3.8" +files = [ + {file = "tomli-2.0.2-py3-none-any.whl", hash = "sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38"}, + {file = "tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed"}, +] [[package]] -name = "wrapt" -version = "1.11.2" -description = "Module for decorators, wrappers and monkey patching." -category = "dev" +name = "tomlkit" +version = "0.13.2" +description = "Style preserving TOML library" optional = false -python-versions = "*" +python-versions = ">=3.8" +files = [ + {file = "tomlkit-0.13.2-py3-none-any.whl", hash = "sha256:7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde"}, + {file = "tomlkit-0.13.2.tar.gz", hash = "sha256:fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79"}, +] [[package]] -name = "zipp" -version = "3.1.0" -description = "Backport of pathlib-compatible object wrapper for zip files" -category = "dev" +name = "typing-extensions" +version = "4.12.2" +description = "Backported and Experimental Type Hints for Python 3.8+" optional = false -python-versions = ">=3.6" - -[package.extras] -docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"] -testing = ["jaraco.itertools", "func-timeout"] +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, + {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, +] [metadata] -lock-version = "1.1" -python-versions = "^3.6" -content-hash = "441f4ec509fbee3d303586c3abba92d71c5148600632f11c7069c709fa67774c" - -[metadata.files] -appdirs = [ - {file = "appdirs-1.4.3-py2.py3-none-any.whl", hash = "sha256:d8b24664561d0d34ddfaec54636d502d7cea6e29c3eaf68f3df6180863e2166e"}, - {file = "appdirs-1.4.3.tar.gz", hash = "sha256:9e5896d1372858f8dd3344faf4e5014d21849c756c8d5701f78f8a103b372d92"}, -] -astroid = [ - {file = "astroid-2.5-py3-none-any.whl", hash = "sha256:87ae7f2398b8a0ae5638ddecf9987f081b756e0e9fc071aeebdca525671fc4dc"}, - {file = "astroid-2.5.tar.gz", hash = "sha256:b31c92f545517dcc452f284bc9c044050862fbe6d93d2b3de4a215a6b384bf0d"}, -] -atomicwrites = [ - {file = "atomicwrites-1.3.0-py2.py3-none-any.whl", hash = "sha256:03472c30eb2c5d1ba9227e4c2ca66ab8287fbfbbda3888aa93dc2e28fc6811b4"}, - {file = "atomicwrites-1.3.0.tar.gz", hash = "sha256:75a9445bac02d8d058d5e1fe689654ba5a6556a1dfd8ce6ec55a0ed79866cfa6"}, -] -attrs = [ - {file = "attrs-19.3.0-py2.py3-none-any.whl", hash = "sha256:08a96c641c3a74e44eb59afb61a24f2cb9f4d7188748e76ba4bb5edfa3cb7d1c"}, - {file = "attrs-19.3.0.tar.gz", hash = "sha256:f7b7ce16570fe9965acd6d30101a28f62fb4a7f9e926b3bbc9b61f8b04247e72"}, -] -black = [ - {file = "black-19.10b0-py36-none-any.whl", hash = "sha256:1b30e59be925fafc1ee4565e5e08abef6b03fe455102883820fe5ee2e4734e0b"}, - {file = "black-19.10b0.tar.gz", hash = "sha256:c2edb73a08e9e0e6f65a0e6af18b059b8b1cdd5bef997d7a0b181df93dc81539"}, -] -click = [ - {file = "Click-7.0-py2.py3-none-any.whl", hash = "sha256:2335065e6395b9e67ca716de5f7526736bfa6ceead690adf616d925bdc622b13"}, - {file = "Click-7.0.tar.gz", hash = "sha256:5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7"}, -] -colorama = [ - {file = "colorama-0.4.3-py2.py3-none-any.whl", hash = "sha256:7d73d2a99753107a36ac6b455ee49046802e59d9d076ef8e47b61499fa29afff"}, - {file = "colorama-0.4.3.tar.gz", hash = "sha256:e96da0d330793e2cb9485e9ddfd918d456036c7149416295932478192f4436a1"}, -] -contextvars = [ - {file = "contextvars-2.4.tar.gz", hash = "sha256:f38c908aaa59c14335eeea12abea5f443646216c4e29380d7bf34d2018e2c39e"}, -] -graphviz = [ - {file = "graphviz-0.16-py2.py3-none-any.whl", hash = "sha256:3cad5517c961090dfc679df6402a57de62d97703e2880a1a46147bb0dc1639eb"}, - {file = "graphviz-0.16.zip", hash = "sha256:d2d25af1c199cad567ce4806f0449cb74eb30cf451fd7597251e1da099ac6e57"}, -] -immutables = [ - {file = "immutables-0.11-cp35-cp35m-macosx_10_13_x86_64.whl", hash = "sha256:bce27277a2fe91509cca69181971ab509c2ee862e8b37b09f26b64f90e8fe8fb"}, - {file = "immutables-0.11-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:c7eb2d15c35c73bb168c002c6ea145b65f40131e10dede54b39db0b72849b280"}, - {file = "immutables-0.11-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:2de2ec8dde1ca154f811776a8cbbeaea515c3b226c26036eab6484530eea28e0"}, - {file = "immutables-0.11-cp35-cp35m-win32.whl", hash = "sha256:e87bd941cb4dfa35f16e1ff4b2d99a2931452dcc9cfd788dc8fe513f3d38551e"}, - {file = "immutables-0.11-cp35-cp35m-win_amd64.whl", hash = "sha256:0aa055c745510238cbad2f1f709a37a1c9e30a38594de3b385e9876c48a25633"}, - {file = "immutables-0.11-cp36-cp36m-macosx_10_13_x86_64.whl", hash = "sha256:422c7d4c75c88057c625e32992248329507bca180b48cfb702b4ef608f581b50"}, - {file = "immutables-0.11-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:f5b93248552c9e7198558776da21c9157d3f70649905d7fdc083c2ab2fbc6088"}, - {file = "immutables-0.11-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:b268422a5802fbf934152b835329ac0d23b80b558eaee68034d45718edab4a11"}, - {file = "immutables-0.11-cp36-cp36m-win32.whl", hash = "sha256:0f07c58122e1ce70a7165e68e18e795ac5fe94d7fee3e045ffcf6432602026df"}, - {file = "immutables-0.11-cp36-cp36m-win_amd64.whl", hash = "sha256:b8fed714f1c84a3242c7184838f5e9889139a22bbdd701a182b7fdc237ca3cbb"}, - {file = "immutables-0.11-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:518f20945c1f600b618fb691922c2ab43b193f04dd2d4d2823220d0202014670"}, - {file = "immutables-0.11-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:2c536ff2bafeeff9a7865ea10a17a50f90b80b585e31396c349e8f57b0075bd4"}, - {file = "immutables-0.11-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1c2e729aab250be0de0c13fa833241a778b51390ee2650e0457d1e45b318c441"}, - {file = "immutables-0.11-cp37-cp37m-win32.whl", hash = "sha256:545186faab9237c102b8bcffd36d71f0b382174c93c501e061de239753cff694"}, - {file = "immutables-0.11-cp37-cp37m-win_amd64.whl", hash = "sha256:6b6d8d035e5888baad3db61dfb167476838a63afccecd927c365f228bb55754c"}, - {file = "immutables-0.11.tar.gz", hash = "sha256:d6850578a0dc6530ac19113cfe4ddc13903df635212d498f176fe601a8a5a4a3"}, -] -importlib-metadata = [ - {file = "importlib_metadata-1.5.0-py2.py3-none-any.whl", hash = "sha256:b97607a1a18a5100839aec1dc26a1ea17ee0d93b20b0f008d80a5a050afb200b"}, - {file = "importlib_metadata-1.5.0.tar.gz", hash = "sha256:06f5b3a99029c7134207dd882428a66992a9de2bef7c2b699b5641f9886c3302"}, -] -iniconfig = [ - {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, - {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, -] -isort = [ - {file = "isort-4.3.21-py2.py3-none-any.whl", hash = "sha256:6e811fcb295968434526407adb8796944f1988c5b65e8139058f2014cbe100fd"}, - {file = "isort-4.3.21.tar.gz", hash = "sha256:54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1"}, -] -jinja2 = [ - {file = "Jinja2-2.11.3-py2.py3-none-any.whl", hash = "sha256:03e47ad063331dd6a3f04a43eddca8a966a26ba0c5b7207a9a9e4e08f1b29419"}, - {file = "Jinja2-2.11.3.tar.gz", hash = "sha256:a6d58433de0ae800347cab1fa3043cebbabe8baa9d29e668f1c768cb87a333c6"}, -] -lazy-object-proxy = [ - {file = "lazy-object-proxy-1.4.3.tar.gz", hash = "sha256:f3900e8a5de27447acbf900b4750b0ddfd7ec1ea7fbaf11dfa911141bc522af0"}, - {file = "lazy_object_proxy-1.4.3-cp27-cp27m-macosx_10_13_x86_64.whl", hash = "sha256:a2238e9d1bb71a56cd710611a1614d1194dc10a175c1e08d75e1a7bcc250d442"}, - {file = "lazy_object_proxy-1.4.3-cp27-cp27m-win32.whl", hash = "sha256:efa1909120ce98bbb3777e8b6f92237f5d5c8ea6758efea36a473e1d38f7d3e4"}, - {file = "lazy_object_proxy-1.4.3-cp27-cp27m-win_amd64.whl", hash = "sha256:4677f594e474c91da97f489fea5b7daa17b5517190899cf213697e48d3902f5a"}, - {file = "lazy_object_proxy-1.4.3-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:0c4b206227a8097f05c4dbdd323c50edf81f15db3b8dc064d08c62d37e1a504d"}, - {file = "lazy_object_proxy-1.4.3-cp34-cp34m-manylinux1_x86_64.whl", hash = "sha256:d945239a5639b3ff35b70a88c5f2f491913eb94871780ebfabb2568bd58afc5a"}, - {file = "lazy_object_proxy-1.4.3-cp34-cp34m-win32.whl", hash = "sha256:9651375199045a358eb6741df3e02a651e0330be090b3bc79f6d0de31a80ec3e"}, - {file = "lazy_object_proxy-1.4.3-cp34-cp34m-win_amd64.whl", hash = "sha256:eba7011090323c1dadf18b3b689845fd96a61ba0a1dfbd7f24b921398affc357"}, - {file = "lazy_object_proxy-1.4.3-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:48dab84ebd4831077b150572aec802f303117c8cc5c871e182447281ebf3ac50"}, - {file = "lazy_object_proxy-1.4.3-cp35-cp35m-win32.whl", hash = "sha256:ca0a928a3ddbc5725be2dd1cf895ec0a254798915fb3a36af0964a0a4149e3db"}, - {file = "lazy_object_proxy-1.4.3-cp35-cp35m-win_amd64.whl", hash = "sha256:194d092e6f246b906e8f70884e620e459fc54db3259e60cf69a4d66c3fda3449"}, - {file = "lazy_object_proxy-1.4.3-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:97bb5884f6f1cdce0099f86b907aa41c970c3c672ac8b9c8352789e103cf3156"}, - {file = "lazy_object_proxy-1.4.3-cp36-cp36m-win32.whl", hash = "sha256:cb2c7c57005a6804ab66f106ceb8482da55f5314b7fcb06551db1edae4ad1531"}, - {file = "lazy_object_proxy-1.4.3-cp36-cp36m-win_amd64.whl", hash = "sha256:8d859b89baf8ef7f8bc6b00aa20316483d67f0b1cbf422f5b4dc56701c8f2ffb"}, - {file = "lazy_object_proxy-1.4.3-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:1be7e4c9f96948003609aa6c974ae59830a6baecc5376c25c92d7d697e684c08"}, - {file = "lazy_object_proxy-1.4.3-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:d74bb8693bf9cf75ac3b47a54d716bbb1a92648d5f781fc799347cfc95952383"}, - {file = "lazy_object_proxy-1.4.3-cp37-cp37m-win32.whl", hash = "sha256:9b15f3f4c0f35727d3a0fba4b770b3c4ebbb1fa907dbcc046a1d2799f3edd142"}, - {file = "lazy_object_proxy-1.4.3-cp37-cp37m-win_amd64.whl", hash = "sha256:9254f4358b9b541e3441b007a0ea0764b9d056afdeafc1a5569eee1cc6c1b9ea"}, - {file = "lazy_object_proxy-1.4.3-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:a6ae12d08c0bf9909ce12385803a543bfe99b95fe01e752536a60af2b7797c62"}, - {file = "lazy_object_proxy-1.4.3-cp38-cp38-win32.whl", hash = "sha256:5541cada25cd173702dbd99f8e22434105456314462326f06dba3e180f203dfd"}, - {file = "lazy_object_proxy-1.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:59f79fef100b09564bc2df42ea2d8d21a64fdcda64979c0fa3db7bdaabaf6239"}, -] -markupsafe = [ - {file = "MarkupSafe-1.1.1-cp27-cp27m-macosx_10_6_intel.whl", hash = "sha256:09027a7803a62ca78792ad89403b1b7a73a01c8cb65909cd876f7fcebd79b161"}, - {file = "MarkupSafe-1.1.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e249096428b3ae81b08327a63a485ad0878de3fb939049038579ac0ef61e17e7"}, - {file = "MarkupSafe-1.1.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:500d4957e52ddc3351cabf489e79c91c17f6e0899158447047588650b5e69183"}, - {file = "MarkupSafe-1.1.1-cp27-cp27m-win32.whl", hash = "sha256:b2051432115498d3562c084a49bba65d97cf251f5a331c64a12ee7e04dacc51b"}, - {file = "MarkupSafe-1.1.1-cp27-cp27m-win_amd64.whl", hash = "sha256:98c7086708b163d425c67c7a91bad6e466bb99d797aa64f965e9d25c12111a5e"}, - {file = "MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:cd5df75523866410809ca100dc9681e301e3c27567cf498077e8551b6d20e42f"}, - {file = "MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:43a55c2930bbc139570ac2452adf3d70cdbb3cfe5912c71cdce1c2c6bbd9c5d1"}, - {file = "MarkupSafe-1.1.1-cp34-cp34m-macosx_10_6_intel.whl", hash = "sha256:1027c282dad077d0bae18be6794e6b6b8c91d58ed8a8d89a89d59693b9131db5"}, - {file = "MarkupSafe-1.1.1-cp34-cp34m-manylinux1_i686.whl", hash = "sha256:62fe6c95e3ec8a7fad637b7f3d372c15ec1caa01ab47926cfdf7a75b40e0eac1"}, - {file = "MarkupSafe-1.1.1-cp34-cp34m-manylinux1_x86_64.whl", hash = "sha256:88e5fcfb52ee7b911e8bb6d6aa2fd21fbecc674eadd44118a9cc3863f938e735"}, - {file = "MarkupSafe-1.1.1-cp34-cp34m-win32.whl", hash = "sha256:ade5e387d2ad0d7ebf59146cc00c8044acbd863725f887353a10df825fc8ae21"}, - {file = "MarkupSafe-1.1.1-cp34-cp34m-win_amd64.whl", hash = "sha256:09c4b7f37d6c648cb13f9230d847adf22f8171b1ccc4d5682398e77f40309235"}, - {file = "MarkupSafe-1.1.1-cp35-cp35m-macosx_10_6_intel.whl", hash = "sha256:79855e1c5b8da654cf486b830bd42c06e8780cea587384cf6545b7d9ac013a0b"}, - {file = "MarkupSafe-1.1.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:c8716a48d94b06bb3b2524c2b77e055fb313aeb4ea620c8dd03a105574ba704f"}, - {file = "MarkupSafe-1.1.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:7c1699dfe0cf8ff607dbdcc1e9b9af1755371f92a68f706051cc8c37d447c905"}, - {file = "MarkupSafe-1.1.1-cp35-cp35m-win32.whl", hash = "sha256:6dd73240d2af64df90aa7c4e7481e23825ea70af4b4922f8ede5b9e35f78a3b1"}, - {file = "MarkupSafe-1.1.1-cp35-cp35m-win_amd64.whl", hash = "sha256:9add70b36c5666a2ed02b43b335fe19002ee5235efd4b8a89bfcf9005bebac0d"}, - {file = "MarkupSafe-1.1.1-cp36-cp36m-macosx_10_6_intel.whl", hash = "sha256:24982cc2533820871eba85ba648cd53d8623687ff11cbb805be4ff7b4c971aff"}, - {file = "MarkupSafe-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d53bc011414228441014aa71dbec320c66468c1030aae3a6e29778a3382d96e5"}, - {file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:00bc623926325b26bb9605ae9eae8a215691f33cae5df11ca5424f06f2d1f473"}, - {file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:717ba8fe3ae9cc0006d7c451f0bb265ee07739daf76355d06366154ee68d221e"}, - {file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:3b8a6499709d29c2e2399569d96719a1b21dcd94410a586a18526b143ec8470f"}, - {file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:84dee80c15f1b560d55bcfe6d47b27d070b4681c699c572af2e3c7cc90a3b8e0"}, - {file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:b1dba4527182c95a0db8b6060cc98ac49b9e2f5e64320e2b56e47cb2831978c7"}, - {file = "MarkupSafe-1.1.1-cp36-cp36m-win32.whl", hash = "sha256:535f6fc4d397c1563d08b88e485c3496cf5784e927af890fb3c3aac7f933ec66"}, - {file = "MarkupSafe-1.1.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b1282f8c00509d99fef04d8ba936b156d419be841854fe901d8ae224c59f0be5"}, - {file = "MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl", hash = "sha256:8defac2f2ccd6805ebf65f5eeb132adcf2ab57aa11fdf4c0dd5169a004710e7d"}, - {file = "MarkupSafe-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:bf5aa3cbcfdf57fa2ee9cd1822c862ef23037f5c832ad09cfea57fa846dec193"}, - {file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:46c99d2de99945ec5cb54f23c8cd5689f6d7177305ebff350a58ce5f8de1669e"}, - {file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:ba59edeaa2fc6114428f1637ffff42da1e311e29382d81b339c1817d37ec93c6"}, - {file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:6fffc775d90dcc9aed1b89219549b329a9250d918fd0b8fa8d93d154918422e1"}, - {file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:a6a744282b7718a2a62d2ed9d993cad6f5f585605ad352c11de459f4108df0a1"}, - {file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:195d7d2c4fbb0ee8139a6cf67194f3973a6b3042d742ebe0a9ed36d8b6f0c07f"}, - {file = "MarkupSafe-1.1.1-cp37-cp37m-win32.whl", hash = "sha256:b00c1de48212e4cc9603895652c5c410df699856a2853135b3967591e4beebc2"}, - {file = "MarkupSafe-1.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:9bf40443012702a1d2070043cb6291650a0841ece432556f784f004937f0f32c"}, - {file = "MarkupSafe-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6788b695d50a51edb699cb55e35487e430fa21f1ed838122d722e0ff0ac5ba15"}, - {file = "MarkupSafe-1.1.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:cdb132fc825c38e1aeec2c8aa9338310d29d337bebbd7baa06889d09a60a1fa2"}, - {file = "MarkupSafe-1.1.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:13d3144e1e340870b25e7b10b98d779608c02016d5184cfb9927a9f10c689f42"}, - {file = "MarkupSafe-1.1.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:acf08ac40292838b3cbbb06cfe9b2cb9ec78fce8baca31ddb87aaac2e2dc3bc2"}, - {file = "MarkupSafe-1.1.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:d9be0ba6c527163cbed5e0857c451fcd092ce83947944d6c14bc95441203f032"}, - {file = "MarkupSafe-1.1.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:caabedc8323f1e93231b52fc32bdcde6db817623d33e100708d9a68e1f53b26b"}, - {file = "MarkupSafe-1.1.1-cp38-cp38-win32.whl", hash = "sha256:596510de112c685489095da617b5bcbbac7dd6384aeebeda4df6025d0256a81b"}, - {file = "MarkupSafe-1.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:e8313f01ba26fbbe36c7be1966a7b7424942f670f38e666995b88d012765b9be"}, - {file = "MarkupSafe-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d73a845f227b0bfe8a7455ee623525ee656a9e2e749e4742706d80a6065d5e2c"}, - {file = "MarkupSafe-1.1.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:98bae9582248d6cf62321dcb52aaf5d9adf0bad3b40582925ef7c7f0ed85fceb"}, - {file = "MarkupSafe-1.1.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:2beec1e0de6924ea551859edb9e7679da6e4870d32cb766240ce17e0a0ba2014"}, - {file = "MarkupSafe-1.1.1-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:7fed13866cf14bba33e7176717346713881f56d9d2bcebab207f7a036f41b850"}, - {file = "MarkupSafe-1.1.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:6f1e273a344928347c1290119b493a1f0303c52f5a5eae5f16d74f48c15d4a85"}, - {file = "MarkupSafe-1.1.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:feb7b34d6325451ef96bc0e36e1a6c0c1c64bc1fbec4b854f4529e51887b1621"}, - {file = "MarkupSafe-1.1.1-cp39-cp39-win32.whl", hash = "sha256:22c178a091fc6630d0d045bdb5992d2dfe14e3259760e713c490da5323866c39"}, - {file = "MarkupSafe-1.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:b7d644ddb4dbd407d31ffb699f1d140bc35478da613b441c582aeb7c43838dd8"}, - {file = "MarkupSafe-1.1.1.tar.gz", hash = "sha256:29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b"}, -] -mccabe = [ - {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"}, - {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, -] -packaging = [ - {file = "packaging-20.8-py2.py3-none-any.whl", hash = "sha256:24e0da08660a87484d1602c30bb4902d74816b6985b93de36926f5bc95741858"}, - {file = "packaging-20.8.tar.gz", hash = "sha256:78598185a7008a470d64526a8059de9aaa449238f280fc9eb6b13ba6c4109093"}, -] -pathspec = [ - {file = "pathspec-0.7.0-py2.py3-none-any.whl", hash = "sha256:163b0632d4e31cef212976cf57b43d9fd6b0bac6e67c26015d611a647d5e7424"}, - {file = "pathspec-0.7.0.tar.gz", hash = "sha256:562aa70af2e0d434367d9790ad37aed893de47f1693e4201fd1d3dca15d19b96"}, -] -pluggy = [ - {file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"}, - {file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"}, -] -py = [ - {file = "py-1.10.0-py2.py3-none-any.whl", hash = "sha256:3b80836aa6d1feeaa108e046da6423ab8f6ceda6468545ae8d02d9d58d18818a"}, - {file = "py-1.10.0.tar.gz", hash = "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3"}, -] -pylint = [ - {file = "pylint-2.7.0-py3-none-any.whl", hash = "sha256:3ea3926700db399765db1faf53860f11e4e981a090646e9eacd01ca78e020579"}, - {file = "pylint-2.7.0.tar.gz", hash = "sha256:2e0c6749d809985e4f181c336a8f89b2b797340d8049160bf95f35a3f0ecf6fc"}, -] -pyparsing = [ - {file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"}, - {file = "pyparsing-2.4.7.tar.gz", hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1"}, -] -pytest = [ - {file = "pytest-6.2.1-py3-none-any.whl", hash = "sha256:1969f797a1a0dbd8ccf0fecc80262312729afea9c17f1d70ebf85c5e76c6f7c8"}, - {file = "pytest-6.2.1.tar.gz", hash = "sha256:66e419b1899bc27346cb2c993e12c5e5e8daba9073c1fbce33b9807abc95c306"}, -] -regex = [ - {file = "regex-2020.2.20-cp27-cp27m-win32.whl", hash = "sha256:99272d6b6a68c7ae4391908fc15f6b8c9a6c345a46b632d7fdb7ef6c883a2bbb"}, - {file = "regex-2020.2.20-cp27-cp27m-win_amd64.whl", hash = "sha256:974535648f31c2b712a6b2595969f8ab370834080e00ab24e5dbb9d19b8bfb74"}, - {file = "regex-2020.2.20-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:5de40649d4f88a15c9489ed37f88f053c15400257eeb18425ac7ed0a4e119400"}, - {file = "regex-2020.2.20-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:82469a0c1330a4beb3d42568f82dffa32226ced006e0b063719468dcd40ffdf0"}, - {file = "regex-2020.2.20-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:d58a4fa7910102500722defbde6e2816b0372a4fcc85c7e239323767c74f5cbc"}, - {file = "regex-2020.2.20-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:f1ac2dc65105a53c1c2d72b1d3e98c2464a133b4067a51a3d2477b28449709a0"}, - {file = "regex-2020.2.20-cp36-cp36m-win32.whl", hash = "sha256:8c2b7fa4d72781577ac45ab658da44c7518e6d96e2a50d04ecb0fd8f28b21d69"}, - {file = "regex-2020.2.20-cp36-cp36m-win_amd64.whl", hash = "sha256:269f0c5ff23639316b29f31df199f401e4cb87529eafff0c76828071635d417b"}, - {file = "regex-2020.2.20-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:bed7986547ce54d230fd8721aba6fd19459cdc6d315497b98686d0416efaff4e"}, - {file = "regex-2020.2.20-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:046e83a8b160aff37e7034139a336b660b01dbfe58706f9d73f5cdc6b3460242"}, - {file = "regex-2020.2.20-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:b33ebcd0222c1d77e61dbcd04a9fd139359bded86803063d3d2d197b796c63ce"}, - {file = "regex-2020.2.20-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:bba52d72e16a554d1894a0cc74041da50eea99a8483e591a9edf1025a66843ab"}, - {file = "regex-2020.2.20-cp37-cp37m-win32.whl", hash = "sha256:01b2d70cbaed11f72e57c1cfbaca71b02e3b98f739ce33f5f26f71859ad90431"}, - {file = "regex-2020.2.20-cp37-cp37m-win_amd64.whl", hash = "sha256:113309e819634f499d0006f6200700c8209a2a8bf6bd1bdc863a4d9d6776a5d1"}, - {file = "regex-2020.2.20-cp38-cp38-manylinux1_i686.whl", hash = "sha256:25f4ce26b68425b80a233ce7b6218743c71cf7297dbe02feab1d711a2bf90045"}, - {file = "regex-2020.2.20-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:9b64a4cc825ec4df262050c17e18f60252cdd94742b4ba1286bcfe481f1c0f26"}, - {file = "regex-2020.2.20-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:9ff16d994309b26a1cdf666a6309c1ef51ad4f72f99d3392bcd7b7139577a1f2"}, - {file = "regex-2020.2.20-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:c7f58a0e0e13fb44623b65b01052dae8e820ed9b8b654bb6296bc9c41f571b70"}, - {file = "regex-2020.2.20-cp38-cp38-win32.whl", hash = "sha256:200539b5124bc4721247a823a47d116a7a23e62cc6695744e3eb5454a8888e6d"}, - {file = "regex-2020.2.20-cp38-cp38-win_amd64.whl", hash = "sha256:7f78f963e62a61e294adb6ff5db901b629ef78cb2a1cfce3cf4eeba80c1c67aa"}, - {file = "regex-2020.2.20.tar.gz", hash = "sha256:9e9624440d754733eddbcd4614378c18713d2d9d0dc647cf9c72f64e39671be5"}, -] -rope = [ - {file = "rope-0.14.0-py2-none-any.whl", hash = "sha256:6b728fdc3e98a83446c27a91fc5d56808a004f8beab7a31ab1d7224cecc7d969"}, - {file = "rope-0.14.0-py3-none-any.whl", hash = "sha256:f0dcf719b63200d492b85535ebe5ea9b29e0d0b8aebeb87fe03fc1a65924fdaf"}, - {file = "rope-0.14.0.tar.gz", hash = "sha256:c5c5a6a87f7b1a2095fb311135e2a3d1f194f5ecb96900fdd0a9100881f48aaf"}, -] -toml = [ - {file = "toml-0.10.0-py2.7.egg", hash = "sha256:f1db651f9657708513243e61e6cc67d101a39bad662eaa9b5546f789338e07a3"}, - {file = "toml-0.10.0-py2.py3-none-any.whl", hash = "sha256:235682dd292d5899d361a811df37e04a8828a5b1da3115886b73cf81ebc9100e"}, - {file = "toml-0.10.0.tar.gz", hash = "sha256:229f81c57791a41d65e399fc06bf0848bab550a9dfd5ed66df18ce5f05e73d5c"}, -] -typed-ast = [ - {file = "typed_ast-1.4.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:73d785a950fc82dd2a25897d525d003f6378d1cb23ab305578394694202a58c3"}, - {file = "typed_ast-1.4.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:aaee9905aee35ba5905cfb3c62f3e83b3bec7b39413f0a7f19be4e547ea01ebb"}, - {file = "typed_ast-1.4.1-cp35-cp35m-win32.whl", hash = "sha256:0c2c07682d61a629b68433afb159376e24e5b2fd4641d35424e462169c0a7919"}, - {file = "typed_ast-1.4.1-cp35-cp35m-win_amd64.whl", hash = "sha256:4083861b0aa07990b619bd7ddc365eb7fa4b817e99cf5f8d9cf21a42780f6e01"}, - {file = "typed_ast-1.4.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:269151951236b0f9a6f04015a9004084a5ab0d5f19b57de779f908621e7d8b75"}, - {file = "typed_ast-1.4.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:24995c843eb0ad11a4527b026b4dde3da70e1f2d8806c99b7b4a7cf491612652"}, - {file = "typed_ast-1.4.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:fe460b922ec15dd205595c9b5b99e2f056fd98ae8f9f56b888e7a17dc2b757e7"}, - {file = "typed_ast-1.4.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:fcf135e17cc74dbfbc05894ebca928ffeb23d9790b3167a674921db19082401f"}, - {file = "typed_ast-1.4.1-cp36-cp36m-win32.whl", hash = "sha256:4e3e5da80ccbebfff202a67bf900d081906c358ccc3d5e3c8aea42fdfdfd51c1"}, - {file = "typed_ast-1.4.1-cp36-cp36m-win_amd64.whl", hash = "sha256:249862707802d40f7f29f6e1aad8d84b5aa9e44552d2cc17384b209f091276aa"}, - {file = "typed_ast-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8ce678dbaf790dbdb3eba24056d5364fb45944f33553dd5869b7580cdbb83614"}, - {file = "typed_ast-1.4.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:c9e348e02e4d2b4a8b2eedb48210430658df6951fa484e59de33ff773fbd4b41"}, - {file = "typed_ast-1.4.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:bcd3b13b56ea479b3650b82cabd6b5343a625b0ced5429e4ccad28a8973f301b"}, - {file = "typed_ast-1.4.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:f208eb7aff048f6bea9586e61af041ddf7f9ade7caed625742af423f6bae3298"}, - {file = "typed_ast-1.4.1-cp37-cp37m-win32.whl", hash = "sha256:d5d33e9e7af3b34a40dc05f498939f0ebf187f07c385fd58d591c533ad8562fe"}, - {file = "typed_ast-1.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:0666aa36131496aed8f7be0410ff974562ab7eeac11ef351def9ea6fa28f6355"}, - {file = "typed_ast-1.4.1-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:d205b1b46085271b4e15f670058ce182bd1199e56b317bf2ec004b6a44f911f6"}, - {file = "typed_ast-1.4.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:6daac9731f172c2a22ade6ed0c00197ee7cc1221aa84cfdf9c31defeb059a907"}, - {file = "typed_ast-1.4.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:498b0f36cc7054c1fead3d7fc59d2150f4d5c6c56ba7fb150c013fbc683a8d2d"}, - {file = "typed_ast-1.4.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:7e4c9d7658aaa1fc80018593abdf8598bf91325af6af5cce4ce7c73bc45ea53d"}, - {file = "typed_ast-1.4.1-cp38-cp38-win32.whl", hash = "sha256:715ff2f2df46121071622063fc7543d9b1fd19ebfc4f5c8895af64a77a8c852c"}, - {file = "typed_ast-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc0fea399acb12edbf8a628ba8d2312f583bdbdb3335635db062fa98cf71fca4"}, - {file = "typed_ast-1.4.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:d43943ef777f9a1c42bf4e552ba23ac77a6351de620aa9acf64ad54933ad4d34"}, - {file = "typed_ast-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:92c325624e304ebf0e025d1224b77dd4e6393f18aab8d829b5b7e04afe9b7a2c"}, - {file = "typed_ast-1.4.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:d648b8e3bf2fe648745c8ffcee3db3ff903d0817a01a12dd6a6ea7a8f4889072"}, - {file = "typed_ast-1.4.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:fac11badff8313e23717f3dada86a15389d0708275bddf766cca67a84ead3e91"}, - {file = "typed_ast-1.4.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:0d8110d78a5736e16e26213114a38ca35cb15b6515d535413b090bd50951556d"}, - {file = "typed_ast-1.4.1-cp39-cp39-win32.whl", hash = "sha256:b52ccf7cfe4ce2a1064b18594381bccf4179c2ecf7f513134ec2f993dd4ab395"}, - {file = "typed_ast-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:3742b32cf1c6ef124d57f95be609c473d7ec4c14d0090e5a5e05a15269fb4d0c"}, - {file = "typed_ast-1.4.1.tar.gz", hash = "sha256:8c8aaad94455178e3187ab22c8b01a3837f8ee50e09cf31f1ba129eb293ec30b"}, -] -wrapt = [ - {file = "wrapt-1.11.2.tar.gz", hash = "sha256:565a021fd19419476b9362b05eeaa094178de64f8361e44468f9e9d7843901e1"}, -] -zipp = [ - {file = "zipp-3.1.0-py3-none-any.whl", hash = "sha256:aa36550ff0c0b7ef7fa639055d797116ee891440eac1a56f378e2d3179e0320b"}, - {file = "zipp-3.1.0.tar.gz", hash = "sha256:c599e4d75c98f6798c509911d08a22e6c021d074469042177c8c86fb92eefd96"}, -] +lock-version = "2.0" +python-versions = "^3.8" +content-hash = "03a0a3902229c2c740ab7cea26e79fa78d81d5faa90d35973ff5174b95be3abc" diff --git a/pyproject.toml b/pyproject.toml index 2c93a392..46957ee1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "diagrams" -version = "0.19.1" +version = "0.24.1" description = "Diagram as Code" license = "MIT" authors = ["mingrammer "] @@ -9,18 +9,21 @@ homepage = "https://diagrams.mingrammer.com" repository = "https://github.com/mingrammer/diagrams" include = ["resources/**/*"] +[tool.poetry.scripts] +diagrams="diagrams.cli:main" + [tool.poetry.dependencies] -python = "^3.6" -graphviz = ">=0.13.2,<0.17.0" -jinja2 = "^2.10" -contextvars = { version = "^2.4", python = "~3.6" } +python = "^3.8" +graphviz = ">=0.13.2,<0.21.0" +jinja2 = ">=2.10,<4.0" +typed-ast = {version="^1.5.5", markers="python_version<'3.8'"} [tool.poetry.dev-dependencies] -pytest = "^6.2" -pylint = "^2.7" -black = {version = "^19.0", allow-prereleases = true} -rope = "^0.14.0" -isort = "^4.3" +pytest = "^8.2" +pylint = "^3.2" +rope = "^1.13" +isort = "^5.13" +black = "^24.4" [tool.black] -line-length = 120 +line-length=120 \ No newline at end of file diff --git a/resources/aws/analytics/amazon-opensearch-service.png b/resources/aws/analytics/amazon-opensearch-service.png new file mode 100644 index 00000000..e1d5a6a7 Binary files /dev/null and b/resources/aws/analytics/amazon-opensearch-service.png differ diff --git a/resources/aws/compute/app-runner.png b/resources/aws/compute/app-runner.png new file mode 100644 index 00000000..c8448bc5 Binary files /dev/null and b/resources/aws/compute/app-runner.png differ diff --git a/resources/aws/devtools/codeartifact.png b/resources/aws/devtools/codeartifact.png new file mode 100644 index 00000000..7c4f3f49 Binary files /dev/null and b/resources/aws/devtools/codeartifact.png differ diff --git a/resources/aws/general/Internet-gateway.png b/resources/aws/general/internet-gateway.png similarity index 100% rename from resources/aws/general/Internet-gateway.png rename to resources/aws/general/internet-gateway.png diff --git a/resources/aws/management/amazon-devops-guru.png b/resources/aws/management/amazon-devops-guru.png new file mode 100644 index 00000000..f9129c19 Binary files /dev/null and b/resources/aws/management/amazon-devops-guru.png differ diff --git a/resources/aws/management/amazon-managed-grafana.png b/resources/aws/management/amazon-managed-grafana.png new file mode 100644 index 00000000..ba44d709 Binary files /dev/null and b/resources/aws/management/amazon-managed-grafana.png differ diff --git a/resources/aws/management/amazon-managed-prometheus.png b/resources/aws/management/amazon-managed-prometheus.png new file mode 100644 index 00000000..0cca0377 Binary files /dev/null and b/resources/aws/management/amazon-managed-prometheus.png differ diff --git a/resources/aws/management/amazon-managed-workflows-apache-airflow.png b/resources/aws/management/amazon-managed-workflows-apache-airflow.png new file mode 100644 index 00000000..1b584247 Binary files /dev/null and b/resources/aws/management/amazon-managed-workflows-apache-airflow.png differ diff --git a/resources/aws/management/chatbot.png b/resources/aws/management/chatbot.png new file mode 100644 index 00000000..4e6e0a32 Binary files /dev/null and b/resources/aws/management/chatbot.png differ diff --git a/resources/aws/management/proton.png b/resources/aws/management/proton.png new file mode 100644 index 00000000..619191ce Binary files /dev/null and b/resources/aws/management/proton.png differ diff --git a/resources/aws/management/systems-manager-app-config.png b/resources/aws/management/systems-manager-app-config.png new file mode 100644 index 00000000..a6087e58 Binary files /dev/null and b/resources/aws/management/systems-manager-app-config.png differ diff --git a/resources/aws/network/network-firewall.png b/resources/aws/network/network-firewall.png new file mode 100644 index 00000000..7535c287 Binary files /dev/null and b/resources/aws/network/network-firewall.png differ diff --git a/resources/aws/network/transit-gateway-attachment.png b/resources/aws/network/transit-gateway-attachment.png new file mode 100644 index 00000000..1e3fdaed Binary files /dev/null and b/resources/aws/network/transit-gateway-attachment.png differ diff --git a/resources/azure/analytics/analysis-services.png b/resources/azure/analytics/analysis-services.png index ae5627dc..efa3daff 100644 Binary files a/resources/azure/analytics/analysis-services.png and b/resources/azure/analytics/analysis-services.png differ diff --git a/resources/azure/analytics/data-lake-store-gen1.png b/resources/azure/analytics/data-lake-store-gen1.png index b8881b0b..6e861246 100644 Binary files a/resources/azure/analytics/data-lake-store-gen1.png and b/resources/azure/analytics/data-lake-store-gen1.png differ diff --git a/resources/azure/analytics/databricks.png b/resources/azure/analytics/databricks.png index 5842e283..42cacf60 100644 Binary files a/resources/azure/analytics/databricks.png and b/resources/azure/analytics/databricks.png differ diff --git a/resources/azure/analytics/event-hub-clusters.png b/resources/azure/analytics/event-hub-clusters.png index dd7e9a9b..dde0c68d 100644 Binary files a/resources/azure/analytics/event-hub-clusters.png and b/resources/azure/analytics/event-hub-clusters.png differ diff --git a/resources/azure/analytics/event-hubs.png b/resources/azure/analytics/event-hubs.png index 567526b2..2677ee0a 100644 Binary files a/resources/azure/analytics/event-hubs.png and b/resources/azure/analytics/event-hubs.png differ diff --git a/resources/azure/analytics/hdinsightclusters.png b/resources/azure/analytics/hdinsightclusters.png index 5d382b16..42fc1d14 100644 Binary files a/resources/azure/analytics/hdinsightclusters.png and b/resources/azure/analytics/hdinsightclusters.png differ diff --git a/resources/azure/analytics/log-analytics-workspaces.png b/resources/azure/analytics/log-analytics-workspaces.png index 01001212..d3f462ad 100644 Binary files a/resources/azure/analytics/log-analytics-workspaces.png and b/resources/azure/analytics/log-analytics-workspaces.png differ diff --git a/resources/azure/analytics/stream-analytics-jobs.png b/resources/azure/analytics/stream-analytics-jobs.png index fb957eee..a9fceb32 100644 Binary files a/resources/azure/analytics/stream-analytics-jobs.png and b/resources/azure/analytics/stream-analytics-jobs.png differ diff --git a/resources/azure/analytics/synapse-analytics.png b/resources/azure/analytics/synapse-analytics.png new file mode 100644 index 00000000..7966c325 Binary files /dev/null and b/resources/azure/analytics/synapse-analytics.png differ diff --git a/resources/azure/compute/app-services.png b/resources/azure/compute/app-services.png new file mode 100644 index 00000000..f7ca7fb0 Binary files /dev/null and b/resources/azure/compute/app-services.png differ diff --git a/resources/azure/compute/automanaged-vm.png b/resources/azure/compute/automanaged-vm.png new file mode 100644 index 00000000..ec8365b5 Binary files /dev/null and b/resources/azure/compute/automanaged-vm.png differ diff --git a/resources/azure/compute/availability-sets.png b/resources/azure/compute/availability-sets.png index 57664dd2..988e9a6c 100644 Binary files a/resources/azure/compute/availability-sets.png and b/resources/azure/compute/availability-sets.png differ diff --git a/resources/azure/compute/batch-accounts.png b/resources/azure/compute/batch-accounts.png index c3afcc09..8f41434e 100644 Binary files a/resources/azure/compute/batch-accounts.png and b/resources/azure/compute/batch-accounts.png differ diff --git a/resources/azure/compute/cloud-services-classic.png b/resources/azure/compute/cloud-services-classic.png index 4a784eb7..c3fa4d1b 100644 Binary files a/resources/azure/compute/cloud-services-classic.png and b/resources/azure/compute/cloud-services-classic.png differ diff --git a/resources/azure/compute/container-apps.png b/resources/azure/compute/container-apps.png new file mode 100755 index 00000000..b36d9165 Binary files /dev/null and b/resources/azure/compute/container-apps.png differ diff --git a/resources/azure/compute/container-instances.png b/resources/azure/compute/container-instances.png index 9ec2a8c8..6be6aacc 100644 Binary files a/resources/azure/compute/container-instances.png and b/resources/azure/compute/container-instances.png differ diff --git a/resources/azure/compute/disk-encryption-sets.png b/resources/azure/compute/disk-encryption-sets.png new file mode 100644 index 00000000..17b3126a Binary files /dev/null and b/resources/azure/compute/disk-encryption-sets.png differ diff --git a/resources/azure/compute/disk-snapshots.png b/resources/azure/compute/disk-snapshots.png index cc83dda9..b6f6b69b 100644 Binary files a/resources/azure/compute/disk-snapshots.png and b/resources/azure/compute/disk-snapshots.png differ diff --git a/resources/azure/compute/disks.png b/resources/azure/compute/disks.png index dbaab8a6..effee0b1 100644 Binary files a/resources/azure/compute/disks.png and b/resources/azure/compute/disks.png differ diff --git a/resources/azure/compute/function-apps.png b/resources/azure/compute/function-apps.png index 1a34e258..b6c7f67d 100644 Binary files a/resources/azure/compute/function-apps.png and b/resources/azure/compute/function-apps.png differ diff --git a/resources/azure/compute/image-definitions.png b/resources/azure/compute/image-definitions.png new file mode 100644 index 00000000..de6a2b3d Binary files /dev/null and b/resources/azure/compute/image-definitions.png differ diff --git a/resources/azure/compute/image-versions.png b/resources/azure/compute/image-versions.png new file mode 100644 index 00000000..b62ab430 Binary files /dev/null and b/resources/azure/compute/image-versions.png differ diff --git a/resources/azure/compute/kubernetes-services.png b/resources/azure/compute/kubernetes-services.png index a96f3598..11c37ef8 100644 Binary files a/resources/azure/compute/kubernetes-services.png and b/resources/azure/compute/kubernetes-services.png differ diff --git a/resources/azure/compute/mesh-applications.png b/resources/azure/compute/mesh-applications.png index b65ba3e7..468f4e5c 100644 Binary files a/resources/azure/compute/mesh-applications.png and b/resources/azure/compute/mesh-applications.png differ diff --git a/resources/azure/compute/os-images.png b/resources/azure/compute/os-images.png new file mode 100644 index 00000000..fbbcf8e1 Binary files /dev/null and b/resources/azure/compute/os-images.png differ diff --git a/resources/azure/compute/service-fabric-clusters.png b/resources/azure/compute/service-fabric-clusters.png index be522e37..a03a2194 100644 Binary files a/resources/azure/compute/service-fabric-clusters.png and b/resources/azure/compute/service-fabric-clusters.png differ diff --git a/resources/azure/compute/shared-image-galleries.png b/resources/azure/compute/shared-image-galleries.png new file mode 100644 index 00000000..364a0915 Binary files /dev/null and b/resources/azure/compute/shared-image-galleries.png differ diff --git a/resources/azure/compute/spring-cloud.png b/resources/azure/compute/spring-cloud.png new file mode 100644 index 00000000..58fae815 Binary files /dev/null and b/resources/azure/compute/spring-cloud.png differ diff --git a/resources/azure/compute/vm-classic.png b/resources/azure/compute/vm-classic.png index e470d3a3..70cced29 100644 Binary files a/resources/azure/compute/vm-classic.png and b/resources/azure/compute/vm-classic.png differ diff --git a/resources/azure/compute/vm-images.png b/resources/azure/compute/vm-images.png index 42ed0178..fbbcf8e1 100644 Binary files a/resources/azure/compute/vm-images.png and b/resources/azure/compute/vm-images.png differ diff --git a/resources/azure/compute/vm-scale-set.png b/resources/azure/compute/vm-scale-set.png index f69874c0..d2deec75 100644 Binary files a/resources/azure/compute/vm-scale-set.png and b/resources/azure/compute/vm-scale-set.png differ diff --git a/resources/azure/compute/vm.png b/resources/azure/compute/vm.png index 5c419476..99a05570 100644 Binary files a/resources/azure/compute/vm.png and b/resources/azure/compute/vm.png differ diff --git a/resources/azure/compute/workspaces.png b/resources/azure/compute/workspaces.png new file mode 100644 index 00000000..fa399bfb Binary files /dev/null and b/resources/azure/compute/workspaces.png differ diff --git a/resources/azure/database/cache-for-redis.png b/resources/azure/database/cache-for-redis.png index cbe96de0..c3919b2a 100644 Binary files a/resources/azure/database/cache-for-redis.png and b/resources/azure/database/cache-for-redis.png differ diff --git a/resources/azure/database/cosmos-db.png b/resources/azure/database/cosmos-db.png index bc9cdbb4..64b9796d 100644 Binary files a/resources/azure/database/cosmos-db.png and b/resources/azure/database/cosmos-db.png differ diff --git a/resources/azure/database/data-explorer-clusters.png b/resources/azure/database/data-explorer-clusters.png new file mode 100644 index 00000000..cb317abc Binary files /dev/null and b/resources/azure/database/data-explorer-clusters.png differ diff --git a/resources/azure/database/data-factory.png b/resources/azure/database/data-factory.png new file mode 100644 index 00000000..78d97d26 Binary files /dev/null and b/resources/azure/database/data-factory.png differ diff --git a/resources/azure/database/database-for-mariadb-servers.png b/resources/azure/database/database-for-mariadb-servers.png index d7023871..170251e1 100644 Binary files a/resources/azure/database/database-for-mariadb-servers.png and b/resources/azure/database/database-for-mariadb-servers.png differ diff --git a/resources/azure/database/database-for-mysql-servers.png b/resources/azure/database/database-for-mysql-servers.png index 26dce53a..a70b63c0 100644 Binary files a/resources/azure/database/database-for-mysql-servers.png and b/resources/azure/database/database-for-mysql-servers.png differ diff --git a/resources/azure/database/database-for-postgresql-servers.png b/resources/azure/database/database-for-postgresql-servers.png index c7c5f052..91875ae0 100644 Binary files a/resources/azure/database/database-for-postgresql-servers.png and b/resources/azure/database/database-for-postgresql-servers.png differ diff --git a/resources/azure/database/elastic-database-pools.png b/resources/azure/database/elastic-database-pools.png index b53ed5f5..d5ed1d4a 100644 Binary files a/resources/azure/database/elastic-database-pools.png and b/resources/azure/database/elastic-database-pools.png differ diff --git a/resources/azure/database/elastic-job-agents.png b/resources/azure/database/elastic-job-agents.png index 4af86031..dc82cee7 100644 Binary files a/resources/azure/database/elastic-job-agents.png and b/resources/azure/database/elastic-job-agents.png differ diff --git a/resources/azure/database/instance-pools.png b/resources/azure/database/instance-pools.png new file mode 100644 index 00000000..ccf66287 Binary files /dev/null and b/resources/azure/database/instance-pools.png differ diff --git a/resources/azure/database/managed-databases.png b/resources/azure/database/managed-databases.png index 00ab8256..2035ee34 100644 Binary files a/resources/azure/database/managed-databases.png and b/resources/azure/database/managed-databases.png differ diff --git a/resources/azure/database/sql-databases.png b/resources/azure/database/sql-databases.png index b5da5a4b..60d0f169 100644 Binary files a/resources/azure/database/sql-databases.png and b/resources/azure/database/sql-databases.png differ diff --git a/resources/azure/database/sql-datawarehouse.png b/resources/azure/database/sql-datawarehouse.png index c712f929..2aeeeeaa 100644 Binary files a/resources/azure/database/sql-datawarehouse.png and b/resources/azure/database/sql-datawarehouse.png differ diff --git a/resources/azure/database/sql-managed-instances.png b/resources/azure/database/sql-managed-instances.png index 62f9fb85..2cfe47e7 100644 Binary files a/resources/azure/database/sql-managed-instances.png and b/resources/azure/database/sql-managed-instances.png differ diff --git a/resources/azure/database/sql-server-stretch-databases.png b/resources/azure/database/sql-server-stretch-databases.png index 8aa364c5..2aeeeeaa 100644 Binary files a/resources/azure/database/sql-server-stretch-databases.png and b/resources/azure/database/sql-server-stretch-databases.png differ diff --git a/resources/azure/database/sql-servers.png b/resources/azure/database/sql-servers.png index d76abf39..a45391ba 100644 Binary files a/resources/azure/database/sql-servers.png and b/resources/azure/database/sql-servers.png differ diff --git a/resources/azure/database/sql-vm.png b/resources/azure/database/sql-vm.png new file mode 100644 index 00000000..c7ce579d Binary files /dev/null and b/resources/azure/database/sql-vm.png differ diff --git a/resources/azure/database/sql.png b/resources/azure/database/sql.png new file mode 100644 index 00000000..d3b46f09 Binary files /dev/null and b/resources/azure/database/sql.png differ diff --git a/resources/azure/database/ssis-lift-and-shift-ir.png b/resources/azure/database/ssis-lift-and-shift-ir.png new file mode 100644 index 00000000..8ff629c5 Binary files /dev/null and b/resources/azure/database/ssis-lift-and-shift-ir.png differ diff --git a/resources/azure/database/synapse-analytics.png b/resources/azure/database/synapse-analytics.png new file mode 100644 index 00000000..7966c325 Binary files /dev/null and b/resources/azure/database/synapse-analytics.png differ diff --git a/resources/azure/database/virtual-clusters.png b/resources/azure/database/virtual-clusters.png index ca559883..c676bd50 100644 Binary files a/resources/azure/database/virtual-clusters.png and b/resources/azure/database/virtual-clusters.png differ diff --git a/resources/azure/devops/application-insights.png b/resources/azure/devops/application-insights.png index 58d8f7ed..f80e0173 100644 Binary files a/resources/azure/devops/application-insights.png and b/resources/azure/devops/application-insights.png differ diff --git a/resources/azure/devops/devtest-labs.png b/resources/azure/devops/devtest-labs.png index 7f64b581..75b82c12 100644 Binary files a/resources/azure/devops/devtest-labs.png and b/resources/azure/devops/devtest-labs.png differ diff --git a/resources/azure/devops/lab-services.png b/resources/azure/devops/lab-services.png new file mode 100644 index 00000000..abbe48da Binary files /dev/null and b/resources/azure/devops/lab-services.png differ diff --git a/resources/azure/general/allresources.png b/resources/azure/general/allresources.png index f2d94553..d2b2ccc7 100644 Binary files a/resources/azure/general/allresources.png and b/resources/azure/general/allresources.png differ diff --git a/resources/azure/general/helpsupport.png b/resources/azure/general/helpsupport.png index d975d146..d5172d37 100644 Binary files a/resources/azure/general/helpsupport.png and b/resources/azure/general/helpsupport.png differ diff --git a/resources/azure/general/information.png b/resources/azure/general/information.png index 3d0e8aca..34af9729 100644 Binary files a/resources/azure/general/information.png and b/resources/azure/general/information.png differ diff --git a/resources/azure/general/managementgroups.png b/resources/azure/general/managementgroups.png index 1322348d..94044f40 100644 Binary files a/resources/azure/general/managementgroups.png and b/resources/azure/general/managementgroups.png differ diff --git a/resources/azure/general/marketplace.png b/resources/azure/general/marketplace.png index 1217b9d4..311506f4 100644 Binary files a/resources/azure/general/marketplace.png and b/resources/azure/general/marketplace.png differ diff --git a/resources/azure/general/quickstartcenter.png b/resources/azure/general/quickstartcenter.png index c3aaa53c..8a8d92ee 100644 Binary files a/resources/azure/general/quickstartcenter.png and b/resources/azure/general/quickstartcenter.png differ diff --git a/resources/azure/general/recent.png b/resources/azure/general/recent.png index c4389d18..7d7fb4a4 100644 Binary files a/resources/azure/general/recent.png and b/resources/azure/general/recent.png differ diff --git a/resources/azure/general/reservations.png b/resources/azure/general/reservations.png index 2f4ba07e..ec2ebad6 100644 Binary files a/resources/azure/general/reservations.png and b/resources/azure/general/reservations.png differ diff --git a/resources/azure/general/resourcegroups.png b/resources/azure/general/resourcegroups.png index eff189d9..f0177acf 100644 Binary files a/resources/azure/general/resourcegroups.png and b/resources/azure/general/resourcegroups.png differ diff --git a/resources/azure/general/subscriptions.png b/resources/azure/general/subscriptions.png index 72eed905..9a510f98 100644 Binary files a/resources/azure/general/subscriptions.png and b/resources/azure/general/subscriptions.png differ diff --git a/resources/azure/general/tag.png b/resources/azure/general/tag.png index 92b7d10d..5d0ee16e 100644 Binary files a/resources/azure/general/tag.png and b/resources/azure/general/tag.png differ diff --git a/resources/azure/identity/active-directory-connect-health.png b/resources/azure/identity/active-directory-connect-health.png index a39d673f..5dea39e6 100644 Binary files a/resources/azure/identity/active-directory-connect-health.png and b/resources/azure/identity/active-directory-connect-health.png differ diff --git a/resources/azure/identity/active-directory.png b/resources/azure/identity/active-directory.png index ed59b58a..b12a71bb 100644 Binary files a/resources/azure/identity/active-directory.png and b/resources/azure/identity/active-directory.png differ diff --git a/resources/azure/identity/ad-b2c.png b/resources/azure/identity/ad-b2c.png index 9269ae71..dab723f4 100644 Binary files a/resources/azure/identity/ad-b2c.png and b/resources/azure/identity/ad-b2c.png differ diff --git a/resources/azure/identity/ad-domain-services.png b/resources/azure/identity/ad-domain-services.png index 9eb472b9..c4056d91 100644 Binary files a/resources/azure/identity/ad-domain-services.png and b/resources/azure/identity/ad-domain-services.png differ diff --git a/resources/azure/identity/ad-identity-protection.png b/resources/azure/identity/ad-identity-protection.png index 4d4f7a47..503df013 100644 Binary files a/resources/azure/identity/ad-identity-protection.png and b/resources/azure/identity/ad-identity-protection.png differ diff --git a/resources/azure/identity/app-registrations.png b/resources/azure/identity/app-registrations.png index 9ba2c2bf..755dc76e 100644 Binary files a/resources/azure/identity/app-registrations.png and b/resources/azure/identity/app-registrations.png differ diff --git a/resources/azure/identity/enterprise-applications.png b/resources/azure/identity/enterprise-applications.png index efd78ea0..f14e0c98 100644 Binary files a/resources/azure/identity/enterprise-applications.png and b/resources/azure/identity/enterprise-applications.png differ diff --git a/resources/azure/identity/groups.png b/resources/azure/identity/groups.png new file mode 100644 index 00000000..b859b014 Binary files /dev/null and b/resources/azure/identity/groups.png differ diff --git a/resources/azure/identity/identity-governance.png b/resources/azure/identity/identity-governance.png index b4eb671a..fe46559a 100644 Binary files a/resources/azure/identity/identity-governance.png and b/resources/azure/identity/identity-governance.png differ diff --git a/resources/azure/identity/managed-identities.png b/resources/azure/identity/managed-identities.png index 20c4093d..d191007d 100644 Binary files a/resources/azure/identity/managed-identities.png and b/resources/azure/identity/managed-identities.png differ diff --git a/resources/azure/identity/users.png b/resources/azure/identity/users.png new file mode 100644 index 00000000..0da5d6d0 Binary files /dev/null and b/resources/azure/identity/users.png differ diff --git a/resources/azure/integration/api-for-fhir.png b/resources/azure/integration/api-for-fhir.png index c5b0a19a..801d438b 100644 Binary files a/resources/azure/integration/api-for-fhir.png and b/resources/azure/integration/api-for-fhir.png differ diff --git a/resources/azure/integration/api-management.png b/resources/azure/integration/api-management.png index 4889260e..1d7db0b9 100644 Binary files a/resources/azure/integration/api-management.png and b/resources/azure/integration/api-management.png differ diff --git a/resources/azure/integration/data-catalog.png b/resources/azure/integration/data-catalog.png index d3c2f6bf..6f571571 100644 Binary files a/resources/azure/integration/data-catalog.png and b/resources/azure/integration/data-catalog.png differ diff --git a/resources/azure/integration/event-grid-domains.png b/resources/azure/integration/event-grid-domains.png index 1d290648..53e285a4 100644 Binary files a/resources/azure/integration/event-grid-domains.png and b/resources/azure/integration/event-grid-domains.png differ diff --git a/resources/azure/integration/event-grid-subscriptions.png b/resources/azure/integration/event-grid-subscriptions.png index deaaa840..53e285a4 100644 Binary files a/resources/azure/integration/event-grid-subscriptions.png and b/resources/azure/integration/event-grid-subscriptions.png differ diff --git a/resources/azure/integration/event-grid-topics.png b/resources/azure/integration/event-grid-topics.png index f19379d3..04213c30 100644 Binary files a/resources/azure/integration/event-grid-topics.png and b/resources/azure/integration/event-grid-topics.png differ diff --git a/resources/azure/integration/integration-accounts.png b/resources/azure/integration/integration-accounts.png index cf3b8342..a729534f 100644 Binary files a/resources/azure/integration/integration-accounts.png and b/resources/azure/integration/integration-accounts.png differ diff --git a/resources/azure/integration/logic-apps.png b/resources/azure/integration/logic-apps.png index 06369812..b07f52c5 100644 Binary files a/resources/azure/integration/logic-apps.png and b/resources/azure/integration/logic-apps.png differ diff --git a/resources/azure/integration/partner-topic.png b/resources/azure/integration/partner-topic.png new file mode 100644 index 00000000..0631a558 Binary files /dev/null and b/resources/azure/integration/partner-topic.png differ diff --git a/resources/azure/integration/service-bus-relays.png b/resources/azure/integration/service-bus-relays.png index f936e867..f255f05f 100644 Binary files a/resources/azure/integration/service-bus-relays.png and b/resources/azure/integration/service-bus-relays.png differ diff --git a/resources/azure/integration/software-as-a-service.png b/resources/azure/integration/software-as-a-service.png index d44945f4..de893bc8 100644 Binary files a/resources/azure/integration/software-as-a-service.png and b/resources/azure/integration/software-as-a-service.png differ diff --git a/resources/azure/integration/system-topic.png b/resources/azure/integration/system-topic.png new file mode 100644 index 00000000..83e941b3 Binary files /dev/null and b/resources/azure/integration/system-topic.png differ diff --git a/resources/azure/iot/device-provisioning-services.png b/resources/azure/iot/device-provisioning-services.png index 95ce7026..f0fba925 100644 Binary files a/resources/azure/iot/device-provisioning-services.png and b/resources/azure/iot/device-provisioning-services.png differ diff --git a/resources/azure/iot/iot-central-applications.png b/resources/azure/iot/iot-central-applications.png index e2e91513..0400504c 100644 Binary files a/resources/azure/iot/iot-central-applications.png and b/resources/azure/iot/iot-central-applications.png differ diff --git a/resources/azure/iot/iot-hub.png b/resources/azure/iot/iot-hub.png index 198dec19..664bc23f 100644 Binary files a/resources/azure/iot/iot-hub.png and b/resources/azure/iot/iot-hub.png differ diff --git a/resources/azure/iot/maps.png b/resources/azure/iot/maps.png index 1fcef393..ed1c5e16 100644 Binary files a/resources/azure/iot/maps.png and b/resources/azure/iot/maps.png differ diff --git a/resources/azure/iot/time-series-insights-environments.png b/resources/azure/iot/time-series-insights-environments.png index 66f39234..8ddbc0ca 100644 Binary files a/resources/azure/iot/time-series-insights-environments.png and b/resources/azure/iot/time-series-insights-environments.png differ diff --git a/resources/azure/iot/time-series-insights-events-sources.png b/resources/azure/iot/time-series-insights-events-sources.png index 4c4e716b..80d33f6c 100644 Binary files a/resources/azure/iot/time-series-insights-events-sources.png and b/resources/azure/iot/time-series-insights-events-sources.png differ diff --git a/resources/azure/migration/data-box-edge.png b/resources/azure/migration/data-box-edge.png new file mode 100644 index 00000000..76d55602 Binary files /dev/null and b/resources/azure/migration/data-box-edge.png differ diff --git a/resources/azure/migration/data-box.png b/resources/azure/migration/data-box.png new file mode 100644 index 00000000..b316d506 Binary files /dev/null and b/resources/azure/migration/data-box.png differ diff --git a/resources/azure/migration/database-migration-services.png b/resources/azure/migration/database-migration-services.png index 95d69907..9f66d088 100644 Binary files a/resources/azure/migration/database-migration-services.png and b/resources/azure/migration/database-migration-services.png differ diff --git a/resources/azure/migration/migration-projects.png b/resources/azure/migration/migration-projects.png index 1d9d553d..71394c0b 100644 Binary files a/resources/azure/migration/migration-projects.png and b/resources/azure/migration/migration-projects.png differ diff --git a/resources/azure/migration/recovery-services-vaults.png b/resources/azure/migration/recovery-services-vaults.png index a766c96a..1275988e 100644 Binary files a/resources/azure/migration/recovery-services-vaults.png and b/resources/azure/migration/recovery-services-vaults.png differ diff --git a/resources/azure/ml/azure-open-ai.png b/resources/azure/ml/azure-open-ai.png new file mode 100644 index 00000000..f617791d Binary files /dev/null and b/resources/azure/ml/azure-open-ai.png differ diff --git a/resources/azure/ml/azure-speed-to-text.png b/resources/azure/ml/azure-speed-to-text.png new file mode 100644 index 00000000..ca331f12 Binary files /dev/null and b/resources/azure/ml/azure-speed-to-text.png differ diff --git a/resources/azure/ml/bot-services.png b/resources/azure/ml/bot-services.png index f7c9f46c..04036722 100644 Binary files a/resources/azure/ml/bot-services.png and b/resources/azure/ml/bot-services.png differ diff --git a/resources/azure/ml/cognitive-services.png b/resources/azure/ml/cognitive-services.png index 08681246..651f7303 100644 Binary files a/resources/azure/ml/cognitive-services.png and b/resources/azure/ml/cognitive-services.png differ diff --git a/resources/azure/ml/machine-learning-studio-web-service-plans.png b/resources/azure/ml/machine-learning-studio-web-service-plans.png index 1dbf0383..e347017b 100644 Binary files a/resources/azure/ml/machine-learning-studio-web-service-plans.png and b/resources/azure/ml/machine-learning-studio-web-service-plans.png differ diff --git a/resources/azure/ml/machine-learning-studio-web-services.png b/resources/azure/ml/machine-learning-studio-web-services.png index 77bfc1ab..6885fc3b 100644 Binary files a/resources/azure/ml/machine-learning-studio-web-services.png and b/resources/azure/ml/machine-learning-studio-web-services.png differ diff --git a/resources/azure/ml/machine-learning-studio-workspaces.png b/resources/azure/ml/machine-learning-studio-workspaces.png index 7b98af9c..781de23d 100644 Binary files a/resources/azure/ml/machine-learning-studio-workspaces.png and b/resources/azure/ml/machine-learning-studio-workspaces.png differ diff --git a/resources/azure/mobile/app-service---mobile.png b/resources/azure/mobile/app-service---mobile.png deleted file mode 100644 index 28ec8b60..00000000 Binary files a/resources/azure/mobile/app-service---mobile.png and /dev/null differ diff --git a/resources/azure/mobile/app-service-mobile.png b/resources/azure/mobile/app-service-mobile.png new file mode 100644 index 00000000..a851bea3 Binary files /dev/null and b/resources/azure/mobile/app-service-mobile.png differ diff --git a/resources/azure/mobile/mobile-engagement.png b/resources/azure/mobile/mobile-engagement.png index d42a91bb..fe02c590 100644 Binary files a/resources/azure/mobile/mobile-engagement.png and b/resources/azure/mobile/mobile-engagement.png differ diff --git a/resources/azure/mobile/notification-hubs.png b/resources/azure/mobile/notification-hubs.png index 1d69e504..ad3129f4 100644 Binary files a/resources/azure/mobile/notification-hubs.png and b/resources/azure/mobile/notification-hubs.png differ diff --git a/resources/azure/monitor/change-analysis.png b/resources/azure/monitor/change-analysis.png new file mode 100644 index 00000000..4d5c0317 Binary files /dev/null and b/resources/azure/monitor/change-analysis.png differ diff --git a/resources/azure/monitor/logs.png b/resources/azure/monitor/logs.png new file mode 100644 index 00000000..2fe89972 Binary files /dev/null and b/resources/azure/monitor/logs.png differ diff --git a/resources/azure/monitor/metrics.png b/resources/azure/monitor/metrics.png new file mode 100644 index 00000000..b68f3875 Binary files /dev/null and b/resources/azure/monitor/metrics.png differ diff --git a/resources/azure/monitor/monitor.png b/resources/azure/monitor/monitor.png new file mode 100644 index 00000000..ec03485a Binary files /dev/null and b/resources/azure/monitor/monitor.png differ diff --git a/resources/azure/network/application-gateway.png b/resources/azure/network/application-gateway.png index a88f21c4..33b9bb60 100644 Binary files a/resources/azure/network/application-gateway.png and b/resources/azure/network/application-gateway.png differ diff --git a/resources/azure/network/cdn-profiles.png b/resources/azure/network/cdn-profiles.png index 9b1ca9e4..abf28b27 100644 Binary files a/resources/azure/network/cdn-profiles.png and b/resources/azure/network/cdn-profiles.png differ diff --git a/resources/azure/network/connections.png b/resources/azure/network/connections.png index cceef7a4..ba2f81ff 100644 Binary files a/resources/azure/network/connections.png and b/resources/azure/network/connections.png differ diff --git a/resources/azure/network/ddos-protection-plans.png b/resources/azure/network/ddos-protection-plans.png index 90a6a889..a9f93003 100644 Binary files a/resources/azure/network/ddos-protection-plans.png and b/resources/azure/network/ddos-protection-plans.png differ diff --git a/resources/azure/network/dns-zones.png b/resources/azure/network/dns-zones.png index 37b8f0d5..cd0e0546 100644 Binary files a/resources/azure/network/dns-zones.png and b/resources/azure/network/dns-zones.png differ diff --git a/resources/azure/network/expressroute-circuits.png b/resources/azure/network/expressroute-circuits.png index 207646f6..cb86bb1e 100644 Binary files a/resources/azure/network/expressroute-circuits.png and b/resources/azure/network/expressroute-circuits.png differ diff --git a/resources/azure/network/firewall.png b/resources/azure/network/firewall.png index dd8879ab..d2f12c96 100644 Binary files a/resources/azure/network/firewall.png and b/resources/azure/network/firewall.png differ diff --git a/resources/azure/network/front-doors.png b/resources/azure/network/front-doors.png index 0dc539d5..baa09faf 100644 Binary files a/resources/azure/network/front-doors.png and b/resources/azure/network/front-doors.png differ diff --git a/resources/azure/network/load-balancers.png b/resources/azure/network/load-balancers.png index aa968112..803c5225 100644 Binary files a/resources/azure/network/load-balancers.png and b/resources/azure/network/load-balancers.png differ diff --git a/resources/azure/network/local-network-gateways.png b/resources/azure/network/local-network-gateways.png index 5a9d4223..11e7bf9c 100644 Binary files a/resources/azure/network/local-network-gateways.png and b/resources/azure/network/local-network-gateways.png differ diff --git a/resources/azure/network/network-interfaces.png b/resources/azure/network/network-interfaces.png index 1c4e0ba0..c60606c9 100644 Binary files a/resources/azure/network/network-interfaces.png and b/resources/azure/network/network-interfaces.png differ diff --git a/resources/azure/network/network-security-groups-classic.png b/resources/azure/network/network-security-groups-classic.png index d9555caf..4a7e8eee 100644 Binary files a/resources/azure/network/network-security-groups-classic.png and b/resources/azure/network/network-security-groups-classic.png differ diff --git a/resources/azure/network/network-watcher.png b/resources/azure/network/network-watcher.png index 98a15adb..1323f62c 100644 Binary files a/resources/azure/network/network-watcher.png and b/resources/azure/network/network-watcher.png differ diff --git a/resources/azure/network/private-endpoint.png b/resources/azure/network/private-endpoint.png new file mode 100644 index 00000000..a7a69915 Binary files /dev/null and b/resources/azure/network/private-endpoint.png differ diff --git a/resources/azure/network/public-ip-addresses.png b/resources/azure/network/public-ip-addresses.png index f1c81609..2cb57240 100644 Binary files a/resources/azure/network/public-ip-addresses.png and b/resources/azure/network/public-ip-addresses.png differ diff --git a/resources/azure/network/reserved-ip-addresses-classic.png b/resources/azure/network/reserved-ip-addresses-classic.png index 7a784120..086da895 100644 Binary files a/resources/azure/network/reserved-ip-addresses-classic.png and b/resources/azure/network/reserved-ip-addresses-classic.png differ diff --git a/resources/azure/network/route-filters.png b/resources/azure/network/route-filters.png index 92bcb587..797b5119 100644 Binary files a/resources/azure/network/route-filters.png and b/resources/azure/network/route-filters.png differ diff --git a/resources/azure/network/route-tables.png b/resources/azure/network/route-tables.png index 1c1ea36a..9d7ff779 100644 Binary files a/resources/azure/network/route-tables.png and b/resources/azure/network/route-tables.png differ diff --git a/resources/azure/network/service-endpoint-policies.png b/resources/azure/network/service-endpoint-policies.png index c13e57a7..e9fa41fe 100644 Binary files a/resources/azure/network/service-endpoint-policies.png and b/resources/azure/network/service-endpoint-policies.png differ diff --git a/resources/azure/network/traffic-manager-profiles.png b/resources/azure/network/traffic-manager-profiles.png index 889a3d3f..fa7fa8fe 100644 Binary files a/resources/azure/network/traffic-manager-profiles.png and b/resources/azure/network/traffic-manager-profiles.png differ diff --git a/resources/azure/network/virtual-network-classic.png b/resources/azure/network/virtual-network-classic.png index 42a30259..58703249 100644 Binary files a/resources/azure/network/virtual-network-classic.png and b/resources/azure/network/virtual-network-classic.png differ diff --git a/resources/azure/network/virtual-network-gateways.png b/resources/azure/network/virtual-network-gateways.png index 9645786b..5e66c940 100644 Binary files a/resources/azure/network/virtual-network-gateways.png and b/resources/azure/network/virtual-network-gateways.png differ diff --git a/resources/azure/network/virtual-networks.png b/resources/azure/network/virtual-networks.png index 5066d26c..d2f947bb 100644 Binary files a/resources/azure/network/virtual-networks.png and b/resources/azure/network/virtual-networks.png differ diff --git a/resources/azure/network/virtual-wans.png b/resources/azure/network/virtual-wans.png index fc5e589d..58c17293 100644 Binary files a/resources/azure/network/virtual-wans.png and b/resources/azure/network/virtual-wans.png differ diff --git a/resources/azure/security/application-security-groups.png b/resources/azure/security/application-security-groups.png new file mode 100644 index 00000000..38066668 Binary files /dev/null and b/resources/azure/security/application-security-groups.png differ diff --git a/resources/azure/security/conditional-access.png b/resources/azure/security/conditional-access.png new file mode 100644 index 00000000..37d5ab17 Binary files /dev/null and b/resources/azure/security/conditional-access.png differ diff --git a/resources/azure/security/defender.png b/resources/azure/security/defender.png new file mode 100644 index 00000000..35ee099b Binary files /dev/null and b/resources/azure/security/defender.png differ diff --git a/resources/azure/security/extended-security-updates.png b/resources/azure/security/extended-security-updates.png new file mode 100644 index 00000000..b77dfda6 Binary files /dev/null and b/resources/azure/security/extended-security-updates.png differ diff --git a/resources/azure/security/security-center.png b/resources/azure/security/security-center.png index e0fa97e2..2aef4991 100644 Binary files a/resources/azure/security/security-center.png and b/resources/azure/security/security-center.png differ diff --git a/resources/azure/security/sentinel.png b/resources/azure/security/sentinel.png index ecceee66..949a3a63 100644 Binary files a/resources/azure/security/sentinel.png and b/resources/azure/security/sentinel.png differ diff --git a/resources/azure/storage/data-box-edge---data-box-gateway.png b/resources/azure/storage/data-box-edge---data-box-gateway.png deleted file mode 100644 index 8eec00e4..00000000 Binary files a/resources/azure/storage/data-box-edge---data-box-gateway.png and /dev/null differ diff --git a/resources/azure/storage/data-box-edge-data-box-gateway.png b/resources/azure/storage/data-box-edge-data-box-gateway.png new file mode 100644 index 00000000..76d55602 Binary files /dev/null and b/resources/azure/storage/data-box-edge-data-box-gateway.png differ diff --git a/resources/azure/storage/data-box.png b/resources/azure/storage/data-box.png index c80eb2fa..b316d506 100644 Binary files a/resources/azure/storage/data-box.png and b/resources/azure/storage/data-box.png differ diff --git a/resources/azure/storage/netapp-files.png b/resources/azure/storage/netapp-files.png index 84e1c669..cda140e6 100644 Binary files a/resources/azure/storage/netapp-files.png and b/resources/azure/storage/netapp-files.png differ diff --git a/resources/azure/storage/storage-accounts-classic.png b/resources/azure/storage/storage-accounts-classic.png index 81369a9e..1379991d 100644 Binary files a/resources/azure/storage/storage-accounts-classic.png and b/resources/azure/storage/storage-accounts-classic.png differ diff --git a/resources/azure/storage/storage-accounts.png b/resources/azure/storage/storage-accounts.png index 8f57412e..61e3dd1c 100644 Binary files a/resources/azure/storage/storage-accounts.png and b/resources/azure/storage/storage-accounts.png differ diff --git a/resources/azure/storage/storage-sync-services.png b/resources/azure/storage/storage-sync-services.png index c2ddfdae..6d22924a 100644 Binary files a/resources/azure/storage/storage-sync-services.png and b/resources/azure/storage/storage-sync-services.png differ diff --git a/resources/azure/storage/storsimple-data-managers.png b/resources/azure/storage/storsimple-data-managers.png index 7f736062..e66b8006 100644 Binary files a/resources/azure/storage/storsimple-data-managers.png and b/resources/azure/storage/storsimple-data-managers.png differ diff --git a/resources/azure/storage/storsimple-device-managers.png b/resources/azure/storage/storsimple-device-managers.png index b29ce455..35d26d87 100644 Binary files a/resources/azure/storage/storsimple-device-managers.png and b/resources/azure/storage/storsimple-device-managers.png differ diff --git a/resources/azure/web/app-service-certificates.png b/resources/azure/web/app-service-certificates.png index 66e533f9..1c63f126 100644 Binary files a/resources/azure/web/app-service-certificates.png and b/resources/azure/web/app-service-certificates.png differ diff --git a/resources/azure/web/app-service-domains.png b/resources/azure/web/app-service-domains.png index 26b3b799..afeea0c0 100644 Binary files a/resources/azure/web/app-service-domains.png and b/resources/azure/web/app-service-domains.png differ diff --git a/resources/azure/web/app-service-environments.png b/resources/azure/web/app-service-environments.png index 39c7a5f4..6f764a28 100644 Binary files a/resources/azure/web/app-service-environments.png and b/resources/azure/web/app-service-environments.png differ diff --git a/resources/azure/web/app-service-plans.png b/resources/azure/web/app-service-plans.png index 65d774da..1be8fe61 100644 Binary files a/resources/azure/web/app-service-plans.png and b/resources/azure/web/app-service-plans.png differ diff --git a/resources/azure/web/app-services.png b/resources/azure/web/app-services.png index 2cb88f60..f7ca7fb0 100644 Binary files a/resources/azure/web/app-services.png and b/resources/azure/web/app-services.png differ diff --git a/resources/azure/web/media-services.png b/resources/azure/web/media-services.png index 38001ecc..f787f0f6 100644 Binary files a/resources/azure/web/media-services.png and b/resources/azure/web/media-services.png differ diff --git a/resources/azure/web/notification-hub-namespaces.png b/resources/azure/web/notification-hub-namespaces.png index 1d69e504..ad3129f4 100644 Binary files a/resources/azure/web/notification-hub-namespaces.png and b/resources/azure/web/notification-hub-namespaces.png differ diff --git a/resources/azure/web/search.png b/resources/azure/web/search.png index 5cd48eed..c92d6582 100644 Binary files a/resources/azure/web/search.png and b/resources/azure/web/search.png differ diff --git a/resources/digitalocean/compute/containers.png b/resources/digitalocean/compute/containers.png new file mode 100644 index 00000000..c91c0b5d Binary files /dev/null and b/resources/digitalocean/compute/containers.png differ diff --git a/resources/digitalocean/compute/docker.png b/resources/digitalocean/compute/docker.png new file mode 100644 index 00000000..b9a7d33c Binary files /dev/null and b/resources/digitalocean/compute/docker.png differ diff --git a/resources/digitalocean/compute/droplet-connect.png b/resources/digitalocean/compute/droplet-connect.png new file mode 100644 index 00000000..44c0b869 Binary files /dev/null and b/resources/digitalocean/compute/droplet-connect.png differ diff --git a/resources/digitalocean/compute/droplet-snapshot.png b/resources/digitalocean/compute/droplet-snapshot.png new file mode 100644 index 00000000..5ec9b0d0 Binary files /dev/null and b/resources/digitalocean/compute/droplet-snapshot.png differ diff --git a/resources/digitalocean/compute/droplet.png b/resources/digitalocean/compute/droplet.png new file mode 100644 index 00000000..9010bf10 Binary files /dev/null and b/resources/digitalocean/compute/droplet.png differ diff --git a/resources/digitalocean/compute/k8s-cluster.png b/resources/digitalocean/compute/k8s-cluster.png new file mode 100644 index 00000000..2cdb1485 Binary files /dev/null and b/resources/digitalocean/compute/k8s-cluster.png differ diff --git a/resources/digitalocean/compute/k8s-node-pool.png b/resources/digitalocean/compute/k8s-node-pool.png new file mode 100644 index 00000000..54f08df9 Binary files /dev/null and b/resources/digitalocean/compute/k8s-node-pool.png differ diff --git a/resources/digitalocean/compute/k8s-node.png b/resources/digitalocean/compute/k8s-node.png new file mode 100644 index 00000000..850311fc Binary files /dev/null and b/resources/digitalocean/compute/k8s-node.png differ diff --git a/resources/digitalocean/database/dbaas-primary-standby-more.png b/resources/digitalocean/database/dbaas-primary-standby-more.png new file mode 100644 index 00000000..3903a387 Binary files /dev/null and b/resources/digitalocean/database/dbaas-primary-standby-more.png differ diff --git a/resources/digitalocean/database/dbaas-primary.png b/resources/digitalocean/database/dbaas-primary.png new file mode 100644 index 00000000..204e61cb Binary files /dev/null and b/resources/digitalocean/database/dbaas-primary.png differ diff --git a/resources/digitalocean/database/dbaas-read-only.png b/resources/digitalocean/database/dbaas-read-only.png new file mode 100644 index 00000000..b6747095 Binary files /dev/null and b/resources/digitalocean/database/dbaas-read-only.png differ diff --git a/resources/digitalocean/database/dbaas-standby.png b/resources/digitalocean/database/dbaas-standby.png new file mode 100644 index 00000000..2ed71136 Binary files /dev/null and b/resources/digitalocean/database/dbaas-standby.png differ diff --git a/resources/digitalocean/network/certificate.png b/resources/digitalocean/network/certificate.png new file mode 100644 index 00000000..4552ad4f Binary files /dev/null and b/resources/digitalocean/network/certificate.png differ diff --git a/resources/digitalocean/network/domain-registration.png b/resources/digitalocean/network/domain-registration.png new file mode 100644 index 00000000..bdf0cf99 Binary files /dev/null and b/resources/digitalocean/network/domain-registration.png differ diff --git a/resources/digitalocean/network/domain.png b/resources/digitalocean/network/domain.png new file mode 100644 index 00000000..def4332d Binary files /dev/null and b/resources/digitalocean/network/domain.png differ diff --git a/resources/digitalocean/network/firewall.png b/resources/digitalocean/network/firewall.png new file mode 100644 index 00000000..9157f6ea Binary files /dev/null and b/resources/digitalocean/network/firewall.png differ diff --git a/resources/digitalocean/network/floating-ip.png b/resources/digitalocean/network/floating-ip.png new file mode 100644 index 00000000..20aecc7f Binary files /dev/null and b/resources/digitalocean/network/floating-ip.png differ diff --git a/resources/digitalocean/network/internet-gateway.png b/resources/digitalocean/network/internet-gateway.png new file mode 100644 index 00000000..1203a39e Binary files /dev/null and b/resources/digitalocean/network/internet-gateway.png differ diff --git a/resources/digitalocean/network/load-balancer.png b/resources/digitalocean/network/load-balancer.png new file mode 100644 index 00000000..335a95b2 Binary files /dev/null and b/resources/digitalocean/network/load-balancer.png differ diff --git a/resources/digitalocean/network/managed-vpn.png b/resources/digitalocean/network/managed-vpn.png new file mode 100644 index 00000000..4e0fc4f0 Binary files /dev/null and b/resources/digitalocean/network/managed-vpn.png differ diff --git a/resources/digitalocean/network/vpc.png b/resources/digitalocean/network/vpc.png new file mode 100644 index 00000000..c49baefd Binary files /dev/null and b/resources/digitalocean/network/vpc.png differ diff --git a/resources/digitalocean/storage/folder.png b/resources/digitalocean/storage/folder.png new file mode 100644 index 00000000..cf5e2f89 Binary files /dev/null and b/resources/digitalocean/storage/folder.png differ diff --git a/resources/digitalocean/storage/space.png b/resources/digitalocean/storage/space.png new file mode 100644 index 00000000..f4054c78 Binary files /dev/null and b/resources/digitalocean/storage/space.png differ diff --git a/resources/digitalocean/storage/volume-snapshot.png b/resources/digitalocean/storage/volume-snapshot.png new file mode 100644 index 00000000..0bdab74c Binary files /dev/null and b/resources/digitalocean/storage/volume-snapshot.png differ diff --git a/resources/digitalocean/storage/volume.png b/resources/digitalocean/storage/volume.png new file mode 100644 index 00000000..3d3dc947 Binary files /dev/null and b/resources/digitalocean/storage/volume.png differ diff --git a/resources/elastic/agent/agent.png b/resources/elastic/agent/agent.png new file mode 100644 index 00000000..f2a90e0d Binary files /dev/null and b/resources/elastic/agent/agent.png differ diff --git a/resources/elastic/agent/endpoint.png b/resources/elastic/agent/endpoint.png new file mode 100644 index 00000000..4daf3ca3 Binary files /dev/null and b/resources/elastic/agent/endpoint.png differ diff --git a/resources/elastic/agent/fleet.png b/resources/elastic/agent/fleet.png new file mode 100644 index 00000000..55dd3686 Binary files /dev/null and b/resources/elastic/agent/fleet.png differ diff --git a/resources/elastic/agent/integrations.png b/resources/elastic/agent/integrations.png new file mode 100644 index 00000000..9bd75395 Binary files /dev/null and b/resources/elastic/agent/integrations.png differ diff --git a/resources/elastic/beats/apm.png b/resources/elastic/beats/apm.png new file mode 100644 index 00000000..fdb5796a Binary files /dev/null and b/resources/elastic/beats/apm.png differ diff --git a/resources/elastic/beats/auditbeat.png b/resources/elastic/beats/auditbeat.png new file mode 100644 index 00000000..4e41ae78 Binary files /dev/null and b/resources/elastic/beats/auditbeat.png differ diff --git a/resources/elastic/beats/filebeat.png b/resources/elastic/beats/filebeat.png new file mode 100644 index 00000000..778af3d3 Binary files /dev/null and b/resources/elastic/beats/filebeat.png differ diff --git a/resources/elastic/beats/functionbeat.png b/resources/elastic/beats/functionbeat.png new file mode 100644 index 00000000..080e9f46 Binary files /dev/null and b/resources/elastic/beats/functionbeat.png differ diff --git a/resources/elastic/beats/heartbeat.png b/resources/elastic/beats/heartbeat.png new file mode 100644 index 00000000..975daa7b Binary files /dev/null and b/resources/elastic/beats/heartbeat.png differ diff --git a/resources/elastic/beats/metricbeat.png b/resources/elastic/beats/metricbeat.png new file mode 100644 index 00000000..80082cd4 Binary files /dev/null and b/resources/elastic/beats/metricbeat.png differ diff --git a/resources/elastic/beats/packetbeat.png b/resources/elastic/beats/packetbeat.png new file mode 100644 index 00000000..9ede7e1e Binary files /dev/null and b/resources/elastic/beats/packetbeat.png differ diff --git a/resources/elastic/beats/winlogbeat.png b/resources/elastic/beats/winlogbeat.png new file mode 100644 index 00000000..70f12acb Binary files /dev/null and b/resources/elastic/beats/winlogbeat.png differ diff --git a/resources/elastic/elasticsearch/logstash-pipeline.png b/resources/elastic/elasticsearch/logstash-pipeline.png new file mode 100644 index 00000000..4a772456 Binary files /dev/null and b/resources/elastic/elasticsearch/logstash-pipeline.png differ diff --git a/resources/elastic/elasticsearch/map-services.png b/resources/elastic/elasticsearch/map-services.png new file mode 100644 index 00000000..774d0c3c Binary files /dev/null and b/resources/elastic/elasticsearch/map-services.png differ diff --git a/resources/elastic/elasticsearch/searchable-snapshots.png b/resources/elastic/elasticsearch/searchable-snapshots.png new file mode 100644 index 00000000..3fdd73d9 Binary files /dev/null and b/resources/elastic/elasticsearch/searchable-snapshots.png differ diff --git a/resources/elastic/elasticsearch/stack.png b/resources/elastic/elasticsearch/stack.png new file mode 100644 index 00000000..71e6651b Binary files /dev/null and b/resources/elastic/elasticsearch/stack.png differ diff --git a/resources/elastic/enterprisesearch/crawler.png b/resources/elastic/enterprisesearch/crawler.png new file mode 100644 index 00000000..555801d0 Binary files /dev/null and b/resources/elastic/enterprisesearch/crawler.png differ diff --git a/resources/elastic/observability/observability.png b/resources/elastic/observability/observability.png index 5844caa9..f4408894 100644 Binary files a/resources/elastic/observability/observability.png and b/resources/elastic/observability/observability.png differ diff --git a/resources/elastic/security/xdr.png b/resources/elastic/security/xdr.png new file mode 100644 index 00000000..972f1f16 Binary files /dev/null and b/resources/elastic/security/xdr.png differ diff --git a/resources/gcp/analytics/bigquery.png b/resources/gcp/analytics/bigquery.png index a7e0a715..d058cf4a 100644 Binary files a/resources/gcp/analytics/bigquery.png and b/resources/gcp/analytics/bigquery.png differ diff --git a/resources/gcp/analytics/composer.png b/resources/gcp/analytics/composer.png index 1c62a13b..30f88542 100644 Binary files a/resources/gcp/analytics/composer.png and b/resources/gcp/analytics/composer.png differ diff --git a/resources/gcp/analytics/data-catalog.png b/resources/gcp/analytics/data-catalog.png index 334ba02c..d668f10a 100644 Binary files a/resources/gcp/analytics/data-catalog.png and b/resources/gcp/analytics/data-catalog.png differ diff --git a/resources/gcp/analytics/data-fusion.png b/resources/gcp/analytics/data-fusion.png index 62c1b347..7ff73d0c 100644 Binary files a/resources/gcp/analytics/data-fusion.png and b/resources/gcp/analytics/data-fusion.png differ diff --git a/resources/gcp/analytics/dataflow.png b/resources/gcp/analytics/dataflow.png index c53ddf83..75361dd4 100644 Binary files a/resources/gcp/analytics/dataflow.png and b/resources/gcp/analytics/dataflow.png differ diff --git a/resources/gcp/analytics/datalab.png b/resources/gcp/analytics/datalab.png index 9c5ad7d7..3a16a45c 100644 Binary files a/resources/gcp/analytics/datalab.png and b/resources/gcp/analytics/datalab.png differ diff --git a/resources/gcp/analytics/dataprep.png b/resources/gcp/analytics/dataprep.png index 17132f25..9ae555d0 100644 Binary files a/resources/gcp/analytics/dataprep.png and b/resources/gcp/analytics/dataprep.png differ diff --git a/resources/gcp/analytics/dataproc.png b/resources/gcp/analytics/dataproc.png index eb5ed2ce..38cdf10f 100644 Binary files a/resources/gcp/analytics/dataproc.png and b/resources/gcp/analytics/dataproc.png differ diff --git a/resources/gcp/analytics/genomics.png b/resources/gcp/analytics/genomics.png index 3a463caa..3a7ff933 100644 Binary files a/resources/gcp/analytics/genomics.png and b/resources/gcp/analytics/genomics.png differ diff --git a/resources/gcp/analytics/pubsub.png b/resources/gcp/analytics/pubsub.png index 5b5610c9..72c3396e 100644 Binary files a/resources/gcp/analytics/pubsub.png and b/resources/gcp/analytics/pubsub.png differ diff --git a/resources/gcp/api/api-gateway.png b/resources/gcp/api/api-gateway.png new file mode 100644 index 00000000..a3ec6f35 Binary files /dev/null and b/resources/gcp/api/api-gateway.png differ diff --git a/resources/gcp/api/apigee.png b/resources/gcp/api/apigee.png new file mode 100644 index 00000000..961c4a72 Binary files /dev/null and b/resources/gcp/api/apigee.png differ diff --git a/resources/gcp/api/endpoints.png b/resources/gcp/api/endpoints.png index 339f7f24..788799cd 100644 Binary files a/resources/gcp/api/endpoints.png and b/resources/gcp/api/endpoints.png differ diff --git a/resources/gcp/compute/app-engine.png b/resources/gcp/compute/app-engine.png index b82ddbda..eac63d76 100644 Binary files a/resources/gcp/compute/app-engine.png and b/resources/gcp/compute/app-engine.png differ diff --git a/resources/gcp/compute/compute-engine.png b/resources/gcp/compute/compute-engine.png index a4b52d92..36c0b4a1 100644 Binary files a/resources/gcp/compute/compute-engine.png and b/resources/gcp/compute/compute-engine.png differ diff --git a/resources/gcp/compute/container-optimized-os.png b/resources/gcp/compute/container-optimized-os.png index 67a2504d..f4e70cff 100644 Binary files a/resources/gcp/compute/container-optimized-os.png and b/resources/gcp/compute/container-optimized-os.png differ diff --git a/resources/gcp/compute/functions.png b/resources/gcp/compute/functions.png index 24188a42..79f345d8 100644 Binary files a/resources/gcp/compute/functions.png and b/resources/gcp/compute/functions.png differ diff --git a/resources/gcp/compute/gke-on-prem.png b/resources/gcp/compute/gke-on-prem.png index 1e18cba8..bf03d6fc 100644 Binary files a/resources/gcp/compute/gke-on-prem.png and b/resources/gcp/compute/gke-on-prem.png differ diff --git a/resources/gcp/compute/gpu.png b/resources/gcp/compute/gpu.png index 94a26fd4..58f41631 100644 Binary files a/resources/gcp/compute/gpu.png and b/resources/gcp/compute/gpu.png differ diff --git a/resources/gcp/compute/kubernetes-engine.png b/resources/gcp/compute/kubernetes-engine.png index 0e434e31..9f18fa58 100644 Binary files a/resources/gcp/compute/kubernetes-engine.png and b/resources/gcp/compute/kubernetes-engine.png differ diff --git a/resources/gcp/compute/run.png b/resources/gcp/compute/run.png index 8d2e4f8a..431e64b6 100644 Binary files a/resources/gcp/compute/run.png and b/resources/gcp/compute/run.png differ diff --git a/resources/gcp/database/bigtable.png b/resources/gcp/database/bigtable.png index afce5e05..4e541a01 100644 Binary files a/resources/gcp/database/bigtable.png and b/resources/gcp/database/bigtable.png differ diff --git a/resources/gcp/database/datastore.png b/resources/gcp/database/datastore.png index 43a77a8c..efceb403 100644 Binary files a/resources/gcp/database/datastore.png and b/resources/gcp/database/datastore.png differ diff --git a/resources/gcp/database/firestore.png b/resources/gcp/database/firestore.png index a161e8ce..c7d54745 100644 Binary files a/resources/gcp/database/firestore.png and b/resources/gcp/database/firestore.png differ diff --git a/resources/gcp/database/memorystore.png b/resources/gcp/database/memorystore.png index ceb3b893..db4ea12b 100644 Binary files a/resources/gcp/database/memorystore.png and b/resources/gcp/database/memorystore.png differ diff --git a/resources/gcp/database/spanner.png b/resources/gcp/database/spanner.png index 88068fbb..60c68de2 100644 Binary files a/resources/gcp/database/spanner.png and b/resources/gcp/database/spanner.png differ diff --git a/resources/gcp/database/sql.png b/resources/gcp/database/sql.png index 9763c557..b009f553 100644 Binary files a/resources/gcp/database/sql.png and b/resources/gcp/database/sql.png differ diff --git a/resources/gcp/devtools/build.png b/resources/gcp/devtools/build.png index d09c343e..2bebdd1b 100644 Binary files a/resources/gcp/devtools/build.png and b/resources/gcp/devtools/build.png differ diff --git a/resources/gcp/devtools/code-for-intellij.png b/resources/gcp/devtools/code-for-intellij.png index 1ff83f6e..2c1dee8b 100644 Binary files a/resources/gcp/devtools/code-for-intellij.png and b/resources/gcp/devtools/code-for-intellij.png differ diff --git a/resources/gcp/devtools/code.png b/resources/gcp/devtools/code.png index 22050590..f7ea8a19 100644 Binary files a/resources/gcp/devtools/code.png and b/resources/gcp/devtools/code.png differ diff --git a/resources/gcp/devtools/container-registry.png b/resources/gcp/devtools/container-registry.png index e645187b..67d7e3c4 100644 Binary files a/resources/gcp/devtools/container-registry.png and b/resources/gcp/devtools/container-registry.png differ diff --git a/resources/gcp/devtools/gradle-app-engine-plugin.png b/resources/gcp/devtools/gradle-app-engine-plugin.png index 1ff83f6e..2c1dee8b 100644 Binary files a/resources/gcp/devtools/gradle-app-engine-plugin.png and b/resources/gcp/devtools/gradle-app-engine-plugin.png differ diff --git a/resources/gcp/devtools/ide-plugins.png b/resources/gcp/devtools/ide-plugins.png index bc2bd2c5..5b01a7b8 100644 Binary files a/resources/gcp/devtools/ide-plugins.png and b/resources/gcp/devtools/ide-plugins.png differ diff --git a/resources/gcp/devtools/maven-app-engine-plugin.png b/resources/gcp/devtools/maven-app-engine-plugin.png index 1ff83f6e..2c1dee8b 100644 Binary files a/resources/gcp/devtools/maven-app-engine-plugin.png and b/resources/gcp/devtools/maven-app-engine-plugin.png differ diff --git a/resources/gcp/devtools/scheduler.png b/resources/gcp/devtools/scheduler.png index 87ebc123..cfb746b8 100644 Binary files a/resources/gcp/devtools/scheduler.png and b/resources/gcp/devtools/scheduler.png differ diff --git a/resources/gcp/devtools/sdk.png b/resources/gcp/devtools/sdk.png index 1ff83f6e..2c1dee8b 100644 Binary files a/resources/gcp/devtools/sdk.png and b/resources/gcp/devtools/sdk.png differ diff --git a/resources/gcp/devtools/source-repositories.png b/resources/gcp/devtools/source-repositories.png index 1ff83f6e..2c1dee8b 100644 Binary files a/resources/gcp/devtools/source-repositories.png and b/resources/gcp/devtools/source-repositories.png differ diff --git a/resources/gcp/devtools/tasks.png b/resources/gcp/devtools/tasks.png index 39a54f00..c4165e5e 100644 Binary files a/resources/gcp/devtools/tasks.png and b/resources/gcp/devtools/tasks.png differ diff --git a/resources/gcp/devtools/test-lab.png b/resources/gcp/devtools/test-lab.png index fc66f58c..1f626613 100644 Binary files a/resources/gcp/devtools/test-lab.png and b/resources/gcp/devtools/test-lab.png differ diff --git a/resources/gcp/devtools/tools-for-eclipse.png b/resources/gcp/devtools/tools-for-eclipse.png index 1ff83f6e..2c1dee8b 100644 Binary files a/resources/gcp/devtools/tools-for-eclipse.png and b/resources/gcp/devtools/tools-for-eclipse.png differ diff --git a/resources/gcp/devtools/tools-for-powershell.png b/resources/gcp/devtools/tools-for-powershell.png index bc2bd2c5..5b01a7b8 100644 Binary files a/resources/gcp/devtools/tools-for-powershell.png and b/resources/gcp/devtools/tools-for-powershell.png differ diff --git a/resources/gcp/devtools/tools-for-visual-studio.png b/resources/gcp/devtools/tools-for-visual-studio.png index bc2bd2c5..5b01a7b8 100644 Binary files a/resources/gcp/devtools/tools-for-visual-studio.png and b/resources/gcp/devtools/tools-for-visual-studio.png differ diff --git a/resources/gcp/iot/iot-core.png b/resources/gcp/iot/iot-core.png index cdb2ab73..cda82392 100644 Binary files a/resources/gcp/iot/iot-core.png and b/resources/gcp/iot/iot-core.png differ diff --git a/resources/gcp/migration/transfer-appliance.png b/resources/gcp/migration/transfer-appliance.png index 8b9cf7ac..e42d0ce4 100644 Binary files a/resources/gcp/migration/transfer-appliance.png and b/resources/gcp/migration/transfer-appliance.png differ diff --git a/resources/gcp/ml/advanced-solutions-lab.png b/resources/gcp/ml/advanced-solutions-lab.png index d7ddd494..1da72ca3 100644 Binary files a/resources/gcp/ml/advanced-solutions-lab.png and b/resources/gcp/ml/advanced-solutions-lab.png differ diff --git a/resources/gcp/ml/ai-hub.png b/resources/gcp/ml/ai-hub.png index d6a00200..9662da8c 100644 Binary files a/resources/gcp/ml/ai-hub.png and b/resources/gcp/ml/ai-hub.png differ diff --git a/resources/gcp/ml/ai-platform-data-labeling-service.png b/resources/gcp/ml/ai-platform-data-labeling-service.png index 1ff83f6e..631720a7 100644 Binary files a/resources/gcp/ml/ai-platform-data-labeling-service.png and b/resources/gcp/ml/ai-platform-data-labeling-service.png differ diff --git a/resources/gcp/ml/ai-platform.png b/resources/gcp/ml/ai-platform.png index f85ff7f8..92cb26f3 100644 Binary files a/resources/gcp/ml/ai-platform.png and b/resources/gcp/ml/ai-platform.png differ diff --git a/resources/gcp/ml/automl-natural-language.png b/resources/gcp/ml/automl-natural-language.png index 4a9258fe..95ae4314 100644 Binary files a/resources/gcp/ml/automl-natural-language.png and b/resources/gcp/ml/automl-natural-language.png differ diff --git a/resources/gcp/ml/automl-tables.png b/resources/gcp/ml/automl-tables.png index 8fdd0f22..2f794285 100644 Binary files a/resources/gcp/ml/automl-tables.png and b/resources/gcp/ml/automl-tables.png differ diff --git a/resources/gcp/ml/automl-translation.png b/resources/gcp/ml/automl-translation.png index 385366c5..b0846062 100644 Binary files a/resources/gcp/ml/automl-translation.png and b/resources/gcp/ml/automl-translation.png differ diff --git a/resources/gcp/ml/automl-video-intelligence.png b/resources/gcp/ml/automl-video-intelligence.png index e4922020..8f2f4b6c 100644 Binary files a/resources/gcp/ml/automl-video-intelligence.png and b/resources/gcp/ml/automl-video-intelligence.png differ diff --git a/resources/gcp/ml/automl-vision.png b/resources/gcp/ml/automl-vision.png index e2b850d0..b538f97b 100644 Binary files a/resources/gcp/ml/automl-vision.png and b/resources/gcp/ml/automl-vision.png differ diff --git a/resources/gcp/ml/automl.png b/resources/gcp/ml/automl.png index b147e074..1dedbdcf 100644 Binary files a/resources/gcp/ml/automl.png and b/resources/gcp/ml/automl.png differ diff --git a/resources/gcp/ml/dialog-flow-enterprise-edition.png b/resources/gcp/ml/dialog-flow-enterprise-edition.png index 7166aec7..5d93e743 100644 Binary files a/resources/gcp/ml/dialog-flow-enterprise-edition.png and b/resources/gcp/ml/dialog-flow-enterprise-edition.png differ diff --git a/resources/gcp/ml/inference-api.png b/resources/gcp/ml/inference-api.png index 4ea88767..4b2fd909 100644 Binary files a/resources/gcp/ml/inference-api.png and b/resources/gcp/ml/inference-api.png differ diff --git a/resources/gcp/ml/jobs-api.png b/resources/gcp/ml/jobs-api.png index 271b502e..a28ab6e2 100644 Binary files a/resources/gcp/ml/jobs-api.png and b/resources/gcp/ml/jobs-api.png differ diff --git a/resources/gcp/ml/natural-language-api.png b/resources/gcp/ml/natural-language-api.png index a8c4308d..681d65aa 100644 Binary files a/resources/gcp/ml/natural-language-api.png and b/resources/gcp/ml/natural-language-api.png differ diff --git a/resources/gcp/ml/recommendations-ai.png b/resources/gcp/ml/recommendations-ai.png index 2b225aaf..4bdd23a9 100644 Binary files a/resources/gcp/ml/recommendations-ai.png and b/resources/gcp/ml/recommendations-ai.png differ diff --git a/resources/gcp/ml/speech-to-text.png b/resources/gcp/ml/speech-to-text.png index fd5ccea5..3b96164c 100644 Binary files a/resources/gcp/ml/speech-to-text.png and b/resources/gcp/ml/speech-to-text.png differ diff --git a/resources/gcp/ml/text-to-speech.png b/resources/gcp/ml/text-to-speech.png index 5822fa63..9487bf5c 100644 Binary files a/resources/gcp/ml/text-to-speech.png and b/resources/gcp/ml/text-to-speech.png differ diff --git a/resources/gcp/ml/tpu.png b/resources/gcp/ml/tpu.png index 158946a9..14548cff 100644 Binary files a/resources/gcp/ml/tpu.png and b/resources/gcp/ml/tpu.png differ diff --git a/resources/gcp/ml/translation-api.png b/resources/gcp/ml/translation-api.png index 6997d9f5..be8dfbbd 100644 Binary files a/resources/gcp/ml/translation-api.png and b/resources/gcp/ml/translation-api.png differ diff --git a/resources/gcp/ml/video-intelligence-api.png b/resources/gcp/ml/video-intelligence-api.png index 1c6e00c1..f42cdb67 100644 Binary files a/resources/gcp/ml/video-intelligence-api.png and b/resources/gcp/ml/video-intelligence-api.png differ diff --git a/resources/gcp/ml/vision-api.png b/resources/gcp/ml/vision-api.png index 28e2d631..e98aae2b 100644 Binary files a/resources/gcp/ml/vision-api.png and b/resources/gcp/ml/vision-api.png differ diff --git a/resources/gcp/network/armor.png b/resources/gcp/network/armor.png index 5cc9bc13..d6d0c1f4 100644 Binary files a/resources/gcp/network/armor.png and b/resources/gcp/network/armor.png differ diff --git a/resources/gcp/network/cdn.png b/resources/gcp/network/cdn.png index b2ac3981..6edecfcb 100644 Binary files a/resources/gcp/network/cdn.png and b/resources/gcp/network/cdn.png differ diff --git a/resources/gcp/network/dedicated-interconnect.png b/resources/gcp/network/dedicated-interconnect.png index d11202df..b692f8a0 100644 Binary files a/resources/gcp/network/dedicated-interconnect.png and b/resources/gcp/network/dedicated-interconnect.png differ diff --git a/resources/gcp/network/dns.png b/resources/gcp/network/dns.png index 2d8c27be..8ddbba80 100644 Binary files a/resources/gcp/network/dns.png and b/resources/gcp/network/dns.png differ diff --git a/resources/gcp/network/external-ip-addresses.png b/resources/gcp/network/external-ip-addresses.png index a3f1b891..1054f666 100644 Binary files a/resources/gcp/network/external-ip-addresses.png and b/resources/gcp/network/external-ip-addresses.png differ diff --git a/resources/gcp/network/firewall-rules.png b/resources/gcp/network/firewall-rules.png index ff4a8390..4a6e59f4 100644 Binary files a/resources/gcp/network/firewall-rules.png and b/resources/gcp/network/firewall-rules.png differ diff --git a/resources/gcp/network/load-balancing.png b/resources/gcp/network/load-balancing.png index b245d3ca..9c1d9682 100644 Binary files a/resources/gcp/network/load-balancing.png and b/resources/gcp/network/load-balancing.png differ diff --git a/resources/gcp/network/nat.png b/resources/gcp/network/nat.png index 16967170..7fbae15b 100644 Binary files a/resources/gcp/network/nat.png and b/resources/gcp/network/nat.png differ diff --git a/resources/gcp/network/network.png b/resources/gcp/network/network.png index 3dde3517..62461f00 100644 Binary files a/resources/gcp/network/network.png and b/resources/gcp/network/network.png differ diff --git a/resources/gcp/network/partner-interconnect.png b/resources/gcp/network/partner-interconnect.png index be0e43f5..440a0a84 100644 Binary files a/resources/gcp/network/partner-interconnect.png and b/resources/gcp/network/partner-interconnect.png differ diff --git a/resources/gcp/network/premium-network-tier.png b/resources/gcp/network/premium-network-tier.png index 5de7b572..eea8e49e 100644 Binary files a/resources/gcp/network/premium-network-tier.png and b/resources/gcp/network/premium-network-tier.png differ diff --git a/resources/gcp/network/router.png b/resources/gcp/network/router.png index f00fdf61..8c3873c9 100644 Binary files a/resources/gcp/network/router.png and b/resources/gcp/network/router.png differ diff --git a/resources/gcp/network/routes.png b/resources/gcp/network/routes.png index 51743c98..d4a6690b 100644 Binary files a/resources/gcp/network/routes.png and b/resources/gcp/network/routes.png differ diff --git a/resources/gcp/network/standard-network-tier.png b/resources/gcp/network/standard-network-tier.png index 674e95ff..f4d3b1ba 100644 Binary files a/resources/gcp/network/standard-network-tier.png and b/resources/gcp/network/standard-network-tier.png differ diff --git a/resources/gcp/network/traffic-director.png b/resources/gcp/network/traffic-director.png index 7ed3b279..6657c634 100644 Binary files a/resources/gcp/network/traffic-director.png and b/resources/gcp/network/traffic-director.png differ diff --git a/resources/gcp/network/virtual-private-cloud.png b/resources/gcp/network/virtual-private-cloud.png index 7944217c..f51d3430 100644 Binary files a/resources/gcp/network/virtual-private-cloud.png and b/resources/gcp/network/virtual-private-cloud.png differ diff --git a/resources/gcp/network/vpn.png b/resources/gcp/network/vpn.png index ef511948..aebc9cc9 100644 Binary files a/resources/gcp/network/vpn.png and b/resources/gcp/network/vpn.png differ diff --git a/resources/gcp/operations/logging.png b/resources/gcp/operations/logging.png new file mode 100644 index 00000000..71a7ceea Binary files /dev/null and b/resources/gcp/operations/logging.png differ diff --git a/resources/gcp/operations/monitoring.png b/resources/gcp/operations/monitoring.png index 427babb7..63661e8d 100644 Binary files a/resources/gcp/operations/monitoring.png and b/resources/gcp/operations/monitoring.png differ diff --git a/resources/gcp/security/iam.png b/resources/gcp/security/iam.png index 31e24bab..d6a37dd9 100644 Binary files a/resources/gcp/security/iam.png and b/resources/gcp/security/iam.png differ diff --git a/resources/gcp/security/iap.png b/resources/gcp/security/iap.png index 722a7f2f..a9df0ec0 100644 Binary files a/resources/gcp/security/iap.png and b/resources/gcp/security/iap.png differ diff --git a/resources/gcp/security/key-management-service.png b/resources/gcp/security/key-management-service.png index 46edd260..bd9039b9 100644 Binary files a/resources/gcp/security/key-management-service.png and b/resources/gcp/security/key-management-service.png differ diff --git a/resources/gcp/security/resource-manager.png b/resources/gcp/security/resource-manager.png index 31e24bab..d6a37dd9 100644 Binary files a/resources/gcp/security/resource-manager.png and b/resources/gcp/security/resource-manager.png differ diff --git a/resources/gcp/security/security-command-center.png b/resources/gcp/security/security-command-center.png index fd93a89f..e9d2c67b 100644 Binary files a/resources/gcp/security/security-command-center.png and b/resources/gcp/security/security-command-center.png differ diff --git a/resources/gcp/security/security-scanner.png b/resources/gcp/security/security-scanner.png index fca9bed3..a76780db 100644 Binary files a/resources/gcp/security/security-scanner.png and b/resources/gcp/security/security-scanner.png differ diff --git a/resources/gcp/storage/filestore.png b/resources/gcp/storage/filestore.png index 7881c782..a8a23a48 100644 Binary files a/resources/gcp/storage/filestore.png and b/resources/gcp/storage/filestore.png differ diff --git a/resources/gcp/storage/persistent-disk.png b/resources/gcp/storage/persistent-disk.png index 4be2acf2..f492bbf7 100644 Binary files a/resources/gcp/storage/persistent-disk.png and b/resources/gcp/storage/persistent-disk.png differ diff --git a/resources/gcp/storage/storage.png b/resources/gcp/storage/storage.png index 3b7bb1ae..a8bc0d91 100644 Binary files a/resources/gcp/storage/storage.png and b/resources/gcp/storage/storage.png differ diff --git a/resources/generic/os/debian.png b/resources/generic/os/debian.png new file mode 100644 index 00000000..5bd5edc5 Binary files /dev/null and b/resources/generic/os/debian.png differ diff --git a/resources/generic/os/raspbian.png b/resources/generic/os/raspbian.png new file mode 100644 index 00000000..b93c4c64 Binary files /dev/null and b/resources/generic/os/raspbian.png differ diff --git a/resources/generic/os/red-hat.png b/resources/generic/os/red-hat.png new file mode 100644 index 00000000..48901816 Binary files /dev/null and b/resources/generic/os/red-hat.png differ diff --git a/resources/generic/virtualization/qemu.png b/resources/generic/virtualization/qemu.png new file mode 100644 index 00000000..39cf1f24 Binary files /dev/null and b/resources/generic/virtualization/qemu.png differ diff --git a/resources/ibm/analytics/analytics.png b/resources/ibm/analytics/analytics.png new file mode 100644 index 00000000..5a0b024a Binary files /dev/null and b/resources/ibm/analytics/analytics.png differ diff --git a/resources/ibm/analytics/data-integration.png b/resources/ibm/analytics/data-integration.png new file mode 100644 index 00000000..6cba3f02 Binary files /dev/null and b/resources/ibm/analytics/data-integration.png differ diff --git a/resources/ibm/analytics/data-repositories.png b/resources/ibm/analytics/data-repositories.png new file mode 100644 index 00000000..cd511228 Binary files /dev/null and b/resources/ibm/analytics/data-repositories.png differ diff --git a/resources/ibm/analytics/device-analytics.png b/resources/ibm/analytics/device-analytics.png new file mode 100644 index 00000000..1f3109a2 Binary files /dev/null and b/resources/ibm/analytics/device-analytics.png differ diff --git a/resources/ibm/analytics/streaming-computing.png b/resources/ibm/analytics/streaming-computing.png new file mode 100644 index 00000000..4eced106 Binary files /dev/null and b/resources/ibm/analytics/streaming-computing.png differ diff --git a/resources/ibm/applications/actionable-insight.png b/resources/ibm/applications/actionable-insight.png new file mode 100644 index 00000000..6cc05e12 Binary files /dev/null and b/resources/ibm/applications/actionable-insight.png differ diff --git a/resources/ibm/applications/annotate.png b/resources/ibm/applications/annotate.png new file mode 100644 index 00000000..07a7c9ae Binary files /dev/null and b/resources/ibm/applications/annotate.png differ diff --git a/resources/ibm/applications/api-developer-portal.png b/resources/ibm/applications/api-developer-portal.png new file mode 100644 index 00000000..e16d3dd1 Binary files /dev/null and b/resources/ibm/applications/api-developer-portal.png differ diff --git a/resources/ibm/applications/api-polyglot-runtimes.png b/resources/ibm/applications/api-polyglot-runtimes.png new file mode 100644 index 00000000..fc8de117 Binary files /dev/null and b/resources/ibm/applications/api-polyglot-runtimes.png differ diff --git a/resources/ibm/applications/app-server.png b/resources/ibm/applications/app-server.png new file mode 100644 index 00000000..00b43145 Binary files /dev/null and b/resources/ibm/applications/app-server.png differ diff --git a/resources/ibm/applications/application-logic.png b/resources/ibm/applications/application-logic.png new file mode 100644 index 00000000..4d6c19fb Binary files /dev/null and b/resources/ibm/applications/application-logic.png differ diff --git a/resources/ibm/applications/enterprise-applications.png b/resources/ibm/applications/enterprise-applications.png new file mode 100644 index 00000000..e42badea Binary files /dev/null and b/resources/ibm/applications/enterprise-applications.png differ diff --git a/resources/ibm/applications/index.png b/resources/ibm/applications/index.png new file mode 100644 index 00000000..82966910 Binary files /dev/null and b/resources/ibm/applications/index.png differ diff --git a/resources/ibm/applications/iot-application.png b/resources/ibm/applications/iot-application.png new file mode 100644 index 00000000..38a03e67 Binary files /dev/null and b/resources/ibm/applications/iot-application.png differ diff --git a/resources/ibm/applications/microservice.png b/resources/ibm/applications/microservice.png new file mode 100644 index 00000000..e0bbd371 Binary files /dev/null and b/resources/ibm/applications/microservice.png differ diff --git a/resources/ibm/applications/mobile-app.png b/resources/ibm/applications/mobile-app.png new file mode 100644 index 00000000..523aa498 Binary files /dev/null and b/resources/ibm/applications/mobile-app.png differ diff --git a/resources/ibm/applications/ontology.png b/resources/ibm/applications/ontology.png new file mode 100644 index 00000000..5ea679c8 Binary files /dev/null and b/resources/ibm/applications/ontology.png differ diff --git a/resources/ibm/applications/open-source-tools.png b/resources/ibm/applications/open-source-tools.png new file mode 100644 index 00000000..da9e0c05 Binary files /dev/null and b/resources/ibm/applications/open-source-tools.png differ diff --git a/resources/ibm/applications/runtime-services.png b/resources/ibm/applications/runtime-services.png new file mode 100644 index 00000000..c70dbace Binary files /dev/null and b/resources/ibm/applications/runtime-services.png differ diff --git a/resources/ibm/applications/saas-applications.png b/resources/ibm/applications/saas-applications.png new file mode 100644 index 00000000..2250997b Binary files /dev/null and b/resources/ibm/applications/saas-applications.png differ diff --git a/resources/ibm/applications/service-broker.png b/resources/ibm/applications/service-broker.png new file mode 100644 index 00000000..218b3b75 Binary files /dev/null and b/resources/ibm/applications/service-broker.png differ diff --git a/resources/ibm/applications/speech-to-text.png b/resources/ibm/applications/speech-to-text.png new file mode 100644 index 00000000..23988aba Binary files /dev/null and b/resources/ibm/applications/speech-to-text.png differ diff --git a/resources/ibm/applications/visual-recognition.png b/resources/ibm/applications/visual-recognition.png new file mode 100644 index 00000000..44939c5b Binary files /dev/null and b/resources/ibm/applications/visual-recognition.png differ diff --git a/resources/ibm/applications/visualization.png b/resources/ibm/applications/visualization.png new file mode 100644 index 00000000..c0ae690a Binary files /dev/null and b/resources/ibm/applications/visualization.png differ diff --git a/resources/ibm/blockchain/blockchain-developer.png b/resources/ibm/blockchain/blockchain-developer.png new file mode 100644 index 00000000..d535ac19 Binary files /dev/null and b/resources/ibm/blockchain/blockchain-developer.png differ diff --git a/resources/ibm/blockchain/blockchain.png b/resources/ibm/blockchain/blockchain.png new file mode 100644 index 00000000..db0af98c Binary files /dev/null and b/resources/ibm/blockchain/blockchain.png differ diff --git a/resources/ibm/blockchain/certificate-authority.png b/resources/ibm/blockchain/certificate-authority.png new file mode 100644 index 00000000..8d5964a1 Binary files /dev/null and b/resources/ibm/blockchain/certificate-authority.png differ diff --git a/resources/ibm/blockchain/client-application.png b/resources/ibm/blockchain/client-application.png new file mode 100644 index 00000000..07c97036 Binary files /dev/null and b/resources/ibm/blockchain/client-application.png differ diff --git a/resources/ibm/blockchain/communication.png b/resources/ibm/blockchain/communication.png new file mode 100644 index 00000000..a50ed874 Binary files /dev/null and b/resources/ibm/blockchain/communication.png differ diff --git a/resources/ibm/blockchain/consensus.png b/resources/ibm/blockchain/consensus.png new file mode 100644 index 00000000..764baac3 Binary files /dev/null and b/resources/ibm/blockchain/consensus.png differ diff --git a/resources/ibm/blockchain/event-listener.png b/resources/ibm/blockchain/event-listener.png new file mode 100644 index 00000000..9b025810 Binary files /dev/null and b/resources/ibm/blockchain/event-listener.png differ diff --git a/resources/ibm/blockchain/event.png b/resources/ibm/blockchain/event.png new file mode 100644 index 00000000..1b7a39cd Binary files /dev/null and b/resources/ibm/blockchain/event.png differ diff --git a/resources/ibm/blockchain/existing-enterprise-systems.png b/resources/ibm/blockchain/existing-enterprise-systems.png new file mode 100644 index 00000000..41a18046 Binary files /dev/null and b/resources/ibm/blockchain/existing-enterprise-systems.png differ diff --git a/resources/ibm/blockchain/hyperledger-fabric.png b/resources/ibm/blockchain/hyperledger-fabric.png new file mode 100644 index 00000000..916c22fd Binary files /dev/null and b/resources/ibm/blockchain/hyperledger-fabric.png differ diff --git a/resources/ibm/blockchain/key-management.png b/resources/ibm/blockchain/key-management.png new file mode 100644 index 00000000..9b81f431 Binary files /dev/null and b/resources/ibm/blockchain/key-management.png differ diff --git a/resources/ibm/blockchain/ledger.png b/resources/ibm/blockchain/ledger.png new file mode 100644 index 00000000..4bb718b0 Binary files /dev/null and b/resources/ibm/blockchain/ledger.png differ diff --git a/resources/ibm/blockchain/membership-services-provider-api.png b/resources/ibm/blockchain/membership-services-provider-api.png new file mode 100644 index 00000000..790113f4 Binary files /dev/null and b/resources/ibm/blockchain/membership-services-provider-api.png differ diff --git a/resources/ibm/blockchain/membership.png b/resources/ibm/blockchain/membership.png new file mode 100644 index 00000000..c3ad05fb Binary files /dev/null and b/resources/ibm/blockchain/membership.png differ diff --git a/resources/ibm/blockchain/message-bus.png b/resources/ibm/blockchain/message-bus.png new file mode 100644 index 00000000..807a14cf Binary files /dev/null and b/resources/ibm/blockchain/message-bus.png differ diff --git a/resources/ibm/blockchain/node.png b/resources/ibm/blockchain/node.png new file mode 100644 index 00000000..332c881a Binary files /dev/null and b/resources/ibm/blockchain/node.png differ diff --git a/resources/ibm/blockchain/services.png b/resources/ibm/blockchain/services.png new file mode 100644 index 00000000..9797f56e Binary files /dev/null and b/resources/ibm/blockchain/services.png differ diff --git a/resources/ibm/blockchain/smart-contract.png b/resources/ibm/blockchain/smart-contract.png new file mode 100644 index 00000000..55508218 Binary files /dev/null and b/resources/ibm/blockchain/smart-contract.png differ diff --git a/resources/ibm/blockchain/transaction-manager.png b/resources/ibm/blockchain/transaction-manager.png new file mode 100644 index 00000000..bb85a47a Binary files /dev/null and b/resources/ibm/blockchain/transaction-manager.png differ diff --git a/resources/ibm/blockchain/wallet.png b/resources/ibm/blockchain/wallet.png new file mode 100644 index 00000000..772e2c86 Binary files /dev/null and b/resources/ibm/blockchain/wallet.png differ diff --git a/resources/ibm/compute/bare-metal-server.png b/resources/ibm/compute/bare-metal-server.png new file mode 100644 index 00000000..3dd53a05 Binary files /dev/null and b/resources/ibm/compute/bare-metal-server.png differ diff --git a/resources/ibm/compute/image-service.png b/resources/ibm/compute/image-service.png new file mode 100644 index 00000000..c64c97f6 Binary files /dev/null and b/resources/ibm/compute/image-service.png differ diff --git a/resources/ibm/compute/instance.png b/resources/ibm/compute/instance.png new file mode 100644 index 00000000..c606725f Binary files /dev/null and b/resources/ibm/compute/instance.png differ diff --git a/resources/ibm/compute/key.png b/resources/ibm/compute/key.png new file mode 100644 index 00000000..332bd123 Binary files /dev/null and b/resources/ibm/compute/key.png differ diff --git a/resources/ibm/compute/power-instance.png b/resources/ibm/compute/power-instance.png new file mode 100644 index 00000000..2441e6de Binary files /dev/null and b/resources/ibm/compute/power-instance.png differ diff --git a/resources/ibm/data/caches.png b/resources/ibm/data/caches.png new file mode 100644 index 00000000..aef8a63c Binary files /dev/null and b/resources/ibm/data/caches.png differ diff --git a/resources/ibm/data/cloud.png b/resources/ibm/data/cloud.png new file mode 100644 index 00000000..3f97fa1d Binary files /dev/null and b/resources/ibm/data/cloud.png differ diff --git a/resources/ibm/data/conversation-trained-deployed.png b/resources/ibm/data/conversation-trained-deployed.png new file mode 100644 index 00000000..0df3a862 Binary files /dev/null and b/resources/ibm/data/conversation-trained-deployed.png differ diff --git a/resources/ibm/data/data-services.png b/resources/ibm/data/data-services.png new file mode 100644 index 00000000..0969f748 Binary files /dev/null and b/resources/ibm/data/data-services.png differ diff --git a/resources/ibm/data/data-sources.png b/resources/ibm/data/data-sources.png new file mode 100644 index 00000000..93fdfc70 Binary files /dev/null and b/resources/ibm/data/data-sources.png differ diff --git a/resources/ibm/data/device-identity-service.png b/resources/ibm/data/device-identity-service.png new file mode 100644 index 00000000..6e900e69 Binary files /dev/null and b/resources/ibm/data/device-identity-service.png differ diff --git a/resources/ibm/data/device-registry.png b/resources/ibm/data/device-registry.png new file mode 100644 index 00000000..daffdb88 Binary files /dev/null and b/resources/ibm/data/device-registry.png differ diff --git a/resources/ibm/data/enterprise-data.png b/resources/ibm/data/enterprise-data.png new file mode 100644 index 00000000..767c3dde Binary files /dev/null and b/resources/ibm/data/enterprise-data.png differ diff --git a/resources/ibm/data/enterprise-user-directory.png b/resources/ibm/data/enterprise-user-directory.png new file mode 100644 index 00000000..e55d76a6 Binary files /dev/null and b/resources/ibm/data/enterprise-user-directory.png differ diff --git a/resources/ibm/data/file-repository.png b/resources/ibm/data/file-repository.png new file mode 100644 index 00000000..f39e948f Binary files /dev/null and b/resources/ibm/data/file-repository.png differ diff --git a/resources/ibm/data/ground-truth.png b/resources/ibm/data/ground-truth.png new file mode 100644 index 00000000..8dc410f2 Binary files /dev/null and b/resources/ibm/data/ground-truth.png differ diff --git a/resources/ibm/data/model.png b/resources/ibm/data/model.png new file mode 100644 index 00000000..7cc6b8ce Binary files /dev/null and b/resources/ibm/data/model.png differ diff --git a/resources/ibm/data/tms-data-interface.png b/resources/ibm/data/tms-data-interface.png new file mode 100644 index 00000000..b88e20f9 Binary files /dev/null and b/resources/ibm/data/tms-data-interface.png differ diff --git a/resources/ibm/devops/artifact-management.png b/resources/ibm/devops/artifact-management.png new file mode 100644 index 00000000..45be3b10 Binary files /dev/null and b/resources/ibm/devops/artifact-management.png differ diff --git a/resources/ibm/devops/build-test.png b/resources/ibm/devops/build-test.png new file mode 100644 index 00000000..f84ca437 Binary files /dev/null and b/resources/ibm/devops/build-test.png differ diff --git a/resources/ibm/devops/code-editor.png b/resources/ibm/devops/code-editor.png new file mode 100644 index 00000000..e7dabbde Binary files /dev/null and b/resources/ibm/devops/code-editor.png differ diff --git a/resources/ibm/devops/collaborative-development.png b/resources/ibm/devops/collaborative-development.png new file mode 100644 index 00000000..32e68e95 Binary files /dev/null and b/resources/ibm/devops/collaborative-development.png differ diff --git a/resources/ibm/devops/configuration-management.png b/resources/ibm/devops/configuration-management.png new file mode 100644 index 00000000..e80c25e5 Binary files /dev/null and b/resources/ibm/devops/configuration-management.png differ diff --git a/resources/ibm/devops/continuous-deploy.png b/resources/ibm/devops/continuous-deploy.png new file mode 100644 index 00000000..6f10680c Binary files /dev/null and b/resources/ibm/devops/continuous-deploy.png differ diff --git a/resources/ibm/devops/continuous-testing.png b/resources/ibm/devops/continuous-testing.png new file mode 100644 index 00000000..a97fe57c Binary files /dev/null and b/resources/ibm/devops/continuous-testing.png differ diff --git a/resources/ibm/devops/devops.png b/resources/ibm/devops/devops.png new file mode 100644 index 00000000..f6620067 Binary files /dev/null and b/resources/ibm/devops/devops.png differ diff --git a/resources/ibm/devops/provision.png b/resources/ibm/devops/provision.png new file mode 100644 index 00000000..1b6edb84 Binary files /dev/null and b/resources/ibm/devops/provision.png differ diff --git a/resources/ibm/devops/release-management.png b/resources/ibm/devops/release-management.png new file mode 100644 index 00000000..99d8f78d Binary files /dev/null and b/resources/ibm/devops/release-management.png differ diff --git a/resources/ibm/general/cloud-messaging.png b/resources/ibm/general/cloud-messaging.png new file mode 100644 index 00000000..f0d82943 Binary files /dev/null and b/resources/ibm/general/cloud-messaging.png differ diff --git a/resources/ibm/general/cloud-services.png b/resources/ibm/general/cloud-services.png new file mode 100644 index 00000000..01b3fa39 Binary files /dev/null and b/resources/ibm/general/cloud-services.png differ diff --git a/resources/ibm/general/cloudant.png b/resources/ibm/general/cloudant.png new file mode 100644 index 00000000..7b62f807 Binary files /dev/null and b/resources/ibm/general/cloudant.png differ diff --git a/resources/ibm/general/cognitive-services.png b/resources/ibm/general/cognitive-services.png new file mode 100644 index 00000000..51ff39b9 Binary files /dev/null and b/resources/ibm/general/cognitive-services.png differ diff --git a/resources/ibm/general/data-security.png b/resources/ibm/general/data-security.png new file mode 100644 index 00000000..a9471728 Binary files /dev/null and b/resources/ibm/general/data-security.png differ diff --git a/resources/ibm/general/enterprise.png b/resources/ibm/general/enterprise.png new file mode 100644 index 00000000..6cc34790 Binary files /dev/null and b/resources/ibm/general/enterprise.png differ diff --git a/resources/ibm/general/governance-risk-compliance.png b/resources/ibm/general/governance-risk-compliance.png new file mode 100644 index 00000000..af4c2c9c Binary files /dev/null and b/resources/ibm/general/governance-risk-compliance.png differ diff --git a/resources/ibm/general/ibm-containers.png b/resources/ibm/general/ibm-containers.png new file mode 100644 index 00000000..216eae21 Binary files /dev/null and b/resources/ibm/general/ibm-containers.png differ diff --git a/resources/ibm/general/ibm-public-cloud.png b/resources/ibm/general/ibm-public-cloud.png new file mode 100644 index 00000000..ae95534b Binary files /dev/null and b/resources/ibm/general/ibm-public-cloud.png differ diff --git a/resources/ibm/general/identity-access-management.png b/resources/ibm/general/identity-access-management.png new file mode 100644 index 00000000..ed499fe4 Binary files /dev/null and b/resources/ibm/general/identity-access-management.png differ diff --git a/resources/ibm/general/identity-provider.png b/resources/ibm/general/identity-provider.png new file mode 100644 index 00000000..0eca324a Binary files /dev/null and b/resources/ibm/general/identity-provider.png differ diff --git a/resources/ibm/general/infrastructure-security.png b/resources/ibm/general/infrastructure-security.png new file mode 100644 index 00000000..660b93b4 Binary files /dev/null and b/resources/ibm/general/infrastructure-security.png differ diff --git a/resources/ibm/general/internet.png b/resources/ibm/general/internet.png new file mode 100644 index 00000000..91714467 Binary files /dev/null and b/resources/ibm/general/internet.png differ diff --git a/resources/ibm/general/iot-cloud.png b/resources/ibm/general/iot-cloud.png new file mode 100644 index 00000000..990fdc9f Binary files /dev/null and b/resources/ibm/general/iot-cloud.png differ diff --git a/resources/ibm/general/microservices-application.png b/resources/ibm/general/microservices-application.png new file mode 100644 index 00000000..3ddbe108 Binary files /dev/null and b/resources/ibm/general/microservices-application.png differ diff --git a/resources/ibm/general/microservices-mesh.png b/resources/ibm/general/microservices-mesh.png new file mode 100644 index 00000000..0b57d52c Binary files /dev/null and b/resources/ibm/general/microservices-mesh.png differ diff --git a/resources/ibm/general/monitoring-logging.png b/resources/ibm/general/monitoring-logging.png new file mode 100644 index 00000000..33de7743 Binary files /dev/null and b/resources/ibm/general/monitoring-logging.png differ diff --git a/resources/ibm/general/monitoring.png b/resources/ibm/general/monitoring.png new file mode 100644 index 00000000..1c2946d5 Binary files /dev/null and b/resources/ibm/general/monitoring.png differ diff --git a/resources/ibm/general/object-storage.png b/resources/ibm/general/object-storage.png new file mode 100644 index 00000000..ad26d4c4 Binary files /dev/null and b/resources/ibm/general/object-storage.png differ diff --git a/resources/ibm/general/offline-capabilities.png b/resources/ibm/general/offline-capabilities.png new file mode 100644 index 00000000..f36cd2ad Binary files /dev/null and b/resources/ibm/general/offline-capabilities.png differ diff --git a/resources/ibm/general/openwhisk.png b/resources/ibm/general/openwhisk.png new file mode 100644 index 00000000..3eb6c02d Binary files /dev/null and b/resources/ibm/general/openwhisk.png differ diff --git a/resources/ibm/general/peer-cloud.png b/resources/ibm/general/peer-cloud.png new file mode 100644 index 00000000..cf1121cb Binary files /dev/null and b/resources/ibm/general/peer-cloud.png differ diff --git a/resources/ibm/general/retrieve-rank.png b/resources/ibm/general/retrieve-rank.png new file mode 100644 index 00000000..14d8b828 Binary files /dev/null and b/resources/ibm/general/retrieve-rank.png differ diff --git a/resources/ibm/general/scalable.png b/resources/ibm/general/scalable.png new file mode 100644 index 00000000..729b6169 Binary files /dev/null and b/resources/ibm/general/scalable.png differ diff --git a/resources/ibm/general/service-discovery-configuration.png b/resources/ibm/general/service-discovery-configuration.png new file mode 100644 index 00000000..493e20ab Binary files /dev/null and b/resources/ibm/general/service-discovery-configuration.png differ diff --git a/resources/ibm/general/text-to-speech.png b/resources/ibm/general/text-to-speech.png new file mode 100644 index 00000000..f4f2302f Binary files /dev/null and b/resources/ibm/general/text-to-speech.png differ diff --git a/resources/ibm/general/transformation-connectivity.png b/resources/ibm/general/transformation-connectivity.png new file mode 100644 index 00000000..e0afec52 Binary files /dev/null and b/resources/ibm/general/transformation-connectivity.png differ diff --git a/resources/ibm/infrastructure/channels.png b/resources/ibm/infrastructure/channels.png new file mode 100644 index 00000000..62cbd980 Binary files /dev/null and b/resources/ibm/infrastructure/channels.png differ diff --git a/resources/ibm/infrastructure/cloud-messaging.png b/resources/ibm/infrastructure/cloud-messaging.png new file mode 100644 index 00000000..2fb1d678 Binary files /dev/null and b/resources/ibm/infrastructure/cloud-messaging.png differ diff --git a/resources/ibm/infrastructure/dashboard.png b/resources/ibm/infrastructure/dashboard.png new file mode 100644 index 00000000..1bda27ce Binary files /dev/null and b/resources/ibm/infrastructure/dashboard.png differ diff --git a/resources/ibm/infrastructure/diagnostics.png b/resources/ibm/infrastructure/diagnostics.png new file mode 100644 index 00000000..2032935d Binary files /dev/null and b/resources/ibm/infrastructure/diagnostics.png differ diff --git a/resources/ibm/infrastructure/edge-services.png b/resources/ibm/infrastructure/edge-services.png new file mode 100644 index 00000000..05a127a0 Binary files /dev/null and b/resources/ibm/infrastructure/edge-services.png differ diff --git a/resources/ibm/infrastructure/enterprise-messaging.png b/resources/ibm/infrastructure/enterprise-messaging.png new file mode 100644 index 00000000..04b2f16c Binary files /dev/null and b/resources/ibm/infrastructure/enterprise-messaging.png differ diff --git a/resources/ibm/infrastructure/event-feed.png b/resources/ibm/infrastructure/event-feed.png new file mode 100644 index 00000000..bf474412 Binary files /dev/null and b/resources/ibm/infrastructure/event-feed.png differ diff --git a/resources/ibm/infrastructure/infrastructure-services.png b/resources/ibm/infrastructure/infrastructure-services.png new file mode 100644 index 00000000..33719df2 Binary files /dev/null and b/resources/ibm/infrastructure/infrastructure-services.png differ diff --git a/resources/ibm/infrastructure/interservice-communication.png b/resources/ibm/infrastructure/interservice-communication.png new file mode 100644 index 00000000..9de54733 Binary files /dev/null and b/resources/ibm/infrastructure/interservice-communication.png differ diff --git a/resources/ibm/infrastructure/load-balancing-routing.png b/resources/ibm/infrastructure/load-balancing-routing.png new file mode 100644 index 00000000..b6eb6172 Binary files /dev/null and b/resources/ibm/infrastructure/load-balancing-routing.png differ diff --git a/resources/ibm/infrastructure/microservices-mesh.png b/resources/ibm/infrastructure/microservices-mesh.png new file mode 100644 index 00000000..c492d17e Binary files /dev/null and b/resources/ibm/infrastructure/microservices-mesh.png differ diff --git a/resources/ibm/infrastructure/mobile-backend.png b/resources/ibm/infrastructure/mobile-backend.png new file mode 100644 index 00000000..d6b154e6 Binary files /dev/null and b/resources/ibm/infrastructure/mobile-backend.png differ diff --git a/resources/ibm/infrastructure/mobile-provider-network.png b/resources/ibm/infrastructure/mobile-provider-network.png new file mode 100644 index 00000000..9080cda4 Binary files /dev/null and b/resources/ibm/infrastructure/mobile-provider-network.png differ diff --git a/resources/ibm/infrastructure/monitoring-logging.png b/resources/ibm/infrastructure/monitoring-logging.png new file mode 100644 index 00000000..7fa17adb Binary files /dev/null and b/resources/ibm/infrastructure/monitoring-logging.png differ diff --git a/resources/ibm/infrastructure/monitoring.png b/resources/ibm/infrastructure/monitoring.png new file mode 100644 index 00000000..417153de Binary files /dev/null and b/resources/ibm/infrastructure/monitoring.png differ diff --git a/resources/ibm/infrastructure/peer-services.png b/resources/ibm/infrastructure/peer-services.png new file mode 100644 index 00000000..7b1f1c1f Binary files /dev/null and b/resources/ibm/infrastructure/peer-services.png differ diff --git a/resources/ibm/infrastructure/service-discovery-configuration.png b/resources/ibm/infrastructure/service-discovery-configuration.png new file mode 100644 index 00000000..c3124dc8 Binary files /dev/null and b/resources/ibm/infrastructure/service-discovery-configuration.png differ diff --git a/resources/ibm/infrastructure/transformation-connectivity.png b/resources/ibm/infrastructure/transformation-connectivity.png new file mode 100644 index 00000000..dbe9301d Binary files /dev/null and b/resources/ibm/infrastructure/transformation-connectivity.png differ diff --git a/resources/ibm/management/alert-notification.png b/resources/ibm/management/alert-notification.png new file mode 100644 index 00000000..e2417e46 Binary files /dev/null and b/resources/ibm/management/alert-notification.png differ diff --git a/resources/ibm/management/api-management.png b/resources/ibm/management/api-management.png new file mode 100644 index 00000000..a1ea07f0 Binary files /dev/null and b/resources/ibm/management/api-management.png differ diff --git a/resources/ibm/management/cloud-management.png b/resources/ibm/management/cloud-management.png new file mode 100644 index 00000000..efc561df Binary files /dev/null and b/resources/ibm/management/cloud-management.png differ diff --git a/resources/ibm/management/cluster-management.png b/resources/ibm/management/cluster-management.png new file mode 100644 index 00000000..14c46353 Binary files /dev/null and b/resources/ibm/management/cluster-management.png differ diff --git a/resources/ibm/management/content-management.png b/resources/ibm/management/content-management.png new file mode 100644 index 00000000..de3b5b95 Binary files /dev/null and b/resources/ibm/management/content-management.png differ diff --git a/resources/ibm/management/data-services.png b/resources/ibm/management/data-services.png new file mode 100644 index 00000000..a470a493 Binary files /dev/null and b/resources/ibm/management/data-services.png differ diff --git a/resources/ibm/management/device-management.png b/resources/ibm/management/device-management.png new file mode 100644 index 00000000..ce51b242 Binary files /dev/null and b/resources/ibm/management/device-management.png differ diff --git a/resources/ibm/management/information-governance.png b/resources/ibm/management/information-governance.png new file mode 100644 index 00000000..ed822ea1 Binary files /dev/null and b/resources/ibm/management/information-governance.png differ diff --git a/resources/ibm/management/it-service-management.png b/resources/ibm/management/it-service-management.png new file mode 100644 index 00000000..c15505a7 Binary files /dev/null and b/resources/ibm/management/it-service-management.png differ diff --git a/resources/ibm/management/management.png b/resources/ibm/management/management.png new file mode 100644 index 00000000..6e6c60ba Binary files /dev/null and b/resources/ibm/management/management.png differ diff --git a/resources/ibm/management/monitoring-metrics.png b/resources/ibm/management/monitoring-metrics.png new file mode 100644 index 00000000..d66fa226 Binary files /dev/null and b/resources/ibm/management/monitoring-metrics.png differ diff --git a/resources/ibm/management/process-management.png b/resources/ibm/management/process-management.png new file mode 100644 index 00000000..7932b938 Binary files /dev/null and b/resources/ibm/management/process-management.png differ diff --git a/resources/ibm/management/provider-cloud-portal-service.png b/resources/ibm/management/provider-cloud-portal-service.png new file mode 100644 index 00000000..dfefa7c5 Binary files /dev/null and b/resources/ibm/management/provider-cloud-portal-service.png differ diff --git a/resources/ibm/management/push-notifications.png b/resources/ibm/management/push-notifications.png new file mode 100644 index 00000000..b97e80b4 Binary files /dev/null and b/resources/ibm/management/push-notifications.png differ diff --git a/resources/ibm/management/service-management-tools.png b/resources/ibm/management/service-management-tools.png new file mode 100644 index 00000000..14677bb2 Binary files /dev/null and b/resources/ibm/management/service-management-tools.png differ diff --git a/resources/ibm/network/bridge.png b/resources/ibm/network/bridge.png new file mode 100644 index 00000000..43e3369b Binary files /dev/null and b/resources/ibm/network/bridge.png differ diff --git a/resources/ibm/network/direct-link.png b/resources/ibm/network/direct-link.png new file mode 100644 index 00000000..a4c4de3f Binary files /dev/null and b/resources/ibm/network/direct-link.png differ diff --git a/resources/ibm/network/enterprise.png b/resources/ibm/network/enterprise.png new file mode 100644 index 00000000..c80ee603 Binary files /dev/null and b/resources/ibm/network/enterprise.png differ diff --git a/resources/ibm/network/firewall.png b/resources/ibm/network/firewall.png new file mode 100644 index 00000000..f2405d9f Binary files /dev/null and b/resources/ibm/network/firewall.png differ diff --git a/resources/ibm/network/floating-ip.png b/resources/ibm/network/floating-ip.png new file mode 100644 index 00000000..68a627b2 Binary files /dev/null and b/resources/ibm/network/floating-ip.png differ diff --git a/resources/ibm/network/gateway.png b/resources/ibm/network/gateway.png new file mode 100644 index 00000000..dd640044 Binary files /dev/null and b/resources/ibm/network/gateway.png differ diff --git a/resources/ibm/network/internet-services.png b/resources/ibm/network/internet-services.png new file mode 100644 index 00000000..b8980aa2 Binary files /dev/null and b/resources/ibm/network/internet-services.png differ diff --git a/resources/ibm/network/load-balancer-listener.png b/resources/ibm/network/load-balancer-listener.png new file mode 100644 index 00000000..c0e5f8d4 Binary files /dev/null and b/resources/ibm/network/load-balancer-listener.png differ diff --git a/resources/ibm/network/load-balancer-pool.png b/resources/ibm/network/load-balancer-pool.png new file mode 100644 index 00000000..376eed58 Binary files /dev/null and b/resources/ibm/network/load-balancer-pool.png differ diff --git a/resources/ibm/network/load-balancer.png b/resources/ibm/network/load-balancer.png new file mode 100644 index 00000000..6f53b5c2 Binary files /dev/null and b/resources/ibm/network/load-balancer.png differ diff --git a/resources/ibm/network/load-balancing-routing.png b/resources/ibm/network/load-balancing-routing.png new file mode 100644 index 00000000..9bcf29b2 Binary files /dev/null and b/resources/ibm/network/load-balancing-routing.png differ diff --git a/resources/ibm/network/public-gateway.png b/resources/ibm/network/public-gateway.png new file mode 100644 index 00000000..9bda09fd Binary files /dev/null and b/resources/ibm/network/public-gateway.png differ diff --git a/resources/ibm/network/region.png b/resources/ibm/network/region.png new file mode 100644 index 00000000..92ea7bdf Binary files /dev/null and b/resources/ibm/network/region.png differ diff --git a/resources/ibm/network/router.png b/resources/ibm/network/router.png new file mode 100644 index 00000000..b6fa9966 Binary files /dev/null and b/resources/ibm/network/router.png differ diff --git a/resources/ibm/network/rules.png b/resources/ibm/network/rules.png new file mode 100644 index 00000000..df44b87e Binary files /dev/null and b/resources/ibm/network/rules.png differ diff --git a/resources/ibm/network/subnet.png b/resources/ibm/network/subnet.png new file mode 100644 index 00000000..0f0fc0d1 Binary files /dev/null and b/resources/ibm/network/subnet.png differ diff --git a/resources/ibm/network/transit-gateway.png b/resources/ibm/network/transit-gateway.png new file mode 100644 index 00000000..0d4c4783 Binary files /dev/null and b/resources/ibm/network/transit-gateway.png differ diff --git a/resources/ibm/network/vpc.png b/resources/ibm/network/vpc.png new file mode 100644 index 00000000..eabb6b25 Binary files /dev/null and b/resources/ibm/network/vpc.png differ diff --git a/resources/ibm/network/vpn-connection.png b/resources/ibm/network/vpn-connection.png new file mode 100644 index 00000000..91613596 Binary files /dev/null and b/resources/ibm/network/vpn-connection.png differ diff --git a/resources/ibm/network/vpn-gateway.png b/resources/ibm/network/vpn-gateway.png new file mode 100644 index 00000000..c1613fef Binary files /dev/null and b/resources/ibm/network/vpn-gateway.png differ diff --git a/resources/ibm/network/vpn-policy.png b/resources/ibm/network/vpn-policy.png new file mode 100644 index 00000000..6fec2da6 Binary files /dev/null and b/resources/ibm/network/vpn-policy.png differ diff --git a/resources/ibm/security/api-security.png b/resources/ibm/security/api-security.png new file mode 100644 index 00000000..142d1e90 Binary files /dev/null and b/resources/ibm/security/api-security.png differ diff --git a/resources/ibm/security/blockchain-security-service.png b/resources/ibm/security/blockchain-security-service.png new file mode 100644 index 00000000..90e07afa Binary files /dev/null and b/resources/ibm/security/blockchain-security-service.png differ diff --git a/resources/ibm/security/data-security.png b/resources/ibm/security/data-security.png new file mode 100644 index 00000000..117a1054 Binary files /dev/null and b/resources/ibm/security/data-security.png differ diff --git a/resources/ibm/security/firewall.png b/resources/ibm/security/firewall.png new file mode 100644 index 00000000..55e75709 Binary files /dev/null and b/resources/ibm/security/firewall.png differ diff --git a/resources/ibm/security/gateway.png b/resources/ibm/security/gateway.png new file mode 100644 index 00000000..54d707f9 Binary files /dev/null and b/resources/ibm/security/gateway.png differ diff --git a/resources/ibm/security/governance-risk-compliance.png b/resources/ibm/security/governance-risk-compliance.png new file mode 100644 index 00000000..57626ad2 Binary files /dev/null and b/resources/ibm/security/governance-risk-compliance.png differ diff --git a/resources/ibm/security/identity-access-management.png b/resources/ibm/security/identity-access-management.png new file mode 100644 index 00000000..c98bffd0 Binary files /dev/null and b/resources/ibm/security/identity-access-management.png differ diff --git a/resources/ibm/security/identity-provider.png b/resources/ibm/security/identity-provider.png new file mode 100644 index 00000000..74325f7f Binary files /dev/null and b/resources/ibm/security/identity-provider.png differ diff --git a/resources/ibm/security/infrastructure-security.png b/resources/ibm/security/infrastructure-security.png new file mode 100644 index 00000000..3f7ab383 Binary files /dev/null and b/resources/ibm/security/infrastructure-security.png differ diff --git a/resources/ibm/security/physical-security.png b/resources/ibm/security/physical-security.png new file mode 100644 index 00000000..b7377086 Binary files /dev/null and b/resources/ibm/security/physical-security.png differ diff --git a/resources/ibm/security/security-monitoring-intelligence.png b/resources/ibm/security/security-monitoring-intelligence.png new file mode 100644 index 00000000..a9c2fc96 Binary files /dev/null and b/resources/ibm/security/security-monitoring-intelligence.png differ diff --git a/resources/ibm/security/security-services.png b/resources/ibm/security/security-services.png new file mode 100644 index 00000000..d6a49d68 Binary files /dev/null and b/resources/ibm/security/security-services.png differ diff --git a/resources/ibm/security/trustend-computing.png b/resources/ibm/security/trustend-computing.png new file mode 100644 index 00000000..5c47988b Binary files /dev/null and b/resources/ibm/security/trustend-computing.png differ diff --git a/resources/ibm/security/vpn.png b/resources/ibm/security/vpn.png new file mode 100644 index 00000000..1837c350 Binary files /dev/null and b/resources/ibm/security/vpn.png differ diff --git a/resources/ibm/social/communities.png b/resources/ibm/social/communities.png new file mode 100644 index 00000000..a73892f6 Binary files /dev/null and b/resources/ibm/social/communities.png differ diff --git a/resources/ibm/social/file-sync.png b/resources/ibm/social/file-sync.png new file mode 100644 index 00000000..99d3fe8d Binary files /dev/null and b/resources/ibm/social/file-sync.png differ diff --git a/resources/ibm/social/live-collaboration.png b/resources/ibm/social/live-collaboration.png new file mode 100644 index 00000000..b8e7d602 Binary files /dev/null and b/resources/ibm/social/live-collaboration.png differ diff --git a/resources/ibm/social/messaging.png b/resources/ibm/social/messaging.png new file mode 100644 index 00000000..9307bc5b Binary files /dev/null and b/resources/ibm/social/messaging.png differ diff --git a/resources/ibm/social/networking.png b/resources/ibm/social/networking.png new file mode 100644 index 00000000..e4e55df2 Binary files /dev/null and b/resources/ibm/social/networking.png differ diff --git a/resources/ibm/storage/block-storage.png b/resources/ibm/storage/block-storage.png new file mode 100644 index 00000000..c31bf5fc Binary files /dev/null and b/resources/ibm/storage/block-storage.png differ diff --git a/resources/ibm/storage/object-storage.png b/resources/ibm/storage/object-storage.png new file mode 100644 index 00000000..e239629f Binary files /dev/null and b/resources/ibm/storage/object-storage.png differ diff --git a/resources/ibm/user/browser.png b/resources/ibm/user/browser.png new file mode 100644 index 00000000..12556076 Binary files /dev/null and b/resources/ibm/user/browser.png differ diff --git a/resources/ibm/user/device.png b/resources/ibm/user/device.png new file mode 100644 index 00000000..e637f1b1 Binary files /dev/null and b/resources/ibm/user/device.png differ diff --git a/resources/ibm/user/integrated-digital-experiences.png b/resources/ibm/user/integrated-digital-experiences.png new file mode 100644 index 00000000..933c2a67 Binary files /dev/null and b/resources/ibm/user/integrated-digital-experiences.png differ diff --git a/resources/ibm/user/physical-entity.png b/resources/ibm/user/physical-entity.png new file mode 100644 index 00000000..51304eb6 Binary files /dev/null and b/resources/ibm/user/physical-entity.png differ diff --git a/resources/ibm/user/sensor.png b/resources/ibm/user/sensor.png new file mode 100644 index 00000000..ccbc9505 Binary files /dev/null and b/resources/ibm/user/sensor.png differ diff --git a/resources/ibm/user/user.png b/resources/ibm/user/user.png new file mode 100644 index 00000000..2ac69c61 Binary files /dev/null and b/resources/ibm/user/user.png differ diff --git a/resources/oci/connectivity/customer-premise-white.png b/resources/oci/connectivity/customer-premises-white.png similarity index 100% rename from resources/oci/connectivity/customer-premise-white.png rename to resources/oci/connectivity/customer-premises-white.png diff --git a/resources/oci/connectivity/customer-premise.png b/resources/oci/connectivity/customer-premises.png similarity index 100% rename from resources/oci/connectivity/customer-premise.png rename to resources/oci/connectivity/customer-premises.png diff --git a/resources/onprem/analytics/dremio.png b/resources/onprem/analytics/dremio.png new file mode 100644 index 00000000..ba4c8b1d Binary files /dev/null and b/resources/onprem/analytics/dremio.png differ diff --git a/resources/onprem/analytics/trino.png b/resources/onprem/analytics/trino.png new file mode 100644 index 00000000..57de0e6c Binary files /dev/null and b/resources/onprem/analytics/trino.png differ diff --git a/resources/onprem/container/k3s.png b/resources/onprem/container/k3s.png new file mode 100644 index 00000000..eb9330c5 Binary files /dev/null and b/resources/onprem/container/k3s.png differ diff --git a/resources/onprem/iac/puppet.png b/resources/onprem/iac/puppet.png new file mode 100644 index 00000000..5b402365 Binary files /dev/null and b/resources/onprem/iac/puppet.png differ diff --git a/resources/onprem/messaging/centrifugo.png b/resources/onprem/messaging/centrifugo.png new file mode 100644 index 00000000..0821cba9 Binary files /dev/null and b/resources/onprem/messaging/centrifugo.png differ diff --git a/resources/onprem/mlops/mlflow.png b/resources/onprem/mlops/mlflow.png new file mode 100644 index 00000000..3af24ab7 Binary files /dev/null and b/resources/onprem/mlops/mlflow.png differ diff --git a/resources/onprem/monitoring/dynatrace.png b/resources/onprem/monitoring/dynatrace.png new file mode 100644 index 00000000..4d6abfa8 Binary files /dev/null and b/resources/onprem/monitoring/dynatrace.png differ diff --git a/resources/onprem/monitoring/mimir.png b/resources/onprem/monitoring/mimir.png new file mode 100644 index 00000000..fd1661d1 Binary files /dev/null and b/resources/onprem/monitoring/mimir.png differ diff --git a/resources/onprem/monitoring/nagios.png b/resources/onprem/monitoring/nagios.png new file mode 100644 index 00000000..a4e40c42 Binary files /dev/null and b/resources/onprem/monitoring/nagios.png differ diff --git a/resources/onprem/network/glassfish.png b/resources/onprem/network/glassfish.png index a94d2dd0..a8d2d777 100644 Binary files a/resources/onprem/network/glassfish.png and b/resources/onprem/network/glassfish.png differ diff --git a/resources/onprem/network/gunicorn.png b/resources/onprem/network/gunicorn.png index 6d277e02..1af455e2 100644 Binary files a/resources/onprem/network/gunicorn.png and b/resources/onprem/network/gunicorn.png differ diff --git a/resources/onprem/network/mikrotik.png b/resources/onprem/network/mikrotik.png new file mode 100644 index 00000000..515b685e Binary files /dev/null and b/resources/onprem/network/mikrotik.png differ diff --git a/resources/onprem/network/ocelot.png b/resources/onprem/network/ocelot.png index 12160573..99943164 100644 Binary files a/resources/onprem/network/ocelot.png and b/resources/onprem/network/ocelot.png differ diff --git a/resources/onprem/network/powerdns.png b/resources/onprem/network/powerdns.png index 491c66cb..5c177701 100644 Binary files a/resources/onprem/network/powerdns.png and b/resources/onprem/network/powerdns.png differ diff --git a/resources/onprem/network/tyk.png b/resources/onprem/network/tyk.png new file mode 100644 index 00000000..3fc4cfb4 Binary files /dev/null and b/resources/onprem/network/tyk.png differ diff --git a/resources/onprem/network/yarp.png b/resources/onprem/network/yarp.png new file mode 100644 index 00000000..4078dd5c Binary files /dev/null and b/resources/onprem/network/yarp.png differ diff --git a/resources/onprem/queue/emqx.png b/resources/onprem/queue/emqx.png new file mode 100644 index 00000000..b2776cfa Binary files /dev/null and b/resources/onprem/queue/emqx.png differ diff --git a/resources/onprem/registry/harbor.png b/resources/onprem/registry/harbor.png new file mode 100644 index 00000000..4f2c9095 Binary files /dev/null and b/resources/onprem/registry/harbor.png differ diff --git a/resources/onprem/registry/jfrog.png b/resources/onprem/registry/jfrog.png new file mode 100644 index 00000000..931bfd81 Binary files /dev/null and b/resources/onprem/registry/jfrog.png differ diff --git a/resources/onprem/storage/portworx.png b/resources/onprem/storage/portworx.png new file mode 100644 index 00000000..7464ed04 Binary files /dev/null and b/resources/onprem/storage/portworx.png differ diff --git a/resources/onprem/tracing/tempo.png b/resources/onprem/tracing/tempo.png new file mode 100644 index 00000000..d0f519d0 Binary files /dev/null and b/resources/onprem/tracing/tempo.png differ diff --git a/resources/onprem/vcs/gitea.png b/resources/onprem/vcs/gitea.png new file mode 100644 index 00000000..8f2e3467 Binary files /dev/null and b/resources/onprem/vcs/gitea.png differ diff --git a/resources/onprem/vcs/svn.png b/resources/onprem/vcs/svn.png new file mode 100644 index 00000000..bb1ff09a Binary files /dev/null and b/resources/onprem/vcs/svn.png differ diff --git a/resources/openstack/operations/billing/cloudkitty.png b/resources/openstack/billing/cloudkitty.png similarity index 100% rename from resources/openstack/operations/billing/cloudkitty.png rename to resources/openstack/billing/cloudkitty.png diff --git a/resources/openstack/adjacentenablers/containerservices/kuryr.png b/resources/openstack/containerservices/kuryr.png similarity index 100% rename from resources/openstack/adjacentenablers/containerservices/kuryr.png rename to resources/openstack/containerservices/kuryr.png diff --git a/resources/openstack/lifecyclemanagement/deployment/ansible.png b/resources/openstack/deployment/ansible.png similarity index 100% rename from resources/openstack/lifecyclemanagement/deployment/ansible.png rename to resources/openstack/deployment/ansible.png diff --git a/resources/openstack/lifecyclemanagement/deployment/charms.png b/resources/openstack/deployment/charms.png similarity index 100% rename from resources/openstack/lifecyclemanagement/deployment/charms.png rename to resources/openstack/deployment/charms.png diff --git a/resources/openstack/lifecyclemanagement/deployment/chef.png b/resources/openstack/deployment/chef.png similarity index 100% rename from resources/openstack/lifecyclemanagement/deployment/chef.png rename to resources/openstack/deployment/chef.png diff --git a/resources/openstack/lifecyclemanagement/deployment/helm.png b/resources/openstack/deployment/helm.png similarity index 100% rename from resources/openstack/lifecyclemanagement/deployment/helm.png rename to resources/openstack/deployment/helm.png diff --git a/resources/openstack/lifecyclemanagement/deployment/kolla.png b/resources/openstack/deployment/kolla.png similarity index 100% rename from resources/openstack/lifecyclemanagement/deployment/kolla.png rename to resources/openstack/deployment/kolla.png diff --git a/resources/openstack/lifecyclemanagement/deployment/tripleo.png b/resources/openstack/deployment/tripleo.png similarity index 100% rename from resources/openstack/lifecyclemanagement/deployment/tripleo.png rename to resources/openstack/deployment/tripleo.png diff --git a/resources/openstack/operations/monitoring/monasca.png b/resources/openstack/monitoring/monasca.png similarity index 100% rename from resources/openstack/operations/monitoring/monasca.png rename to resources/openstack/monitoring/monasca.png diff --git a/resources/openstack/operations/monitoring/telemetry.png b/resources/openstack/monitoring/telemetry.png similarity index 100% rename from resources/openstack/operations/monitoring/telemetry.png rename to resources/openstack/monitoring/telemetry.png diff --git a/resources/openstack/operations/multiregion/tricircle.png b/resources/openstack/multiregion/tricircle.png similarity index 100% rename from resources/openstack/operations/multiregion/tricircle.png rename to resources/openstack/multiregion/tricircle.png diff --git a/resources/openstack/adjacentenablers/nfv/tacker.png b/resources/openstack/nfv/tacker.png similarity index 100% rename from resources/openstack/adjacentenablers/nfv/tacker.png rename to resources/openstack/nfv/tacker.png diff --git a/resources/openstack/operations/optimization/congress.png b/resources/openstack/optimization/congress.png similarity index 100% rename from resources/openstack/operations/optimization/congress.png rename to resources/openstack/optimization/congress.png diff --git a/resources/openstack/operations/optimization/rally.png b/resources/openstack/optimization/rally.png similarity index 100% rename from resources/openstack/operations/optimization/rally.png rename to resources/openstack/optimization/rally.png diff --git a/resources/openstack/operations/optimization/vitrage.png b/resources/openstack/optimization/vitrage.png similarity index 100% rename from resources/openstack/operations/optimization/vitrage.png rename to resources/openstack/optimization/vitrage.png diff --git a/resources/openstack/operations/optimization/watcher.png b/resources/openstack/optimization/watcher.png similarity index 100% rename from resources/openstack/operations/optimization/watcher.png rename to resources/openstack/optimization/watcher.png diff --git a/resources/openstack/lifecyclemanagement/packaging/loci.png b/resources/openstack/packaging/loci.png similarity index 100% rename from resources/openstack/lifecyclemanagement/packaging/loci.png rename to resources/openstack/packaging/loci.png diff --git a/resources/openstack/lifecyclemanagement/packaging/puppet.png b/resources/openstack/packaging/puppet.png similarity index 100% rename from resources/openstack/lifecyclemanagement/packaging/puppet.png rename to resources/openstack/packaging/puppet.png diff --git a/resources/openstack/lifecyclemanagement/packaging/rpm.png b/resources/openstack/packaging/rpm.png similarity index 100% rename from resources/openstack/lifecyclemanagement/packaging/rpm.png rename to resources/openstack/packaging/rpm.png diff --git a/resources/programming/framework/camel.png b/resources/programming/framework/camel.png new file mode 100644 index 00000000..f71ba159 Binary files /dev/null and b/resources/programming/framework/camel.png differ diff --git a/resources/programming/framework/dotnet.png b/resources/programming/framework/dotnet.png new file mode 100644 index 00000000..851e1b76 Binary files /dev/null and b/resources/programming/framework/dotnet.png differ diff --git a/resources/programming/framework/flask.png b/resources/programming/framework/flask.png index 98fe1fdb..18c396a6 100644 Binary files a/resources/programming/framework/flask.png and b/resources/programming/framework/flask.png differ diff --git a/resources/programming/framework/graphql.png b/resources/programming/framework/graphql.png new file mode 100644 index 00000000..fe9e52d5 Binary files /dev/null and b/resources/programming/framework/graphql.png differ diff --git a/resources/programming/framework/hibernate.png b/resources/programming/framework/hibernate.png new file mode 100644 index 00000000..35a60287 Binary files /dev/null and b/resources/programming/framework/hibernate.png differ diff --git a/resources/programming/framework/jhipster.png b/resources/programming/framework/jhipster.png new file mode 100644 index 00000000..cde8aa9c Binary files /dev/null and b/resources/programming/framework/jhipster.png differ diff --git a/resources/programming/framework/nextjs.png b/resources/programming/framework/nextjs.png new file mode 100644 index 00000000..3306955a Binary files /dev/null and b/resources/programming/framework/nextjs.png differ diff --git a/resources/programming/framework/quarkus.png b/resources/programming/framework/quarkus.png new file mode 100644 index 00000000..4a90d922 Binary files /dev/null and b/resources/programming/framework/quarkus.png differ diff --git a/resources/programming/framework/starlette.png b/resources/programming/framework/starlette.png new file mode 100644 index 00000000..b04720c9 Binary files /dev/null and b/resources/programming/framework/starlette.png differ diff --git a/resources/programming/framework/svelte.png b/resources/programming/framework/svelte.png new file mode 100644 index 00000000..463cc473 Binary files /dev/null and b/resources/programming/framework/svelte.png differ diff --git a/resources/programming/framework/vercel.png b/resources/programming/framework/vercel.png new file mode 100644 index 00000000..6277be3f Binary files /dev/null and b/resources/programming/framework/vercel.png differ diff --git a/resources/programming/language/elixir.png b/resources/programming/language/elixir.png index 86e7bddd..2ef4cafa 100644 Binary files a/resources/programming/language/elixir.png and b/resources/programming/language/elixir.png differ diff --git a/resources/programming/language/latex.png b/resources/programming/language/latex.png new file mode 100644 index 00000000..c2243e7a Binary files /dev/null and b/resources/programming/language/latex.png differ diff --git a/resources/programming/runtime/dapr.png b/resources/programming/runtime/dapr.png new file mode 100644 index 00000000..7c5f1cff Binary files /dev/null and b/resources/programming/runtime/dapr.png differ diff --git a/resources/saas/alerting/pagerduty.png b/resources/saas/alerting/pagerduty.png new file mode 100644 index 00000000..4e369e30 Binary files /dev/null and b/resources/saas/alerting/pagerduty.png differ diff --git a/resources/saas/alerting/xmatters.png b/resources/saas/alerting/xmatters.png new file mode 100644 index 00000000..60363c39 Binary files /dev/null and b/resources/saas/alerting/xmatters.png differ diff --git a/resources/saas/analytics/dataform.png b/resources/saas/analytics/dataform.png new file mode 100644 index 00000000..c41f16fa Binary files /dev/null and b/resources/saas/analytics/dataform.png differ diff --git a/resources/saas/cdn/fastly.png b/resources/saas/cdn/fastly.png new file mode 100644 index 00000000..6fffd670 Binary files /dev/null and b/resources/saas/cdn/fastly.png differ diff --git a/resources/saas/chat/line.png b/resources/saas/chat/line.png new file mode 100644 index 00000000..ef77de1b Binary files /dev/null and b/resources/saas/chat/line.png differ diff --git a/resources/saas/chat/messenger.png b/resources/saas/chat/messenger.png new file mode 100644 index 00000000..0dd9e89e Binary files /dev/null and b/resources/saas/chat/messenger.png differ diff --git a/resources/saas/communication/twilio.png b/resources/saas/communication/twilio.png new file mode 100644 index 00000000..86cbbf53 Binary files /dev/null and b/resources/saas/communication/twilio.png differ diff --git a/resources/saas/security/crowdstrike.png b/resources/saas/security/crowdstrike.png new file mode 100644 index 00000000..4b2dc92e Binary files /dev/null and b/resources/saas/security/crowdstrike.png differ diff --git a/resources/saas/security/sonarqube.png b/resources/saas/security/sonarqube.png new file mode 100644 index 00000000..b6070ae2 Binary files /dev/null and b/resources/saas/security/sonarqube.png differ diff --git a/scripts/__init__.py b/scripts/__init__.py index da782986..5f7fbe72 100644 --- a/scripts/__init__.py +++ b/scripts/__init__.py @@ -4,21 +4,21 @@ from pathlib import Path import config as cfg +def base_dir() -> Path: + return Path(os.path.abspath(os.path.dirname(__file__))).parent + + def app_root_dir(pvd: str) -> str: - basedir = Path(os.path.abspath(os.path.dirname(__file__))) - return os.path.join(basedir.parent, cfg.DIR_APP_ROOT, pvd) + return os.path.join(base_dir(), cfg.DIR_APP_ROOT, pvd) def doc_root_dir() -> str: - basedir = Path(os.path.abspath(os.path.dirname(__file__))) - return os.path.join(basedir.parent, cfg.DIR_DOC_ROOT) + return os.path.join(base_dir(), cfg.DIR_DOC_ROOT) def resource_dir(pvd: str) -> str: - basedir = Path(os.path.abspath(os.path.dirname(__file__))) - return os.path.join(basedir.parent, cfg.DIR_RESOURCE, pvd) + return os.path.join(base_dir(), cfg.DIR_RESOURCE, pvd) def template_dir() -> str: - basedir = Path(os.path.abspath(os.path.dirname(__file__))) - return os.path.join(basedir.parent, cfg.DIR_TEMPLATE) + return os.path.join(base_dir(), cfg.DIR_TEMPLATE) diff --git a/scripts/generate.py b/scripts/generate.py index d757b9cf..299f3941 100644 --- a/scripts/generate.py +++ b/scripts/generate.py @@ -5,7 +5,7 @@ from typing import Iterable from jinja2 import Environment, FileSystemLoader, Template, exceptions import config as cfg -from . import app_root_dir, doc_root_dir, resource_dir, template_dir +from . import app_root_dir, doc_root_dir, resource_dir, template_dir, base_dir _usage = "Usage: generate.py " @@ -55,11 +55,13 @@ def gen_apidoc(pvd: str, typ_paths: dict) -> str: return name typ_classes = {} - for typ, paths in sorted(typ_paths.items()): + for typ, (paths, resource_root) in sorted(typ_paths.items()): typ_classes[typ] = [] - for name in map(_gen_class_name, paths): + for path in paths: + name = _gen_class_name(path) + resource_path = os.path.join(resource_root, path) alias = cfg.ALIASES[pvd].get(typ, {}).get(name) - typ_classes[typ].append({"name": name, "alias": alias}) + typ_classes[typ].append({"name": name, "alias": alias, "resource_path": resource_path}) return tmpl.render(pvd=pvd, typ_classes=typ_classes) @@ -80,6 +82,7 @@ def make_apidoc(pvd: str, content: str) -> None: def generate(pvd: str) -> None: """Generates a service node classes.""" typ_paths = {} + base = base_dir() for root, _, files in os.walk(resource_dir(pvd)): # Extract the names and paths from resources. files.sort() @@ -91,10 +94,11 @@ def generate(pvd: str) -> None: if typ == pvd: continue + resource_root = os.path.relpath(root, base) classes = gen_classes(pvd, typ, paths) make_module(pvd, typ, classes) - typ_paths[typ] = paths + typ_paths[typ] = (paths, resource_root) # Build API documentation apidoc = gen_apidoc(pvd, typ_paths) make_apidoc(pvd, apidoc) diff --git a/scripts/resource.py b/scripts/resource.py index e36432b0..cdea9379 100644 --- a/scripts/resource.py +++ b/scripts/resource.py @@ -56,6 +56,16 @@ def cleaner_gcp(f): return f.lower() +def cleaner_ibm(f): + f = f.replace("_", "-") + f = "-".join(f.split()) + for p in cfg.FILE_PREFIXES["ibm"]: + if f.startswith(p): + f = f[len(p) :] + break + return f.lower() + + def cleaner_firebase(f): f = f.replace("_", "-") f = "-".join(f.split()) @@ -74,6 +84,14 @@ def cleaner_k8s(f): break return f.lower() +def cleaner_digitalocean(f): + f = f.replace("-32", "") + for p in cfg.FILE_PREFIXES["digitalocean"]: + if f.startswith(p): + f = f[len(p) :] + break + return f.lower() + def cleaner_alibabacloud(f): for p in cfg.FILE_PREFIXES["alibabacloud"]: @@ -121,7 +139,9 @@ cleaners = { "onprem": cleaner_onprem, "aws": cleaner_aws, "azure": cleaner_azure, + "digitalocean": cleaner_digitalocean, "gcp": cleaner_gcp, + "ibm": cleaner_ibm, "firebase": cleaner_firebase, "k8s": cleaner_k8s, "alibabacloud": cleaner_alibabacloud, @@ -154,7 +174,7 @@ def round_png(pvd: str) -> None: def _round(base: str, path: str): path = os.path.join(base, path) - subprocess.call([cfg.CMD_ROUND, *cfg.CMD_ROUND_OPTS, path]) + subprocess.run([cfg.CMD_ROUND, *cfg.CMD_ROUND_OPTS, path]) for root, _, files in os.walk(resource_dir(pvd)): pngs = filter(lambda f: f.endswith(".png"), files) @@ -167,8 +187,8 @@ def svg2png(pvd: str) -> None: def _convert(base: str, path: str): path = os.path.join(base, path) - subprocess.call([cfg.CMD_SVG2PNG, *cfg.CMD_SVG2PNG_OPTS, path]) - subprocess.call(["rm", path]) + subprocess.run([cfg.CMD_SVG2PNG, *cfg.CMD_SVG2PNG_OPTS, path]) + subprocess.run(["rm", path]) for root, _, files in os.walk(resource_dir(pvd)): svgs = filter(lambda f: f.endswith(".svg"), files) @@ -181,8 +201,8 @@ def svg2png2(pvd: str) -> None: def _convert(base: str, path: str): path_src = os.path.join(base, path) path_dest = path_src.replace(".svg", ".png") - subprocess.call([cfg.CMD_SVG2PNG_IM, *cfg.CMD_SVG2PNG_IM_OPTS, path_src, path_dest]) - subprocess.call(["rm", path_src]) + subprocess.run([cfg.CMD_SVG2PNG_IM, *cfg.CMD_SVG2PNG_IM_OPTS, path_src, path_dest]) + subprocess.run(["rm", path_src]) for root, _, files in os.walk(resource_dir(pvd)): svgs = filter(lambda f: f.endswith(".svg"), files) diff --git a/templates/apidoc.tmpl b/templates/apidoc.tmpl index af10cebe..75af3cfb 100644 --- a/templates/apidoc.tmpl +++ b/templates/apidoc.tmpl @@ -3,9 +3,11 @@ id: {{ pvd }} title: {{ pvd|up_or_title(pvd) }} --- -Node classes list of {{ pvd }} provider. +Node classes list of the {{ pvd }} provider. {% for typ, classes in typ_classes.items() %} ## {{ pvd }}.{{ typ }} {% for class in classes %} -- **diagrams.{{ pvd }}.{{ typ }}.{{ class['name'] }}**{% if class['alias'] %}, **{{ class['alias'] }}** (alias){% endif %}{% endfor %} + +{{ class['name'] }} +**diagrams.{{ pvd }}.{{ typ }}.{{ class['name'] }}**{% if class['alias'] %}, **{{ class['alias'] }}** (alias){% endif %}{% endfor %} {% endfor %} diff --git a/tests/test_c4.py b/tests/test_c4.py new file mode 100644 index 00000000..3877ec0f --- /dev/null +++ b/tests/test_c4.py @@ -0,0 +1,64 @@ +import os +import random +import string +import unittest + +from diagrams import Diagram +from diagrams import setcluster, setdiagram +from diagrams.c4 import Person, Container, Database, System, SystemBoundary, Relationship + + +class C4Test(unittest.TestCase): + def setUp(self): + self.name = "diagram-" + "".join([random.choice(string.hexdigits) for n in range(7)]).lower() + + def tearDown(self): + setdiagram(None) + setcluster(None) + try: + os.remove(self.name + ".png") + except FileNotFoundError: + pass + + def test_nodes(self): + with Diagram(name=self.name, show=False): + person = Person("person", "A person.") + container = Container("container", "Java application", "The application.") + database = Database("database", "Oracle database", "Stores information.") + + def test_external_nodes(self): + with Diagram(name=self.name, show=False): + external_person = Person("person", external=True) + external_system = System("external", external=True) + + def test_systems(self): + with Diagram(name=self.name, show=False): + system = System("system", "The internal system.") + system_without_description = System("unknown") + + def test_edges(self): + with Diagram(name=self.name, show=False): + c1 = Container("container1") + c2 = Container("container2") + + c1 >> c2 + + def test_edges_with_labels(self): + with Diagram(name=self.name, show=False): + c1 = Container("container1") + c2 = Container("container2") + + c1 >> Relationship("depends on") >> c2 + c1 << Relationship("is depended on by") << c2 + + def test_edge_without_constraint(self): + with Diagram(name=self.name, show=False): + s1 = System("system 1") + s2 = System("system 2") + + s1 >> Relationship(constraint="False") >> s2 + + def test_cluster(self): + with Diagram(name=self.name, show=False): + with SystemBoundary("System"): + Container("container", "type", "description") diff --git a/tests/test_diagram.py b/tests/test_diagram.py index ad8558c5..00bdacc6 100644 --- a/tests/test_diagram.py +++ b/tests/test_diagram.py @@ -1,6 +1,7 @@ import os import shutil import unittest +import pathlib from diagrams import Cluster, Diagram, Edge, Node from diagrams import getcluster, getdiagram, setcluster, setdiagram @@ -25,7 +26,7 @@ class DiagramTest(unittest.TestCase): def test_validate_direction(self): # Normal directions. - for dir in ("TB", "BT", "LR", "RL"): + for dir in ("TB", "BT", "LR", "RL", "tb"): Diagram(direction=dir) # Invalid directions. @@ -35,7 +36,7 @@ class DiagramTest(unittest.TestCase): def test_validate_curvestyle(self): # Normal directions. - for cvs in ("ortho", "curved"): + for cvs in ("ortho", "curved", "CURVED"): Diagram(curvestyle=cvs) # Invalid directions. @@ -45,7 +46,7 @@ class DiagramTest(unittest.TestCase): def test_validate_outformat(self): # Normal output formats. - for fmt in ("png", "jpg", "svg", "pdf"): + for fmt in ("png", "jpg", "svg", "pdf", "PNG", "dot"): Diagram(outformat=fmt) # Invalid output formats. @@ -106,6 +107,24 @@ class DiagramTest(unittest.TestCase): with Diagram(show=False): Node("node1") self.assertTrue(os.path.exists(f"{self.name}.png")) + + def test_autolabel(self): + with Diagram(name=os.path.join(self.name, "nodes_to_node"), show=False): + node1 = Node("node1") + self.assertTrue(node1.label,"Node\nnode1") + + + def test_outformat_list(self): + """Check that outformat render all the files from the list.""" + self.name = 'diagrams_image' + with Diagram(show=False, outformat=["dot", "png"]): + Node("node1") + # both files must exist + self.assertTrue(os.path.exists(f"{self.name}.png")) + self.assertTrue(os.path.exists(f"{self.name}.dot")) + + # clean the dot file as it only generated here + os.remove(self.name + ".dot") class ClusterTest(unittest.TestCase): @@ -283,3 +302,16 @@ class EdgeTest(unittest.TestCase): self.assertEqual( nodes << Edge(color="green", label="6.3") << Edge(color="pink", label="6.4") << node1, node1 ) + + +class ResourcesTest(unittest.TestCase): + def test_folder_depth(self): + """ + The code currently only handles resource folders up to a dir depth of 2 + i.e. resources///, so check that this depth isn't + exceeded. + """ + resources_dir = pathlib.Path(__file__).parent.parent / 'resources' + max_depth = max(os.path.relpath(d, resources_dir).count(os.sep) + 1 + for d, _, _ in os.walk(resources_dir)) + self.assertLessEqual(max_depth, 2) diff --git a/website/i18n/en.json b/website/i18n/en.json index 1c4a1a31..7af9afd0 100644 --- a/website/i18n/en.json +++ b/website/i18n/en.json @@ -32,9 +32,15 @@ "nodes/azure": { "title": "Azure" }, + "nodes/c4": { + "title": "C4" + }, "nodes/custom": { "title": "Custom" }, + "nodes/digitalocean": { + "title": "DigitalOcean" + }, "nodes/elastic": { "title": "Elastic" }, @@ -47,6 +53,9 @@ "nodes/generic": { "title": "Generic" }, + "nodes/ibm": { + "title": "IBM" + }, "nodes/k8s": { "title": "K8S" }, diff --git a/website/package-lock.json b/website/package-lock.json index 8a918a2f..9c1ef5e0 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -3,259 +3,244 @@ "lockfileVersion": 1, "dependencies": { "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", + "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", "dev": true, "requires": { - "@babel/highlight": "^7.10.4" + "@babel/highlight": "^7.12.13" } }, "@babel/compat-data": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.7.tgz", - "integrity": "sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==", + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.8.tgz", + "integrity": "sha512-EaI33z19T4qN3xLXsGf48M2cDqa6ei9tPZlfLdb2HC+e/cFtREiRd8hdSqDbwdLB0/+gLwqJmCYASH0z2bUdog==", "dev": true }, "@babel/core": { - "version": "7.12.9", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz", - "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.5", - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helpers": "^7.12.5", - "@babel/parser": "^7.12.7", - "@babel/template": "^7.12.7", - "@babel/traverse": "^7.12.9", - "@babel/types": "^7.12.7", + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.13.10.tgz", + "integrity": "sha512-bfIYcT0BdKeAZrovpMqX2Mx5NrgAckGbwT982AkdS5GNfn3KMGiprlBAtmBcFZRUmpaufS6WZFP8trvx8ptFDw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.13.9", + "@babel/helper-compilation-targets": "^7.13.10", + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helpers": "^7.13.10", + "@babel/parser": "^7.13.10", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0", "convert-source-map": "^1.7.0", "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", + "gensync": "^1.0.0-beta.2", "json5": "^2.1.2", "lodash": "^4.17.19", - "resolve": "^1.3.2", - "semver": "^5.4.1", + "semver": "^6.3.0", "source-map": "^0.5.0" } }, "@babel/generator": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz", - "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==", + "version": "7.13.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz", + "integrity": "sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw==", "dev": true, "requires": { - "@babel/types": "^7.12.5", + "@babel/types": "^7.13.0", "jsesc": "^2.5.1", "source-map": "^0.5.0" } }, "@babel/helper-annotate-as-pure": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", - "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz", + "integrity": "sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.12.13" } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz", - "integrity": "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==", - "dev": true, - "requires": { - "@babel/helper-explode-assignable-expression": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-builder-react-jsx": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz", - "integrity": "sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-builder-react-jsx-experimental": { - "version": "7.12.4", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz", - "integrity": "sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz", + "integrity": "sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.10.4", - "@babel/helper-module-imports": "^7.12.1", - "@babel/types": "^7.12.1" + "@babel/helper-explode-assignable-expression": "^7.12.13", + "@babel/types": "^7.12.13" } }, "@babel/helper-compilation-targets": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz", - "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==", + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.10.tgz", + "integrity": "sha512-/Xju7Qg1GQO4mHZ/Kcs6Au7gfafgZnwm+a7sy/ow/tV1sHeraRUHbjdat8/UvDor4Tez+siGKDk6zIKtCPKVJA==", "dev": true, "requires": { - "@babel/compat-data": "^7.12.5", - "@babel/helper-validator-option": "^7.12.1", + "@babel/compat-data": "^7.13.8", + "@babel/helper-validator-option": "^7.12.17", "browserslist": "^4.14.5", - "semver": "^5.5.0" + "semver": "^6.3.0" } }, "@babel/helper-create-class-features-plugin": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz", - "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==", + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.10.tgz", + "integrity": "sha512-YV7r2YxdTUaw84EwNkyrRke/TJHR/UXGiyvACRqvdVJ2/syV2rQuJNnaRLSuYiop8cMRXOgseTGoJCWX0q2fFg==", "dev": true, "requires": { - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-member-expression-to-functions": "^7.12.1", - "@babel/helper-optimise-call-expression": "^7.10.4", - "@babel/helper-replace-supers": "^7.12.1", - "@babel/helper-split-export-declaration": "^7.10.4" + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-member-expression-to-functions": "^7.13.0", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/helper-replace-supers": "^7.13.0", + "@babel/helper-split-export-declaration": "^7.12.13" } }, "@babel/helper-create-regexp-features-plugin": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz", - "integrity": "sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==", + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz", + "integrity": "sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-annotate-as-pure": "^7.12.13", "regexpu-core": "^4.7.1" } }, - "@babel/helper-define-map": { - "version": "7.10.5", - "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz", - "integrity": "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==", + "@babel/helper-define-polyfill-provider": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz", + "integrity": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==", "dev": true, "requires": { - "@babel/helper-function-name": "^7.10.4", - "@babel/types": "^7.10.5", - "lodash": "^4.17.19" + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" } }, "@babel/helper-explode-assignable-expression": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz", - "integrity": "sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz", + "integrity": "sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==", "dev": true, "requires": { - "@babel/types": "^7.12.1" + "@babel/types": "^7.13.0" } }, "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz", + "integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" + "@babel/helper-get-function-arity": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/types": "^7.12.13" } }, "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz", + "integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.12.13" } }, "@babel/helper-hoist-variables": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz", - "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz", + "integrity": "sha512-0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" } }, "@babel/helper-member-expression-to-functions": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz", - "integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz", + "integrity": "sha512-yvRf8Ivk62JwisqV1rFRMxiSMDGnN6KH1/mDMmIrij4jztpQNRoHqqMG3U6apYbGRPJpgPalhva9Yd06HlUxJQ==", "dev": true, "requires": { - "@babel/types": "^7.12.7" + "@babel/types": "^7.13.0" } }, "@babel/helper-module-imports": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz", - "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz", + "integrity": "sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g==", "dev": true, "requires": { - "@babel/types": "^7.12.5" + "@babel/types": "^7.12.13" } }, "@babel/helper-module-transforms": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz", - "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.12.1", - "@babel/helper-replace-supers": "^7.12.1", - "@babel/helper-simple-access": "^7.12.1", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/helper-validator-identifier": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/traverse": "^7.12.1", - "@babel/types": "^7.12.1", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz", + "integrity": "sha512-Ls8/VBwH577+pw7Ku1QkUWIyRRNHpYlts7+qSqBBFCW3I8QteB9DxfcZ5YJpOwH6Ihe/wn8ch7fMGOP1OhEIvw==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-replace-supers": "^7.13.0", + "@babel/helper-simple-access": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/helper-validator-identifier": "^7.12.11", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0", "lodash": "^4.17.19" } }, "@babel/helper-optimise-call-expression": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz", - "integrity": "sha512-I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz", + "integrity": "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==", "dev": true, "requires": { - "@babel/types": "^7.12.7" + "@babel/types": "^7.12.13" } }, "@babel/helper-plugin-utils": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", - "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", + "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==", "dev": true }, "@babel/helper-remap-async-to-generator": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz", - "integrity": "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz", + "integrity": "sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.10.4", - "@babel/helper-wrap-function": "^7.10.4", - "@babel/types": "^7.12.1" + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-wrap-function": "^7.13.0", + "@babel/types": "^7.13.0" } }, "@babel/helper-replace-supers": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz", - "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz", + "integrity": "sha512-Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw==", "dev": true, "requires": { - "@babel/helper-member-expression-to-functions": "^7.12.1", - "@babel/helper-optimise-call-expression": "^7.10.4", - "@babel/traverse": "^7.12.5", - "@babel/types": "^7.12.5" + "@babel/helper-member-expression-to-functions": "^7.13.0", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" } }, "@babel/helper-simple-access": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz", - "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz", + "integrity": "sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA==", "dev": true, "requires": { - "@babel/types": "^7.12.1" + "@babel/types": "^7.12.13" } }, "@babel/helper-skip-transparent-expression-wrappers": { @@ -268,56 +253,56 @@ } }, "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz", + "integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==", "dev": true, "requires": { - "@babel/types": "^7.11.0" + "@babel/types": "^7.12.13" } }, "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", "dev": true }, "@babel/helper-validator-option": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz", - "integrity": "sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A==", + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz", + "integrity": "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==", "dev": true }, "@babel/helper-wrap-function": { - "version": "7.12.3", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz", - "integrity": "sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz", + "integrity": "sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==", "dev": true, "requires": { - "@babel/helper-function-name": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/traverse": "^7.10.4", - "@babel/types": "^7.10.4" + "@babel/helper-function-name": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" } }, "@babel/helpers": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz", - "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==", + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.10.tgz", + "integrity": "sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ==", "dev": true, "requires": { - "@babel/template": "^7.10.4", - "@babel/traverse": "^7.12.5", - "@babel/types": "^7.12.5" + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" } }, "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz", + "integrity": "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, @@ -342,142 +327,144 @@ } }, "@babel/parser": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz", - "integrity": "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==", + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.13.10.tgz", + "integrity": "sha512-0s7Mlrw9uTWkYua7xWr99Wpk2bnGa0ANleKfksYAES8LpWH4gW1OUr42vqKNf0us5UQNfru2wPqMqRITzq/SIQ==", "dev": true }, "@babel/plugin-proposal-async-generator-functions": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz", - "integrity": "sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==", + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz", + "integrity": "sha512-rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-remap-async-to-generator": "^7.12.1", - "@babel/plugin-syntax-async-generators": "^7.8.0" + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-remap-async-to-generator": "^7.13.0", + "@babel/plugin-syntax-async-generators": "^7.8.4" } }, "@babel/plugin-proposal-class-properties": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz", - "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz", + "integrity": "sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-create-class-features-plugin": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0" } }, "@babel/plugin-proposal-dynamic-import": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz", - "integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==", + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz", + "integrity": "sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-dynamic-import": "^7.8.0" + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" } }, "@babel/plugin-proposal-export-namespace-from": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz", - "integrity": "sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz", + "integrity": "sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-plugin-utils": "^7.12.13", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }, "@babel/plugin-proposal-json-strings": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz", - "integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==", + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz", + "integrity": "sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.0" + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-json-strings": "^7.8.3" } }, "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz", - "integrity": "sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==", + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz", + "integrity": "sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-plugin-utils": "^7.13.0", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz", - "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==", + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz", + "integrity": "sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" } }, "@babel/plugin-proposal-numeric-separator": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz", - "integrity": "sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz", + "integrity": "sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-plugin-utils": "^7.12.13", "@babel/plugin-syntax-numeric-separator": "^7.10.4" } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz", - "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==", + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz", + "integrity": "sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-transform-parameters": "^7.12.1" + "@babel/compat-data": "^7.13.8", + "@babel/helper-compilation-targets": "^7.13.8", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.13.0" } }, "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz", - "integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==", + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz", + "integrity": "sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.0" + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" } }, "@babel/plugin-proposal-optional-chaining": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz", - "integrity": "sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==", + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz", + "integrity": "sha512-hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-plugin-utils": "^7.13.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", - "@babel/plugin-syntax-optional-chaining": "^7.8.0" + "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, "@babel/plugin-proposal-private-methods": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz", - "integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz", + "integrity": "sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-create-class-features-plugin": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0" } }, "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz", - "integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz", + "integrity": "sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-syntax-async-generators": { @@ -490,12 +477,12 @@ } }, "@babel/plugin-syntax-class-properties": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz", - "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-syntax-dynamic-import": { @@ -526,12 +513,12 @@ } }, "@babel/plugin-syntax-jsx": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz", - "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz", + "integrity": "sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-syntax-logical-assignment-operators": { @@ -589,292 +576,272 @@ } }, "@babel/plugin-syntax-top-level-await": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz", - "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz", + "integrity": "sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-arrow-functions": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz", - "integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz", + "integrity": "sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.13.0" } }, "@babel/plugin-transform-async-to-generator": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz", - "integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz", + "integrity": "sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-remap-async-to-generator": "^7.12.1" + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-remap-async-to-generator": "^7.13.0" } }, "@babel/plugin-transform-block-scoped-functions": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz", - "integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz", + "integrity": "sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-block-scoping": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz", - "integrity": "sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz", + "integrity": "sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-classes": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz", - "integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz", + "integrity": "sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.10.4", - "@babel/helper-define-map": "^7.10.4", - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-optimise-call-expression": "^7.10.4", - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-replace-supers": "^7.12.1", - "@babel/helper-split-export-declaration": "^7.10.4", + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-replace-supers": "^7.13.0", + "@babel/helper-split-export-declaration": "^7.12.13", "globals": "^11.1.0" } }, "@babel/plugin-transform-computed-properties": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz", - "integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz", + "integrity": "sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.13.0" } }, "@babel/plugin-transform-destructuring": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz", - "integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz", + "integrity": "sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.13.0" } }, "@babel/plugin-transform-dotall-regex": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz", - "integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz", + "integrity": "sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz", - "integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz", + "integrity": "sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-exponentiation-operator": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz", - "integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz", + "integrity": "sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==", "dev": true, "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4", - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-for-of": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz", - "integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz", + "integrity": "sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.13.0" } }, "@babel/plugin-transform-function-name": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz", - "integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz", + "integrity": "sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==", "dev": true, "requires": { - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-literals": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz", - "integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz", + "integrity": "sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-member-expression-literals": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz", - "integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz", + "integrity": "sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-modules-amd": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz", - "integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz", + "integrity": "sha512-EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0", "babel-plugin-dynamic-import-node": "^2.3.3" } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz", - "integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==", + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz", + "integrity": "sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-simple-access": "^7.12.1", + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-simple-access": "^7.12.13", "babel-plugin-dynamic-import-node": "^2.3.3" } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz", - "integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==", + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz", + "integrity": "sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==", "dev": true, "requires": { - "@babel/helper-hoist-variables": "^7.10.4", - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-hoist-variables": "^7.13.0", + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-validator-identifier": "^7.12.11", "babel-plugin-dynamic-import-node": "^2.3.3" } }, "@babel/plugin-transform-modules-umd": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz", - "integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz", + "integrity": "sha512-D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0" } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz", - "integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz", + "integrity": "sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.12.1" + "@babel/helper-create-regexp-features-plugin": "^7.12.13" } }, "@babel/plugin-transform-new-target": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz", - "integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz", + "integrity": "sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-object-super": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz", - "integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz", + "integrity": "sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-replace-supers": "^7.12.1" + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-replace-supers": "^7.12.13" } }, "@babel/plugin-transform-parameters": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz", - "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz", + "integrity": "sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.13.0" } }, "@babel/plugin-transform-property-literals": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz", - "integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz", + "integrity": "sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-react-display-name": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz", - "integrity": "sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz", + "integrity": "sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-react-jsx": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.7.tgz", - "integrity": "sha512-YFlTi6MEsclFAPIDNZYiCRbneg1MFGao9pPG9uD5htwE0vDbPaMUMeYd6itWjw7K4kro4UbdQf3ljmFl9y48dQ==", + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz", + "integrity": "sha512-mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw==", "dev": true, "requires": { - "@babel/helper-builder-react-jsx": "^7.10.4", - "@babel/helper-builder-react-jsx-experimental": "^7.12.4", - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-jsx": "^7.12.1" + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/types": "^7.12.17" } }, "@babel/plugin-transform-react-jsx-development": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.7.tgz", - "integrity": "sha512-Rs3ETtMtR3VLXFeYRChle5SsP/P9Jp/6dsewBQfokDSzKJThlsuFcnzLTDRALiUmTC48ej19YD9uN1mupEeEDg==", - "dev": true, - "requires": { - "@babel/helper-builder-react-jsx-experimental": "^7.12.4", - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-jsx": "^7.12.1" - } - }, - "@babel/plugin-transform-react-jsx-self": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz", - "integrity": "sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-transform-react-jsx-source": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz", - "integrity": "sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ==", + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz", + "integrity": "sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/plugin-transform-react-jsx": "^7.12.17" } }, "@babel/plugin-transform-react-pure-annotations": { @@ -888,86 +855,86 @@ } }, "@babel/plugin-transform-regenerator": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz", - "integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz", + "integrity": "sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==", "dev": true, "requires": { "regenerator-transform": "^0.14.2" } }, "@babel/plugin-transform-reserved-words": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz", - "integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz", + "integrity": "sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-shorthand-properties": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz", - "integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz", + "integrity": "sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-spread": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz", - "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz", + "integrity": "sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-plugin-utils": "^7.13.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1" } }, "@babel/plugin-transform-sticky-regex": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz", - "integrity": "sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz", + "integrity": "sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-template-literals": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz", - "integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz", + "integrity": "sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.13.0" } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz", - "integrity": "sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz", + "integrity": "sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-unicode-escapes": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz", - "integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz", + "integrity": "sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-transform-unicode-regex": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz", - "integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz", + "integrity": "sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/polyfill": { @@ -981,77 +948,79 @@ } }, "@babel/preset-env": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.7.tgz", - "integrity": "sha512-OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.12.7", - "@babel/helper-compilation-targets": "^7.12.5", - "@babel/helper-module-imports": "^7.12.5", - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-validator-option": "^7.12.1", - "@babel/plugin-proposal-async-generator-functions": "^7.12.1", - "@babel/plugin-proposal-class-properties": "^7.12.1", - "@babel/plugin-proposal-dynamic-import": "^7.12.1", - "@babel/plugin-proposal-export-namespace-from": "^7.12.1", - "@babel/plugin-proposal-json-strings": "^7.12.1", - "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", - "@babel/plugin-proposal-numeric-separator": "^7.12.7", - "@babel/plugin-proposal-object-rest-spread": "^7.12.1", - "@babel/plugin-proposal-optional-catch-binding": "^7.12.1", - "@babel/plugin-proposal-optional-chaining": "^7.12.7", - "@babel/plugin-proposal-private-methods": "^7.12.1", - "@babel/plugin-proposal-unicode-property-regex": "^7.12.1", - "@babel/plugin-syntax-async-generators": "^7.8.0", - "@babel/plugin-syntax-class-properties": "^7.12.1", - "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.10.tgz", + "integrity": "sha512-nOsTScuoRghRtUsRr/c69d042ysfPHcu+KOB4A9aAO9eJYqrkat+LF8G1yp1HD18QiwixT2CisZTr/0b3YZPXQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.13.8", + "@babel/helper-compilation-targets": "^7.13.10", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-validator-option": "^7.12.17", + "@babel/plugin-proposal-async-generator-functions": "^7.13.8", + "@babel/plugin-proposal-class-properties": "^7.13.0", + "@babel/plugin-proposal-dynamic-import": "^7.13.8", + "@babel/plugin-proposal-export-namespace-from": "^7.12.13", + "@babel/plugin-proposal-json-strings": "^7.13.8", + "@babel/plugin-proposal-logical-assignment-operators": "^7.13.8", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", + "@babel/plugin-proposal-numeric-separator": "^7.12.13", + "@babel/plugin-proposal-object-rest-spread": "^7.13.8", + "@babel/plugin-proposal-optional-catch-binding": "^7.13.8", + "@babel/plugin-proposal-optional-chaining": "^7.13.8", + "@babel/plugin-proposal-private-methods": "^7.13.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.12.13", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.0", - "@babel/plugin-syntax-top-level-await": "^7.12.1", - "@babel/plugin-transform-arrow-functions": "^7.12.1", - "@babel/plugin-transform-async-to-generator": "^7.12.1", - "@babel/plugin-transform-block-scoped-functions": "^7.12.1", - "@babel/plugin-transform-block-scoping": "^7.12.1", - "@babel/plugin-transform-classes": "^7.12.1", - "@babel/plugin-transform-computed-properties": "^7.12.1", - "@babel/plugin-transform-destructuring": "^7.12.1", - "@babel/plugin-transform-dotall-regex": "^7.12.1", - "@babel/plugin-transform-duplicate-keys": "^7.12.1", - "@babel/plugin-transform-exponentiation-operator": "^7.12.1", - "@babel/plugin-transform-for-of": "^7.12.1", - "@babel/plugin-transform-function-name": "^7.12.1", - "@babel/plugin-transform-literals": "^7.12.1", - "@babel/plugin-transform-member-expression-literals": "^7.12.1", - "@babel/plugin-transform-modules-amd": "^7.12.1", - "@babel/plugin-transform-modules-commonjs": "^7.12.1", - "@babel/plugin-transform-modules-systemjs": "^7.12.1", - "@babel/plugin-transform-modules-umd": "^7.12.1", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1", - "@babel/plugin-transform-new-target": "^7.12.1", - "@babel/plugin-transform-object-super": "^7.12.1", - "@babel/plugin-transform-parameters": "^7.12.1", - "@babel/plugin-transform-property-literals": "^7.12.1", - "@babel/plugin-transform-regenerator": "^7.12.1", - "@babel/plugin-transform-reserved-words": "^7.12.1", - "@babel/plugin-transform-shorthand-properties": "^7.12.1", - "@babel/plugin-transform-spread": "^7.12.1", - "@babel/plugin-transform-sticky-regex": "^7.12.7", - "@babel/plugin-transform-template-literals": "^7.12.1", - "@babel/plugin-transform-typeof-symbol": "^7.12.1", - "@babel/plugin-transform-unicode-escapes": "^7.12.1", - "@babel/plugin-transform-unicode-regex": "^7.12.1", - "@babel/preset-modules": "^0.1.3", - "@babel/types": "^7.12.7", - "core-js-compat": "^3.7.0", - "semver": "^5.5.0" + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.12.13", + "@babel/plugin-transform-arrow-functions": "^7.13.0", + "@babel/plugin-transform-async-to-generator": "^7.13.0", + "@babel/plugin-transform-block-scoped-functions": "^7.12.13", + "@babel/plugin-transform-block-scoping": "^7.12.13", + "@babel/plugin-transform-classes": "^7.13.0", + "@babel/plugin-transform-computed-properties": "^7.13.0", + "@babel/plugin-transform-destructuring": "^7.13.0", + "@babel/plugin-transform-dotall-regex": "^7.12.13", + "@babel/plugin-transform-duplicate-keys": "^7.12.13", + "@babel/plugin-transform-exponentiation-operator": "^7.12.13", + "@babel/plugin-transform-for-of": "^7.13.0", + "@babel/plugin-transform-function-name": "^7.12.13", + "@babel/plugin-transform-literals": "^7.12.13", + "@babel/plugin-transform-member-expression-literals": "^7.12.13", + "@babel/plugin-transform-modules-amd": "^7.13.0", + "@babel/plugin-transform-modules-commonjs": "^7.13.8", + "@babel/plugin-transform-modules-systemjs": "^7.13.8", + "@babel/plugin-transform-modules-umd": "^7.13.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.13", + "@babel/plugin-transform-new-target": "^7.12.13", + "@babel/plugin-transform-object-super": "^7.12.13", + "@babel/plugin-transform-parameters": "^7.13.0", + "@babel/plugin-transform-property-literals": "^7.12.13", + "@babel/plugin-transform-regenerator": "^7.12.13", + "@babel/plugin-transform-reserved-words": "^7.12.13", + "@babel/plugin-transform-shorthand-properties": "^7.12.13", + "@babel/plugin-transform-spread": "^7.13.0", + "@babel/plugin-transform-sticky-regex": "^7.12.13", + "@babel/plugin-transform-template-literals": "^7.13.0", + "@babel/plugin-transform-typeof-symbol": "^7.12.13", + "@babel/plugin-transform-unicode-escapes": "^7.12.13", + "@babel/plugin-transform-unicode-regex": "^7.12.13", + "@babel/preset-modules": "^0.1.4", + "@babel/types": "^7.13.0", + "babel-plugin-polyfill-corejs2": "^0.1.4", + "babel-plugin-polyfill-corejs3": "^0.1.3", + "babel-plugin-polyfill-regenerator": "^0.1.2", + "core-js-compat": "^3.9.0", + "semver": "^6.3.0" } }, "@babel/preset-modules": { @@ -1068,24 +1037,22 @@ } }, "@babel/preset-react": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.7.tgz", - "integrity": "sha512-wKeTdnGUP5AEYCYQIMeXMMwU7j+2opxrG0WzuZfxuuW9nhKvvALBjl67653CWamZJVefuJGI219G591RSldrqQ==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.13.tgz", + "integrity": "sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-transform-react-display-name": "^7.12.1", - "@babel/plugin-transform-react-jsx": "^7.12.7", - "@babel/plugin-transform-react-jsx-development": "^7.12.7", - "@babel/plugin-transform-react-jsx-self": "^7.12.1", - "@babel/plugin-transform-react-jsx-source": "^7.12.1", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-transform-react-display-name": "^7.12.13", + "@babel/plugin-transform-react-jsx": "^7.12.13", + "@babel/plugin-transform-react-jsx-development": "^7.12.12", "@babel/plugin-transform-react-pure-annotations": "^7.12.1" } }, "@babel/register": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.12.1.tgz", - "integrity": "sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q==", + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.13.8.tgz", + "integrity": "sha512-yCVtABcmvQjRsX2elcZFUV5Q5kDDpHdtXKKku22hNDma60lYuhKmtp1ykZ/okRCPLT2bR5S+cA1kvtBdAFlDTQ==", "dev": true, "requires": { "find-cache-dir": "^2.0.0", @@ -1096,49 +1063,49 @@ } }, "@babel/runtime": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", - "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz", + "integrity": "sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw==", "dev": true, "requires": { "regenerator-runtime": "^0.13.4" } }, "@babel/template": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz", - "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==", + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz", + "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==", "dev": true, "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.12.7", - "@babel/types": "^7.12.7" + "@babel/code-frame": "^7.12.13", + "@babel/parser": "^7.12.13", + "@babel/types": "^7.12.13" } }, "@babel/traverse": { - "version": "7.12.9", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.9.tgz", - "integrity": "sha512-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.0.tgz", + "integrity": "sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ==", "dev": true, "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.5", - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/parser": "^7.12.7", - "@babel/types": "^7.12.7", + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.13.0", + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/parser": "^7.13.0", + "@babel/types": "^7.13.0", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.19" } }, "@babel/types": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", - "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.13.0.tgz", + "integrity": "sha512-hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.12.11", "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } @@ -1153,12 +1120,40 @@ "glob-to-regexp": "^0.3.0" } }, + "@nodelib/fs.scandir": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", + "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.4", + "run-parallel": "^1.1.9" + }, + "dependencies": { + "@nodelib/fs.stat": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", + "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==", + "dev": true + } + } + }, "@nodelib/fs.stat": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", "dev": true }, + "@nodelib/fs.walk": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", + "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.4", + "fastq": "^1.6.0" + } + }, "@sindresorhus/is": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", @@ -1166,18 +1161,18 @@ "dev": true }, "@types/cheerio": { - "version": "0.22.22", - "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.22.tgz", - "integrity": "sha512-05DYX4zU96IBfZFY+t3Mh88nlwSMtmmzSYaQkKN48T495VV1dkHSah6qYyDTN5ngaS0i0VonH37m+RuzSM0YiA==", + "version": "0.22.25", + "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.25.tgz", + "integrity": "sha512-Y2kmbk74dSGRI1bBmo67bowDoVxNm9cs+IPZznsFPRuBN6ToK2RCATZipOJsgO0Unbtiy01o0hP2SS+MKdUNvQ==", "dev": true, "requires": { "@types/node": "*" } }, "@types/node": { - "version": "14.14.10", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz", - "integrity": "sha512-J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ==", + "version": "14.14.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.33.tgz", + "integrity": "sha512-oJqcTrgPUF29oUP8AsUqbXGJNuPutsetaa9kTQAQce5Lx5dTYWV02ScBiT/k1BX/Z7pKeqedmvp39Wu4zR7N7g==", "dev": true }, "@types/q": { @@ -1202,6 +1197,23 @@ "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==", "dev": true }, + "airbnb-prop-types": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz", + "integrity": "sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==", + "dev": true, + "requires": { + "array.prototype.find": "^2.1.1", + "function.prototype.name": "^1.1.2", + "is-regex": "^1.1.0", + "object-is": "^1.1.2", + "object.assign": "^4.1.0", + "object.entries": "^1.1.2", + "prop-types": "^15.7.2", + "prop-types-exact": "^1.2.0", + "react-is": "^16.13.1" + } + }, "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -1220,12 +1232,6 @@ "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", "dev": true }, - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "dev": true - }, "ansi-red": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", @@ -1256,27 +1262,6 @@ "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=", "dev": true }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } - } - }, "arch": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", @@ -1327,6 +1312,12 @@ "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", "dev": true }, + "array-filter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz", + "integrity": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=", + "dev": true + }, "array-find-index": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", @@ -1360,6 +1351,27 @@ "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", "dev": true }, + "array.prototype.find": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.1.tgz", + "integrity": "sha512-mi+MYNJYLTx2eNYy+Yh6raoQacCsNeeMUaspFPh9Y141lFSsWxxB8V9mM2ye+eqiRs917J6/pJ4M9ZPzenWckA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.4" + } + }, + "array.prototype.flat": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz", + "integrity": "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1" + } + }, "arrify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", @@ -1396,18 +1408,18 @@ "lodash": "^4.17.14" } }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "dev": true - }, "asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", "dev": true }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, "atob": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", @@ -1450,56 +1462,6 @@ "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", "dev": true }, - "babel-code-frame": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", - "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "esutils": "^2.0.2", - "js-tokens": "^3.0.2" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true - }, - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", - "dev": true - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } - } - }, "babel-plugin-dynamic-import-node": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", @@ -1509,6 +1471,36 @@ "object.assign": "^4.1.0" } }, + "babel-plugin-polyfill-corejs2": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz", + "integrity": "sha512-DO95wD4g0A8KRaHKi0D51NdGXzvpqVLnLu5BTvDlpqUEpTmeEtypgC1xqesORaWmiUOQI14UHKlzNd9iZ2G3ZA==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.13.0", + "@babel/helper-define-polyfill-provider": "^0.1.5", + "semver": "^6.1.1" + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz", + "integrity": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.1.5", + "core-js-compat": "^3.8.1" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz", + "integrity": "sha512-OUrYG9iKPKz8NxswXbRAdSwF0GhRdIEMTloQATJi4bDuFqrXaXcCUT/VGNrr8pBcjMh1RxZ7Xt9cytVJTJfvMg==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.1.5" + } + }, "babylon": { "version": "6.18.0", "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", @@ -1666,6 +1658,12 @@ "requires": { "pump": "^3.0.0" } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true } } }, @@ -1678,6 +1676,14 @@ "bin-version": "^3.0.0", "semver": "^5.6.0", "semver-truncate": "^1.1.2" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } } }, "bin-wrapper": { @@ -1819,22 +1825,6 @@ } } }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true - }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "optional": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, "bl": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", @@ -1968,16 +1958,16 @@ } }, "browserslist": { - "version": "4.15.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.15.0.tgz", - "integrity": "sha512-IJ1iysdMkGmjjYeRlDU8PQejVwxvVO5QOfXH7ylW31GO6LwNRSmm/SgRXtNsEXqMLl2e+2H5eEJ7sfynF8TCaQ==", + "version": "4.16.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz", + "integrity": "sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001164", + "caniuse-lite": "^1.0.30001181", "colorette": "^1.2.1", - "electron-to-chromium": "^1.3.612", + "electron-to-chromium": "^1.3.649", "escalade": "^3.1.1", - "node-releases": "^1.1.67" + "node-releases": "^1.1.70" } }, "buffer": { @@ -2097,13 +2087,13 @@ } }, "call-bind": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz", - "integrity": "sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dev": true, "requires": { "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.0" + "get-intrinsic": "^1.0.2" } }, "call-me-maybe": { @@ -2165,9 +2155,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001164", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001164.tgz", - "integrity": "sha512-G+A/tkf4bu0dSp9+duNiXc7bGds35DioCyC6vgK2m/rjA4Krpy5WeZgZyfH2f0wj2kI6yAWWucyap6oOwmY1mg==", + "version": "1.0.30001198", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001198.tgz", + "integrity": "sha512-r5GGgESqOPZzwvdLVER374FpQu2WluCF1Z2DSiFJ89KSmGjT0LVKjgv4NcAqHmGWF9ihNpqRI9KXO9Ex4sKsgA==", "dev": true }, "caseless": { @@ -2239,102 +2229,117 @@ } } }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, "cheerio": { - "version": "0.22.0", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", - "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=", - "dev": true, - "requires": { - "css-select": "~1.2.0", - "dom-serializer": "~0.1.0", - "entities": "~1.1.1", - "htmlparser2": "^3.9.1", - "lodash.assignin": "^4.0.9", - "lodash.bind": "^4.1.4", - "lodash.defaults": "^4.0.1", - "lodash.filter": "^4.4.0", - "lodash.flatten": "^4.2.0", - "lodash.foreach": "^4.3.0", - "lodash.map": "^4.4.0", - "lodash.merge": "^4.4.0", - "lodash.pick": "^4.2.1", - "lodash.reduce": "^4.4.0", - "lodash.reject": "^4.4.0", - "lodash.some": "^4.4.0" + "version": "1.0.0-rc.5", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.5.tgz", + "integrity": "sha512-yoqps/VCaZgN4pfXtenwHROTp8NG6/Hlt4Jpz2FEP0ZJQ+ZUkVDd0hAPDNKhj3nakpfPt/CNs57yEtxD1bXQiw==", + "dev": true, + "requires": { + "cheerio-select-tmp": "^0.1.0", + "dom-serializer": "~1.2.0", + "domhandler": "^4.0.0", + "entities": "~2.1.0", + "htmlparser2": "^6.0.0", + "parse5": "^6.0.0", + "parse5-htmlparser2-tree-adapter": "^6.0.0" }, "dependencies": { - "css-select": { + "dom-serializer": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.2.0.tgz", + "integrity": "sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA==", "dev": true, "requires": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==", + "dev": true + }, + "entities": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "dev": true + } + } + }, + "cheerio-select-tmp": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/cheerio-select-tmp/-/cheerio-select-tmp-0.1.1.tgz", + "integrity": "sha512-YYs5JvbpU19VYJyj+F7oYrIE2BOll1/hRU7rEy/5+v9BzkSo3bK81iAeeQEMI92vRIxz677m72UmJUiVwwgjfQ==", + "dev": true, + "requires": { + "css-select": "^3.1.2", + "css-what": "^4.0.0", + "domelementtype": "^2.1.0", + "domhandler": "^4.0.0", + "domutils": "^2.4.4" + }, + "dependencies": { + "css-select": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-3.1.2.tgz", + "integrity": "sha512-qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^4.0.0", + "domhandler": "^4.0.0", + "domutils": "^2.4.3", + "nth-check": "^2.0.0" } }, "css-what": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", - "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-4.0.0.tgz", + "integrity": "sha512-teijzG7kwYfNVsUh2H/YN62xW3KK9YhXEgSlbxMlcyjPNvdKJqFx5lrwlJgoFP1ZHlB89iGDlo/JyshKeRhv5A==", "dev": true }, "dom-serializer": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", - "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.2.0.tgz", + "integrity": "sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA==", "dev": true, "requires": { - "domelementtype": "^1.3.0", - "entities": "^1.1.1" + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "entities": "^2.0.0" } }, + "domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==", + "dev": true + }, "domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.4.4.tgz", + "integrity": "sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA==", "dev": true, "requires": { - "dom-serializer": "0", - "domelementtype": "1" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0" } }, - "entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", - "dev": true + "nth-check": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz", + "integrity": "sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q==", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } } } }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "dev": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, "class-utils": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", @@ -2364,25 +2369,10 @@ "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==", "dev": true }, - "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", - "dev": true, - "requires": { - "restore-cursor": "^2.0.0" - } - }, - "cli-width": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", - "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==", - "dev": true - }, "clipboard": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.6.tgz", - "integrity": "sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg==", + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.7.tgz", + "integrity": "sha512-8M8WEZcIvs0hgOma+wAPkrUxpv0PMY1L6VsAJh/2DOKARIMpyWe6ZLcEoe1qktl6/ced5ceYHs+oGedSbgZ3sg==", "dev": true, "optional": true, "requires": { @@ -2472,9 +2462,9 @@ "dev": true }, "color-string": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", - "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz", + "integrity": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==", "dev": true, "requires": { "color-name": "^1.0.0", @@ -2482,9 +2472,9 @@ } }, "colorette": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz", - "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", + "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==", "dev": true }, "combined-stream": { @@ -2620,12 +2610,12 @@ "dev": true }, "core-js-compat": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.0.tgz", - "integrity": "sha512-o9QKelQSxQMYWHXc/Gc4L8bx/4F7TTraE5rhuN8I7mKBt5dBIUpXpIR3omv70ebr8ST5R3PqbDQr+ZI3+Tt1FQ==", + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.1.tgz", + "integrity": "sha512-jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA==", "dev": true, "requires": { - "browserslist": "^4.14.7", + "browserslist": "^4.16.3", "semver": "7.0.0" }, "dependencies": { @@ -2885,9 +2875,9 @@ "dev": true }, "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "dev": true }, "decompress": { @@ -3159,21 +3149,27 @@ "path-type": "^3.0.0" } }, + "discontinuous-range": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", + "integrity": "sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=", + "dev": true + }, "docusaurus": { - "version": "1.14.6", - "resolved": "https://registry.npmjs.org/docusaurus/-/docusaurus-1.14.6.tgz", - "integrity": "sha512-Hpo6xqYIHwazwuhXW25AKYv/os+dWoJ87qql/m1j1xp83h/BnfYV2l8PA8zLggF1wGUbJQbTx7GWo6QvD8z+4Q==", - "dev": true, - "requires": { - "@babel/core": "^7.9.0", - "@babel/plugin-proposal-class-properties": "^7.8.3", - "@babel/plugin-proposal-object-rest-spread": "^7.9.0", - "@babel/polyfill": "^7.8.7", - "@babel/preset-env": "^7.9.0", - "@babel/preset-react": "^7.9.4", - "@babel/register": "^7.9.0", - "@babel/traverse": "^7.9.0", - "@babel/types": "^7.9.0", + "version": "1.14.7", + "resolved": "https://registry.npmjs.org/docusaurus/-/docusaurus-1.14.7.tgz", + "integrity": "sha512-UWqar4ZX0lEcpLc5Tg+MwZ2jhF/1n1toCQRSeoxDON/D+E9ToLr+vTRFVMP/Tk84NXSVjZFRlrjWwM2pXzvLsQ==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/polyfill": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@babel/register": "^7.12.1", + "@babel/traverse": "^7.12.5", + "@babel/types": "^7.12.6", "autoprefixer": "^9.7.5", "babylon": "^6.18.0", "chalk": "^3.0.0", @@ -3181,12 +3177,14 @@ "commander": "^4.0.1", "crowdin-cli": "^0.3.0", "cssnano": "^4.1.10", + "enzyme": "^3.10.0", + "enzyme-adapter-react-16": "^1.15.1", "escape-string-regexp": "^2.0.0", "express": "^4.17.1", - "feed": "^4.0.0", - "fs-extra": "^8.1.0", + "feed": "^4.2.1", + "fs-extra": "^9.0.1", "gaze": "^1.1.3", - "github-slugger": "^1.2.1", + "github-slugger": "^1.3.0", "glob": "^7.1.6", "highlight.js": "^9.16.2", "imagemin": "^6.0.0", @@ -3194,14 +3192,14 @@ "imagemin-jpegtran": "^6.0.0", "imagemin-optipng": "^6.0.0", "imagemin-svgo": "^7.0.0", - "lodash": "^4.17.15", + "lodash": "^4.17.20", "markdown-toc": "^1.2.0", "mkdirp": "^0.5.1", - "portfinder": "^1.0.25", + "portfinder": "^1.0.28", "postcss": "^7.0.23", - "prismjs": "^1.17.1", + "prismjs": "^1.22.0", "react": "^16.8.4", - "react-dev-utils": "^9.1.0", + "react-dev-utils": "^11.0.1", "react-dom": "^16.8.4", "remarkable": "^2.0.0", "request": "^2.88.0", @@ -3238,12 +3236,20 @@ "dev": true }, "domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.0.0.tgz", + "integrity": "sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA==", "dev": true, "requires": { - "domelementtype": "1" + "domelementtype": "^2.1.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==", + "dev": true + } } }, "domutils": { @@ -3336,9 +3342,9 @@ "dev": true }, "electron-to-chromium": { - "version": "1.3.614", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.614.tgz", - "integrity": "sha512-JMDl46mg4G+n6q/hAJkwy9eMTj5FJjsE+8f/irAGRMLM4yeRVbMuRrdZrbbGGOrGVcZc4vJPjUpEUWNb/fA6hg==", + "version": "1.3.684", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.684.tgz", + "integrity": "sha512-GV/vz2EmmtRSvfGSQ5A0Lucic//IRSDijgL15IgzbBEEnp4rfbxeUSZSlBfmsj7BQvE4sBdgfsvPzLCnp6L21w==", "dev": true }, "emoji-regex": { @@ -3348,9 +3354,9 @@ "dev": true }, "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true }, "encodeurl": { @@ -3369,11 +3375,99 @@ } }, "entities": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", - "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "dev": true }, + "enzyme": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz", + "integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==", + "dev": true, + "requires": { + "array.prototype.flat": "^1.2.3", + "cheerio": "^1.0.0-rc.3", + "enzyme-shallow-equal": "^1.0.1", + "function.prototype.name": "^1.1.2", + "has": "^1.0.3", + "html-element-map": "^1.2.0", + "is-boolean-object": "^1.0.1", + "is-callable": "^1.1.5", + "is-number-object": "^1.0.4", + "is-regex": "^1.0.5", + "is-string": "^1.0.5", + "is-subset": "^0.1.1", + "lodash.escape": "^4.0.1", + "lodash.isequal": "^4.5.0", + "object-inspect": "^1.7.0", + "object-is": "^1.0.2", + "object.assign": "^4.1.0", + "object.entries": "^1.1.1", + "object.values": "^1.1.1", + "raf": "^3.4.1", + "rst-selector-parser": "^2.2.3", + "string.prototype.trim": "^1.2.1" + } + }, + "enzyme-adapter-react-16": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.6.tgz", + "integrity": "sha512-yFlVJCXh8T+mcQo8M6my9sPgeGzj85HSHi6Apgf1Cvq/7EL/J9+1JoJmJsRxZgyTvPMAqOEpRSu/Ii/ZpyOk0g==", + "dev": true, + "requires": { + "enzyme-adapter-utils": "^1.14.0", + "enzyme-shallow-equal": "^1.0.4", + "has": "^1.0.3", + "object.assign": "^4.1.2", + "object.values": "^1.1.2", + "prop-types": "^15.7.2", + "react-is": "^16.13.1", + "react-test-renderer": "^16.0.0-0", + "semver": "^5.7.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "enzyme-adapter-utils": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/enzyme-adapter-utils/-/enzyme-adapter-utils-1.14.0.tgz", + "integrity": "sha512-F/z/7SeLt+reKFcb7597IThpDp0bmzcH1E9Oabqv+o01cID2/YInlqHbFl7HzWBl4h3OdZYedtwNDOmSKkk0bg==", + "dev": true, + "requires": { + "airbnb-prop-types": "^2.16.0", + "function.prototype.name": "^1.1.3", + "has": "^1.0.3", + "object.assign": "^4.1.2", + "object.fromentries": "^2.0.3", + "prop-types": "^15.7.2", + "semver": "^5.7.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "enzyme-shallow-equal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.4.tgz", + "integrity": "sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q==", + "dev": true, + "requires": { + "has": "^1.0.3", + "object-is": "^1.1.2" + } + }, "error": { "version": "7.2.1", "resolved": "https://registry.npmjs.org/error/-/error-7.2.1.tgz", @@ -3393,23 +3487,27 @@ } }, "es-abstract": { - "version": "1.18.0-next.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz", - "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", + "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", "dev": true, "requires": { + "call-bind": "^1.0.2", "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-negative-zero": "^2.0.0", - "is-regex": "^1.1.1", - "object-inspect": "^1.8.0", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.2", + "is-string": "^1.0.5", + "object-inspect": "^1.9.0", "object-keys": "^1.1.1", - "object.assign": "^4.1.1", - "string.prototype.trimend": "^1.0.1", - "string.prototype.trimstart": "^1.0.1" + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.0" } }, "es-to-primitive": { @@ -3459,15 +3557,6 @@ "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", "dev": true }, - "eventsource": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", - "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", - "dev": true, - "requires": { - "original": "^1.0.0" - } - }, "exec-buffer": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz", @@ -3729,17 +3818,6 @@ } } }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - } - }, "extglob": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", @@ -3837,10 +3915,19 @@ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, + "fastq": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", + "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, "faye-websocket": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", - "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", "dev": true, "requires": { "websocket-driver": ">=0.5.1" @@ -3856,9 +3943,9 @@ } }, "feed": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/feed/-/feed-4.2.1.tgz", - "integrity": "sha512-l28KKcK1J/u3iq5dRDmmoB2p7dtBfACC2NqJh4dI2kFptxH0asfjmOfcxqh5Sv8suAlVa73gZJ4REY5RrafVvg==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz", + "integrity": "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==", "dev": true, "requires": { "xml-js": "^1.6.11" @@ -3888,13 +3975,6 @@ "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", "dev": true }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true, - "optional": true - }, "filename-reserved-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", @@ -3913,9 +3993,9 @@ } }, "filesize": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz", - "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", + "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==", "dev": true }, "fill-range": { @@ -4015,14 +4095,13 @@ "dev": true }, "fork-ts-checker-webpack-plugin": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-1.5.0.tgz", - "integrity": "sha512-zEhg7Hz+KhZlBhILYpXy+Beu96gwvkROWJiTXOCyOOMMrdBIRPvsBpBqgTI4jfJGrJXcqGwJR8zsBGDmzY0jsA==", + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", "dev": true, "requires": { - "babel-code-frame": "^6.22.0", + "@babel/code-frame": "^7.5.5", "chalk": "^2.4.1", - "chokidar": "^2.0.4", "micromatch": "^3.1.10", "minimatch": "^3.0.4", "semver": "^5.6.0", @@ -4046,6 +4125,12 @@ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true } } }, @@ -4098,14 +4183,15 @@ "dev": true }, "fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, "requires": { + "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" } }, "fs.realpath": { @@ -4114,23 +4200,30 @@ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "dev": true, - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } - }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, + "function.prototype.name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.4.tgz", + "integrity": "sha512-iqy1pIotY/RmhdFZygSSlW0wko2yxkSCKqsuv4pr8QESohpYyG/Z7B/XXvPRKTJS//960rgguE5mSRUsDdaJrQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "functions-have-names": "^1.2.2" + } + }, + "functions-have-names": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.2.tgz", + "integrity": "sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA==", + "dev": true + }, "gaze": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", @@ -4147,9 +4240,9 @@ "dev": true }, "get-intrinsic": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.1.tgz", - "integrity": "sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", "dev": true, "requires": { "function-bind": "^1.1.1", @@ -4241,6 +4334,12 @@ "requires": { "pump": "^3.0.0" } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true } } }, @@ -4387,9 +4486,9 @@ } }, "graceful-fs": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", - "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "version": "4.2.6", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", + "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==", "dev": true }, "gray-matter": { @@ -4471,6 +4570,12 @@ "ansi-regex": "^2.0.0" } }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", + "dev": true + }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -4484,9 +4589,9 @@ "dev": true }, "has-symbols": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", - "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", "dev": true }, "has-to-string-tag-x": { @@ -4566,35 +4671,54 @@ "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==", "dev": true }, + "html-element-map": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/html-element-map/-/html-element-map-1.3.0.tgz", + "integrity": "sha512-AqCt/m9YaiMwaaAyOPdq4Ga0cM+jdDWWGueUMkdROZcTeClaGpN0AQeyGchZhTegQoABmc6+IqH7oCR/8vhQYg==", + "dev": true, + "requires": { + "array-filter": "^1.0.0", + "call-bind": "^1.0.2" + } + }, "htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.0.1.tgz", + "integrity": "sha512-GDKPd+vk4jvSuvCbyuzx/unmXkk090Azec7LovXP8as1Hn8q9p3hbjmDGbUqqhknw0ajwit6LiiWqfiTUPMK7w==", "dev": true, "requires": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.4.4", + "entities": "^2.0.0" }, "dependencies": { - "entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "dom-serializer": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.2.0.tgz", + "integrity": "sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==", "dev": true }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "domutils": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.4.4.tgz", + "integrity": "sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA==", "dev": true, "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0" } } } @@ -4627,9 +4751,9 @@ } }, "http-parser-js": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.2.tgz", - "integrity": "sha512-opCO9ASqg5Wy2FNo7A0sxy71yGbbkJJXLdgMK04Tcypw9jr2MgWbyubb0+WdmDmGnFflO7fRbqbaihh/ENDlRQ==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==", "dev": true }, "http-signature": { @@ -4752,9 +4876,9 @@ } }, "immer": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/immer/-/immer-1.10.0.tgz", - "integrity": "sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", + "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==", "dev": true }, "import-fresh": { @@ -4805,75 +4929,11 @@ "dev": true }, "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, - "inquirer": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.5.0.tgz", - "integrity": "sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA==", - "dev": true, - "requires": { - "ansi-escapes": "^3.2.0", - "chalk": "^2.4.2", - "cli-cursor": "^2.1.0", - "cli-width": "^2.0.0", - "external-editor": "^3.0.3", - "figures": "^2.0.0", - "lodash": "^4.17.12", - "mute-stream": "0.0.7", - "run-async": "^2.2.0", - "rxjs": "^6.4.0", - "string-width": "^2.1.0", - "strip-ansi": "^5.1.0", - "through": "^2.3.6" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true - }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, "interpret": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", @@ -4891,9 +4951,9 @@ } }, "ip-regex": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz", + "integrity": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==", "dev": true }, "ipaddr.js": { @@ -4934,13 +4994,19 @@ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", "dev": true }, - "is-binary-path": { + "is-bigint": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", + "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==", + "dev": true + }, + "is-boolean-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", + "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", "dev": true, "requires": { - "binary-extensions": "^1.0.0" + "call-bind": "^1.0.0" } }, "is-buffer": { @@ -4950,9 +5016,9 @@ "dev": true }, "is-callable": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz", - "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", + "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", "dev": true }, "is-color-stop": { @@ -5029,6 +5095,12 @@ "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", "dev": true }, + "is-docker": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz", + "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==", + "dev": true + }, "is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", @@ -5047,12 +5119,6 @@ "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", "dev": true }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, "is-gif": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz", @@ -5084,9 +5150,9 @@ "dev": true }, "is-negative-zero": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.0.tgz", - "integrity": "sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", "dev": true }, "is-number": { @@ -5109,6 +5175,12 @@ } } }, + "is-number-object": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", + "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==", + "dev": true + }, "is-obj": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", @@ -5143,11 +5215,12 @@ "dev": true }, "is-regex": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", - "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", + "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", "dev": true, "requires": { + "call-bind": "^1.0.2", "has-symbols": "^1.0.1" } }, @@ -5175,6 +5248,18 @@ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", "dev": true }, + "is-string": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", + "dev": true + }, + "is-subset": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz", + "integrity": "sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=", + "dev": true + }, "is-svg": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", @@ -5218,20 +5303,23 @@ "dev": true }, "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", - "dev": true + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "requires": { + "is-docker": "^2.0.0" + } }, "is2": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is2/-/is2-2.0.1.tgz", - "integrity": "sha512-+WaJvnaA7aJySz2q/8sLjMb2Mw14KTplHmSwcSpZ/fWJPkUmqw3YTzSWbPJ7OAwRvdYTWF2Wg+yYJ1AdP5Z8CA==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/is2/-/is2-2.0.6.tgz", + "integrity": "sha512-+Z62OHOjA6k2sUDOKXoZI3EXv7Fb1K52jpTBLbkfx62bcUeSsrTBLhEquCRDKTx0XE5XbHcG/S2vrtE3lnEDsQ==", "dev": true, "requires": { "deep-is": "^0.1.3", - "ip-regex": "^2.1.0", - "is-url": "^1.2.2" + "ip-regex": "^4.1.0", + "is-url": "^1.2.4" } }, "isarray": { @@ -5286,9 +5374,9 @@ "dev": true }, "js-yaml": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", - "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "requires": { "argparse": "^1.0.7", @@ -5320,9 +5408,9 @@ "dev": true }, "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "dev": true }, "json-schema-traverse": { @@ -5337,39 +5425,31 @@ "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", "dev": true }, - "json3": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", - "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", - "dev": true - }, "json5": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", - "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true }, "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "requires": { - "graceful-fs": "^4.1.6" + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" } }, "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dev": true, "requires": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" } }, @@ -5388,6 +5468,12 @@ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true + }, "lazy-cache": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", @@ -5475,25 +5561,14 @@ } }, "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", "dev": true, "requires": { "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - } + "emojis-list": "^3.0.0", + "json5": "^2.1.2" } }, "locate-path": { @@ -5507,9 +5582,9 @@ } }, "lodash": { - "version": "4.17.20", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", - "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==", + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, "lodash._reinterpolate": { @@ -5536,12 +5611,24 @@ "integrity": "sha1-ZuXOH3btJ7QwPYxlEujRIW6BBrw=", "dev": true }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true + }, "lodash.defaults": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=", "dev": true }, + "lodash.escape": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz", + "integrity": "sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=", + "dev": true + }, "lodash.filter": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz", @@ -5554,12 +5641,24 @@ "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=", "dev": true }, + "lodash.flattendeep": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=", + "dev": true + }, "lodash.foreach": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", "integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=", "dev": true }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=", + "dev": true + }, "lodash.map": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", @@ -5710,6 +5809,14 @@ "requires": { "pify": "^4.0.1", "semver": "^5.6.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } } }, "map-cache": { @@ -5859,26 +5966,20 @@ "dev": true }, "mime-db": { - "version": "1.44.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", - "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==", + "version": "1.46.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", + "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==", "dev": true }, "mime-types": { - "version": "2.1.27", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", - "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", + "version": "2.1.29", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", + "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", "dev": true, "requires": { - "mime-db": "1.44.0" + "mime-db": "1.46.0" } }, - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "dev": true - }, "mimic-response": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", @@ -5895,9 +5996,9 @@ } }, "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" }, "mixin-deep": { "version": "1.3.2", @@ -5929,25 +6030,18 @@ "minimist": "^1.2.5" } }, + "moo": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.1.tgz", + "integrity": "sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==", + "dev": true + }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", - "dev": true - }, - "nan": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", - "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", - "dev": true, - "optional": true - }, "nanomatch": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", @@ -5967,6 +6061,26 @@ "to-regex": "^3.0.1" } }, + "nearley": { + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", + "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", + "dev": true, + "requires": { + "commander": "^2.19.0", + "moo": "^0.5.0", + "railroad-diagrams": "^1.0.0", + "randexp": "0.4.6" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + } + } + }, "negotiator": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", @@ -5986,9 +6100,9 @@ "dev": true }, "node-releases": { - "version": "1.1.67", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.67.tgz", - "integrity": "sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==", + "version": "1.1.71", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz", + "integrity": "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==", "dev": true }, "normalize-package-data": { @@ -6001,14 +6115,16 @@ "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } } }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, "normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", @@ -6112,6 +6228,16 @@ "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==", "dev": true }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", @@ -6139,15 +6265,39 @@ "object-keys": "^1.1.1" } }, - "object.getownpropertydescriptors": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz", - "integrity": "sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng==", + "object.entries": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz", + "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==", "dev": true, "requires": { "call-bind": "^1.0.0", "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1" + "es-abstract": "^1.18.0-next.1", + "has": "^1.0.3" + } + }, + "object.fromentries": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz", + "integrity": "sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "has": "^1.0.3" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", + "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" } }, "object.pick": { @@ -6160,14 +6310,14 @@ } }, "object.values": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz", - "integrity": "sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz", + "integrity": "sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==", "dev": true, "requires": { - "call-bind": "^1.0.0", + "call-bind": "^1.0.2", "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", + "es-abstract": "^1.18.0-next.2", "has": "^1.0.3" } }, @@ -6189,22 +6339,14 @@ "wrappy": "1" } }, - "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", - "dev": true, - "requires": { - "mimic-fn": "^1.0.0" - } - }, "open": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-6.4.0.tgz", - "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==", + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "dev": true, "requires": { - "is-wsl": "^1.1.0" + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" } }, "optipng-bin": { @@ -6218,15 +6360,6 @@ "logalot": "^2.0.0" } }, - "original": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", - "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", - "dev": true, - "requires": { - "url-parse": "^1.4.3" - } - }, "os-filter-obj": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", @@ -6236,12 +6369,6 @@ "arch": "^2.1.0" } }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "dev": true - }, "p-cancelable": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", @@ -6333,6 +6460,21 @@ "json-parse-better-errors": "^1.0.1" } }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "dev": true, + "requires": { + "parse5": "^6.0.1" + } + }, "parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -6410,6 +6552,12 @@ "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", "dev": true }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "dev": true + }, "pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", @@ -6450,57 +6598,12 @@ } }, "pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz", - "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", "dev": true, "requires": { - "find-up": "^2.1.0" - }, - "dependencies": { - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "requires": { - "locate-path": "^2.0.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true - } + "find-up": "^3.0.0" } }, "portfinder": { @@ -7075,9 +7178,9 @@ "dev": true }, "prismjs": { - "version": "1.22.0", - "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.22.0.tgz", - "integrity": "sha512-lLJ/Wt9yy0AiSYBf212kK3mM5L8ycwlyTlSxHBAneXLR0nzFMlZ5y7riFPF3E33zXOF2IH95xdY5jIyZbM9z/w==", + "version": "1.23.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.23.0.tgz", + "integrity": "sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA==", "dev": true, "requires": { "clipboard": "^2.0.0" @@ -7089,6 +7192,16 @@ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, + "prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "dev": true, + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, "prop-types": { "version": "15.7.2", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", @@ -7100,6 +7213,17 @@ "react-is": "^16.8.1" } }, + "prop-types-exact": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/prop-types-exact/-/prop-types-exact-1.2.0.tgz", + "integrity": "sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==", + "dev": true, + "requires": { + "has": "^1.0.3", + "object.assign": "^4.1.0", + "reflect.ownkeys": "^0.2.0" + } + }, "proto-list": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", @@ -7151,9 +7275,9 @@ "dev": true }, "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "dev": true }, "query-string": { @@ -7167,12 +7291,37 @@ "strict-uri-encode": "^1.0.0" } }, - "querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "queue-microtask": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz", + "integrity": "sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg==", + "dev": true + }, + "raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "dev": true, + "requires": { + "performance-now": "^2.1.0" + } + }, + "railroad-diagrams": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", + "integrity": "sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=", "dev": true }, + "randexp": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", + "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", + "dev": true, + "requires": { + "discontinuous-range": "1.0.0", + "ret": "~0.1.10" + } + }, "randomatic": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", @@ -7222,101 +7371,284 @@ } }, "react-dev-utils": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-9.1.0.tgz", - "integrity": "sha512-X2KYF/lIGyGwP/F/oXgGDF24nxDA2KC4b7AFto+eqzc/t838gpSGiaU8trTqHXOohuLxxc5qi1eDzsl9ucPDpg==", + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz", + "integrity": "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==", "dev": true, "requires": { - "@babel/code-frame": "7.5.5", + "@babel/code-frame": "7.10.4", "address": "1.1.2", - "browserslist": "4.7.0", + "browserslist": "4.14.2", "chalk": "2.4.2", - "cross-spawn": "6.0.5", + "cross-spawn": "7.0.3", "detect-port-alt": "1.1.6", - "escape-string-regexp": "1.0.5", - "filesize": "3.6.1", - "find-up": "3.0.0", - "fork-ts-checker-webpack-plugin": "1.5.0", + "escape-string-regexp": "2.0.0", + "filesize": "6.1.0", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "4.1.6", "global-modules": "2.0.0", - "globby": "8.0.2", + "globby": "11.0.1", "gzip-size": "5.1.1", - "immer": "1.10.0", - "inquirer": "6.5.0", + "immer": "8.0.1", "is-root": "2.1.0", - "loader-utils": "1.2.3", - "open": "^6.3.0", - "pkg-up": "2.0.0", - "react-error-overlay": "^6.0.3", + "loader-utils": "2.0.0", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "prompts": "2.4.0", + "react-error-overlay": "^6.0.9", "recursive-readdir": "2.2.2", "shell-quote": "1.7.2", - "sockjs-client": "1.4.0", - "strip-ansi": "5.2.0", + "strip-ansi": "6.0.0", "text-table": "0.2.0" }, "dependencies": { "@babel/code-frame": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", - "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", + "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==", + "dev": true + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.14.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", + "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + } + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "fast-glob": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz", + "integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { - "@babel/highlight": "^7.0.0" + "p-locate": "^4.1.0" } }, - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "browserslist": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.7.0.tgz", - "integrity": "sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==", + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30000989", - "electron-to-chromium": "^1.3.247", - "node-releases": "^1.1.29" + "braces": "^3.0.1", + "picomatch": "^2.0.5" } }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "p-limit": "^2.2.0" } }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "shebang-regex": "^3.0.0" } }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true }, "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "requires": { - "ansi-regex": "^4.1.0" + "isexe": "^2.0.0" } } } @@ -7334,9 +7666,9 @@ } }, "react-error-overlay": { - "version": "6.0.8", - "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.8.tgz", - "integrity": "sha512-HvPuUQnLp5H7TouGq3kzBeioJmXms1wHy9EGjz2OURWBp4qZO6AfGEcnxts1D/CbwPLRAgTMPCEgYhA3sEM4vw==", + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz", + "integrity": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==", "dev": true }, "react-is": { @@ -7345,6 +7677,18 @@ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "dev": true }, + "react-test-renderer": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.14.0.tgz", + "integrity": "sha512-L8yPjqPE5CZO6rKsKXRO/rVPiaCOy0tQQJbC+UjPNlobl5mad59lvPjwFsQHTvL03caVDIVr9x9/OSgDe6I5Eg==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "react-is": "^16.8.6", + "scheduler": "^0.19.1" + } + }, "read-pkg": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", @@ -7421,17 +7765,6 @@ "util-deprecate": "~1.0.1" } }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - } - }, "rechoir": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", @@ -7460,6 +7793,12 @@ "strip-indent": "^1.0.1" } }, + "reflect.ownkeys": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz", + "integrity": "sha1-dJrO7H8/34tj+SegSAnpDFwLNGA=", + "dev": true + }, "regenerate": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", @@ -7521,9 +7860,9 @@ "dev": true }, "regjsparser": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz", - "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==", + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz", + "integrity": "sha512-ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ==", "dev": true, "requires": { "jsesc": "~0.5.0" @@ -7558,12 +7897,6 @@ } } }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", - "dev": true - }, "repeat-element": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", @@ -7619,19 +7952,13 @@ "uuid": "^3.3.2" } }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", - "dev": true - }, "resolve": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", - "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", "dev": true, "requires": { - "is-core-module": "^2.1.0", + "is-core-module": "^2.2.0", "path-parse": "^1.0.6" } }, @@ -7656,22 +7983,18 @@ "lowercase-keys": "^1.0.0" } }, - "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", - "dev": true, - "requires": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" - } - }, "ret": { "version": "0.1.15", "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "dev": true }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, "rgb-regex": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", @@ -7693,19 +8016,23 @@ "glob": "^7.1.3" } }, - "run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true + "rst-selector-parser": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz", + "integrity": "sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=", + "dev": true, + "requires": { + "lodash.flattendeep": "^4.4.0", + "nearley": "^2.7.10" + } }, - "rxjs": { - "version": "6.6.3", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz", - "integrity": "sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==", + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "requires": { - "tslib": "^1.9.0" + "queue-microtask": "^1.2.2" } }, "safe-buffer": { @@ -7776,9 +8103,9 @@ "optional": true }, "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, "semver-regex": { @@ -7794,6 +8121,14 @@ "dev": true, "requires": { "semver": "^5.3.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } } }, "send": { @@ -7914,9 +8249,9 @@ "dev": true }, "shelljs": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz", - "integrity": "sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==", + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", "dev": true, "requires": { "glob": "^7.0.0", @@ -7947,6 +8282,12 @@ } } }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, "sitemap": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-3.2.2.tgz", @@ -8087,31 +8428,6 @@ } } }, - "sockjs-client": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz", - "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==", - "dev": true, - "requires": { - "debug": "^3.2.5", - "eventsource": "^1.0.7", - "faye-websocket": "~0.11.1", - "inherits": "^2.0.3", - "json3": "^3.3.2", - "url-parse": "^1.4.3" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, "sort-keys": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", @@ -8168,9 +8484,9 @@ } }, "source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", "dev": true }, "spdx-correct": { @@ -8326,50 +8642,34 @@ "integrity": "sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0=", "dev": true }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "string.prototype.trim": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.4.tgz", + "integrity": "sha512-hWCk/iqf7lp0/AgTF7/ddO1IWtSNPASjlzCicV5irAVdE1grjsneK26YG6xACMBEdCvO8fUST0UzDMh/2Qy+9Q==", "dev": true, "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" } }, "string.prototype.trimend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", - "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", "dev": true, "requires": { - "call-bind": "^1.0.0", + "call-bind": "^1.0.2", "define-properties": "^1.1.3" } }, "string.prototype.trimstart": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", - "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", "dev": true, "requires": { - "call-bind": "^1.0.0", + "call-bind": "^1.0.2", "define-properties": "^1.1.3" } }, @@ -8542,24 +8842,13 @@ } }, "tcp-port-used": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tcp-port-used/-/tcp-port-used-1.0.1.tgz", - "integrity": "sha512-rwi5xJeU6utXoEIiMvVBMc9eJ2/ofzB+7nLOdnZuFTmNCLqRiQh2sMG9MqCxHU/69VC/Fwp5dV9306Qd54ll1Q==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/tcp-port-used/-/tcp-port-used-1.0.2.tgz", + "integrity": "sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==", "dev": true, "requires": { - "debug": "4.1.0", - "is2": "2.0.1" - }, - "dependencies": { - "debug": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.0.tgz", - "integrity": "sha512-heNPJUJIqC+xB6ayLAMHaIrmN9HKa7aQO8MGqKpvCA+uJYVcvR6l5kgdrhRuwPFHU7P5/A1w0BjByPHwpfTDKg==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } + "debug": "4.3.1", + "is2": "^2.0.6" } }, "temp-dir": { @@ -8641,27 +8930,9 @@ "requires": { "ms": "^2.1.1" } - }, - "faye-websocket": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", - "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } } } }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "requires": { - "os-tmpdir": "~1.0.2" - } - }, "to-buffer": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", @@ -8795,6 +9066,110 @@ "requires": { "@types/cheerio": "^0.22.8", "cheerio": "0.22.0" + }, + "dependencies": { + "cheerio": { + "version": "0.22.0", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", + "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=", + "dev": true, + "requires": { + "css-select": "~1.2.0", + "dom-serializer": "~0.1.0", + "entities": "~1.1.1", + "htmlparser2": "^3.9.1", + "lodash.assignin": "^4.0.9", + "lodash.bind": "^4.1.4", + "lodash.defaults": "^4.0.1", + "lodash.filter": "^4.4.0", + "lodash.flatten": "^4.2.0", + "lodash.foreach": "^4.3.0", + "lodash.map": "^4.4.0", + "lodash.merge": "^4.4.0", + "lodash.pick": "^4.2.1", + "lodash.reduce": "^4.4.0", + "lodash.reject": "^4.4.0", + "lodash.some": "^4.4.0" + } + }, + "css-select": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "dev": true, + "requires": { + "boolbase": "~1.0.0", + "css-what": "2.1", + "domutils": "1.5.1", + "nth-check": "~1.0.1" + } + }, + "css-what": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", + "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", + "dev": true + }, + "dom-serializer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", + "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", + "dev": true, + "requires": { + "domelementtype": "^1.3.0", + "entities": "^1.1.1" + } + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "dev": true, + "requires": { + "domelementtype": "1" + } + }, + "domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "dev": true + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "dev": true, + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } } }, "tslib": { @@ -8834,6 +9209,18 @@ "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", "dev": true }, + "unbox-primitive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.0.tgz", + "integrity": "sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.0", + "has-symbols": "^1.0.0", + "which-boxed-primitive": "^1.0.1" + } + }, "unbzip2-stream": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", @@ -8897,9 +9284,9 @@ "dev": true }, "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true }, "unpipe": { @@ -8954,16 +9341,10 @@ } } }, - "upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true - }, "uri-js": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", - "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "requires": { "punycode": "^2.1.0" @@ -8975,16 +9356,6 @@ "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", "dev": true }, - "url-parse": { - "version": "1.4.7", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", - "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", - "dev": true, - "requires": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, "url-parse-lax": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", @@ -9022,27 +9393,6 @@ "es-abstract": "^1.17.2", "has-symbols": "^1.0.1", "object.getownpropertydescriptors": "^2.1.0" - }, - "dependencies": { - "es-abstract": { - "version": "1.17.7", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", - "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", - "dev": true, - "requires": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-regex": "^1.1.1", - "object-inspect": "^1.8.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.1", - "string.prototype.trimend": "^1.0.1", - "string.prototype.trimstart": "^1.0.1" - } - } } }, "utils-merge": { @@ -9133,6 +9483,19 @@ "isexe": "^2.0.0" } }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, "wordwrap": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", diff --git a/website/package.json b/website/package.json index 41e0f89d..a36ccea9 100644 --- a/website/package.json +++ b/website/package.json @@ -9,9 +9,9 @@ "rename-version": "docusaurus-rename-version" }, "devDependencies": { - "docusaurus": "^1.14.6" + "docusaurus": "^1.14.7" }, "dependencies": { - "minimist": "^1.2.5" + "minimist": "^1.2.7" } } diff --git a/website/pages/en/index.js b/website/pages/en/index.js index cc0bdcaa..34b711a6 100644 --- a/website/pages/en/index.js +++ b/website/pages/en/index.js @@ -106,7 +106,10 @@ class Index extends React.Component { `Diagram as Code` allows you to **track** the architecture diagram changes in any **version control** system. - Diagrams currently supports six major providers: `AWS`, `Azure`, `GCP`, `Kubernetes`, `Alibaba Cloud` and `Oracle Cloud`. It now also supports `On-Premise` nodes as well as `Programming Languages` and `Frameworks`. + Diagrams currently supports main major providers including: `AWS`, `Azure`, `GCP`, `Kubernetes`, `Alibaba Cloud`, `Oracle Cloud` etc... It also supports `On-Premises` nodes, `SaaS` and major `Programming` frameworks and languages. + + + `NOTE: It does not control any actual cloud resources nor does it generate cloud formation or terraform code. It is just for drawing the cloud system architecture diagrams.` ); diff --git a/website/sidebars.json b/website/sidebars.json index 0f53f300..6693b599 100644 --- a/website/sidebars.json +++ b/website/sidebars.json @@ -15,17 +15,20 @@ "nodes/aws", "nodes/azure", "nodes/gcp", + "nodes/ibm", "nodes/k8s", "nodes/alibabacloud", "nodes/oci", "nodes/openstack", "nodes/firebase", - "nodes/outscale", + "nodes/digitalocean", "nodes/elastic", + "nodes/outscale", "nodes/generic", "nodes/programming", "nodes/saas", + "nodes/c4", "nodes/custom" ] } -} +} \ No newline at end of file diff --git a/website/static/img/advanced_web_service_with_on-premise.png b/website/static/img/advanced_web_service_with_on-premise.png deleted file mode 100644 index 83298236..00000000 Binary files a/website/static/img/advanced_web_service_with_on-premise.png and /dev/null differ diff --git a/website/static/img/advanced_web_service_with_on-premise_colored.png b/website/static/img/advanced_web_service_with_on-premise_colored.png deleted file mode 100644 index f775cd50..00000000 Binary files a/website/static/img/advanced_web_service_with_on-premise_colored.png and /dev/null differ diff --git a/website/static/img/advanced_web_service_with_on-premises.png b/website/static/img/advanced_web_service_with_on-premises.png new file mode 100644 index 00000000..c2edf4d7 Binary files /dev/null and b/website/static/img/advanced_web_service_with_on-premises.png differ diff --git a/website/static/img/advanced_web_service_with_on-premises_colored.png b/website/static/img/advanced_web_service_with_on-premises_colored.png new file mode 100644 index 00000000..d404d3c2 Binary files /dev/null and b/website/static/img/advanced_web_service_with_on-premises_colored.png differ diff --git a/website/static/img/c4.png b/website/static/img/c4.png new file mode 100644 index 00000000..e3ea5cc0 Binary files /dev/null and b/website/static/img/c4.png differ diff --git a/website/static/img/message_collecting_diagram.png b/website/static/img/message_collecting_diagram.png index 8b50dda2..4c74cb2e 100644 Binary files a/website/static/img/message_collecting_diagram.png and b/website/static/img/message_collecting_diagram.png differ diff --git a/website/static/img/resources/alibabacloud/analytics/analytic-db.png b/website/static/img/resources/alibabacloud/analytics/analytic-db.png new file mode 100644 index 00000000..7ef1324f Binary files /dev/null and b/website/static/img/resources/alibabacloud/analytics/analytic-db.png differ diff --git a/website/static/img/resources/alibabacloud/analytics/click-house.png b/website/static/img/resources/alibabacloud/analytics/click-house.png new file mode 100644 index 00000000..a62018fb Binary files /dev/null and b/website/static/img/resources/alibabacloud/analytics/click-house.png differ diff --git a/website/static/img/resources/alibabacloud/analytics/data-lake-analytics.png b/website/static/img/resources/alibabacloud/analytics/data-lake-analytics.png new file mode 100644 index 00000000..8e9a3f56 Binary files /dev/null and b/website/static/img/resources/alibabacloud/analytics/data-lake-analytics.png differ diff --git a/website/static/img/resources/alibabacloud/analytics/elatic-map-reduce.png b/website/static/img/resources/alibabacloud/analytics/elatic-map-reduce.png new file mode 100644 index 00000000..dedbaf2d Binary files /dev/null and b/website/static/img/resources/alibabacloud/analytics/elatic-map-reduce.png differ diff --git a/website/static/img/resources/alibabacloud/analytics/open-search.png b/website/static/img/resources/alibabacloud/analytics/open-search.png new file mode 100644 index 00000000..27a4eeb6 Binary files /dev/null and b/website/static/img/resources/alibabacloud/analytics/open-search.png differ diff --git a/website/static/img/resources/alibabacloud/application/api-gateway.png b/website/static/img/resources/alibabacloud/application/api-gateway.png new file mode 100644 index 00000000..569c57a3 Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/api-gateway.png differ diff --git a/website/static/img/resources/alibabacloud/application/bee-bot.png b/website/static/img/resources/alibabacloud/application/bee-bot.png new file mode 100644 index 00000000..401a9a5a Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/bee-bot.png differ diff --git a/website/static/img/resources/alibabacloud/application/blockchain-as-a-service.png b/website/static/img/resources/alibabacloud/application/blockchain-as-a-service.png new file mode 100644 index 00000000..05a9e387 Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/blockchain-as-a-service.png differ diff --git a/website/static/img/resources/alibabacloud/application/cloud-call-center.png b/website/static/img/resources/alibabacloud/application/cloud-call-center.png new file mode 100644 index 00000000..14df87ba Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/cloud-call-center.png differ diff --git a/website/static/img/resources/alibabacloud/application/code-pipeline.png b/website/static/img/resources/alibabacloud/application/code-pipeline.png new file mode 100644 index 00000000..72aff017 Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/code-pipeline.png differ diff --git a/website/static/img/resources/alibabacloud/application/direct-mail.png b/website/static/img/resources/alibabacloud/application/direct-mail.png new file mode 100644 index 00000000..aa23c1f6 Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/direct-mail.png differ diff --git a/website/static/img/resources/alibabacloud/application/log-service.png b/website/static/img/resources/alibabacloud/application/log-service.png new file mode 100644 index 00000000..ffc2e603 Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/log-service.png differ diff --git a/website/static/img/resources/alibabacloud/application/message-notification-service.png b/website/static/img/resources/alibabacloud/application/message-notification-service.png new file mode 100644 index 00000000..b0c8e343 Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/message-notification-service.png differ diff --git a/website/static/img/resources/alibabacloud/application/node-js-performance-platform.png b/website/static/img/resources/alibabacloud/application/node-js-performance-platform.png new file mode 100644 index 00000000..2bc7bb3b Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/node-js-performance-platform.png differ diff --git a/website/static/img/resources/alibabacloud/application/open-search.png b/website/static/img/resources/alibabacloud/application/open-search.png new file mode 100644 index 00000000..27a4eeb6 Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/open-search.png differ diff --git a/website/static/img/resources/alibabacloud/application/performance-testing-service.png b/website/static/img/resources/alibabacloud/application/performance-testing-service.png new file mode 100644 index 00000000..8324f91d Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/performance-testing-service.png differ diff --git a/website/static/img/resources/alibabacloud/application/rd-cloud.png b/website/static/img/resources/alibabacloud/application/rd-cloud.png new file mode 100644 index 00000000..0dc6b990 Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/rd-cloud.png differ diff --git a/website/static/img/resources/alibabacloud/application/smart-conversation-analysis.png b/website/static/img/resources/alibabacloud/application/smart-conversation-analysis.png new file mode 100644 index 00000000..32d63ed1 Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/smart-conversation-analysis.png differ diff --git a/website/static/img/resources/alibabacloud/application/yida.png b/website/static/img/resources/alibabacloud/application/yida.png new file mode 100644 index 00000000..22c44ed4 Binary files /dev/null and b/website/static/img/resources/alibabacloud/application/yida.png differ diff --git a/website/static/img/resources/alibabacloud/communication/direct-mail.png b/website/static/img/resources/alibabacloud/communication/direct-mail.png new file mode 100644 index 00000000..aa23c1f6 Binary files /dev/null and b/website/static/img/resources/alibabacloud/communication/direct-mail.png differ diff --git a/website/static/img/resources/alibabacloud/communication/mobile-push.png b/website/static/img/resources/alibabacloud/communication/mobile-push.png new file mode 100644 index 00000000..0646c7f4 Binary files /dev/null and b/website/static/img/resources/alibabacloud/communication/mobile-push.png differ diff --git a/website/static/img/resources/alibabacloud/compute/auto-scaling.png b/website/static/img/resources/alibabacloud/compute/auto-scaling.png new file mode 100644 index 00000000..780ff788 Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/auto-scaling.png differ diff --git a/website/static/img/resources/alibabacloud/compute/batch-compute.png b/website/static/img/resources/alibabacloud/compute/batch-compute.png new file mode 100644 index 00000000..b9936c63 Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/batch-compute.png differ diff --git a/website/static/img/resources/alibabacloud/compute/container-registry.png b/website/static/img/resources/alibabacloud/compute/container-registry.png new file mode 100644 index 00000000..5d9743fc Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/container-registry.png differ diff --git a/website/static/img/resources/alibabacloud/compute/container-service.png b/website/static/img/resources/alibabacloud/compute/container-service.png new file mode 100644 index 00000000..69353832 Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/container-service.png differ diff --git a/website/static/img/resources/alibabacloud/compute/elastic-compute-service.png b/website/static/img/resources/alibabacloud/compute/elastic-compute-service.png new file mode 100644 index 00000000..a2d5b4b0 Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/elastic-compute-service.png differ diff --git a/website/static/img/resources/alibabacloud/compute/elastic-container-instance.png b/website/static/img/resources/alibabacloud/compute/elastic-container-instance.png new file mode 100644 index 00000000..2fb1fb03 Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/elastic-container-instance.png differ diff --git a/website/static/img/resources/alibabacloud/compute/elastic-high-performance-computing.png b/website/static/img/resources/alibabacloud/compute/elastic-high-performance-computing.png new file mode 100644 index 00000000..d9cbb90f Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/elastic-high-performance-computing.png differ diff --git a/website/static/img/resources/alibabacloud/compute/elastic-search.png b/website/static/img/resources/alibabacloud/compute/elastic-search.png new file mode 100644 index 00000000..9e3c4a30 Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/elastic-search.png differ diff --git a/website/static/img/resources/alibabacloud/compute/function-compute.png b/website/static/img/resources/alibabacloud/compute/function-compute.png new file mode 100644 index 00000000..6c3afa6f Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/function-compute.png differ diff --git a/website/static/img/resources/alibabacloud/compute/operation-orchestration-service.png b/website/static/img/resources/alibabacloud/compute/operation-orchestration-service.png new file mode 100644 index 00000000..52e828dd Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/operation-orchestration-service.png differ diff --git a/website/static/img/resources/alibabacloud/compute/resource-orchestration-service.png b/website/static/img/resources/alibabacloud/compute/resource-orchestration-service.png new file mode 100644 index 00000000..6742f287 Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/resource-orchestration-service.png differ diff --git a/website/static/img/resources/alibabacloud/compute/server-load-balancer.png b/website/static/img/resources/alibabacloud/compute/server-load-balancer.png new file mode 100644 index 00000000..33380e3c Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/server-load-balancer.png differ diff --git a/website/static/img/resources/alibabacloud/compute/serverless-app-engine.png b/website/static/img/resources/alibabacloud/compute/serverless-app-engine.png new file mode 100644 index 00000000..7967e76b Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/serverless-app-engine.png differ diff --git a/website/static/img/resources/alibabacloud/compute/simple-application-server.png b/website/static/img/resources/alibabacloud/compute/simple-application-server.png new file mode 100644 index 00000000..299a1e9e Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/simple-application-server.png differ diff --git a/website/static/img/resources/alibabacloud/compute/web-app-service.png b/website/static/img/resources/alibabacloud/compute/web-app-service.png new file mode 100644 index 00000000..5ce154b5 Binary files /dev/null and b/website/static/img/resources/alibabacloud/compute/web-app-service.png differ diff --git a/website/static/img/resources/alibabacloud/database/apsaradb-cassandra.png b/website/static/img/resources/alibabacloud/database/apsaradb-cassandra.png new file mode 100644 index 00000000..87148da2 Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/apsaradb-cassandra.png differ diff --git a/website/static/img/resources/alibabacloud/database/apsaradb-hbase.png b/website/static/img/resources/alibabacloud/database/apsaradb-hbase.png new file mode 100644 index 00000000..b6bba8ed Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/apsaradb-hbase.png differ diff --git a/website/static/img/resources/alibabacloud/database/apsaradb-memcache.png b/website/static/img/resources/alibabacloud/database/apsaradb-memcache.png new file mode 100644 index 00000000..3d9020a6 Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/apsaradb-memcache.png differ diff --git a/website/static/img/resources/alibabacloud/database/apsaradb-mongodb.png b/website/static/img/resources/alibabacloud/database/apsaradb-mongodb.png new file mode 100644 index 00000000..899c6602 Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/apsaradb-mongodb.png differ diff --git a/website/static/img/resources/alibabacloud/database/apsaradb-oceanbase.png b/website/static/img/resources/alibabacloud/database/apsaradb-oceanbase.png new file mode 100644 index 00000000..a9506dfe Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/apsaradb-oceanbase.png differ diff --git a/website/static/img/resources/alibabacloud/database/apsaradb-polardb.png b/website/static/img/resources/alibabacloud/database/apsaradb-polardb.png new file mode 100644 index 00000000..3f543b66 Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/apsaradb-polardb.png differ diff --git a/website/static/img/resources/alibabacloud/database/apsaradb-postgresql.png b/website/static/img/resources/alibabacloud/database/apsaradb-postgresql.png new file mode 100644 index 00000000..1d3a829c Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/apsaradb-postgresql.png differ diff --git a/website/static/img/resources/alibabacloud/database/apsaradb-ppas.png b/website/static/img/resources/alibabacloud/database/apsaradb-ppas.png new file mode 100644 index 00000000..e2f7c780 Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/apsaradb-ppas.png differ diff --git a/website/static/img/resources/alibabacloud/database/apsaradb-redis.png b/website/static/img/resources/alibabacloud/database/apsaradb-redis.png new file mode 100644 index 00000000..2953e14c Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/apsaradb-redis.png differ diff --git a/website/static/img/resources/alibabacloud/database/apsaradb-sqlserver.png b/website/static/img/resources/alibabacloud/database/apsaradb-sqlserver.png new file mode 100644 index 00000000..110e018c Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/apsaradb-sqlserver.png differ diff --git a/website/static/img/resources/alibabacloud/database/data-management-service.png b/website/static/img/resources/alibabacloud/database/data-management-service.png new file mode 100644 index 00000000..238d30c5 Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/data-management-service.png differ diff --git a/website/static/img/resources/alibabacloud/database/data-transmission-service.png b/website/static/img/resources/alibabacloud/database/data-transmission-service.png new file mode 100644 index 00000000..a4f68534 Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/data-transmission-service.png differ diff --git a/website/static/img/resources/alibabacloud/database/database-backup-service.png b/website/static/img/resources/alibabacloud/database/database-backup-service.png new file mode 100644 index 00000000..94ed3052 Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/database-backup-service.png differ diff --git a/website/static/img/resources/alibabacloud/database/disribute-relational-database-service.png b/website/static/img/resources/alibabacloud/database/disribute-relational-database-service.png new file mode 100644 index 00000000..55bd7118 Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/disribute-relational-database-service.png differ diff --git a/website/static/img/resources/alibabacloud/database/graph-database-service.png b/website/static/img/resources/alibabacloud/database/graph-database-service.png new file mode 100644 index 00000000..d90cbd81 Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/graph-database-service.png differ diff --git a/website/static/img/resources/alibabacloud/database/hybriddb-for-mysql.png b/website/static/img/resources/alibabacloud/database/hybriddb-for-mysql.png new file mode 100644 index 00000000..f0863fe8 Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/hybriddb-for-mysql.png differ diff --git a/website/static/img/resources/alibabacloud/database/relational-database-service.png b/website/static/img/resources/alibabacloud/database/relational-database-service.png new file mode 100644 index 00000000..3390ba67 Binary files /dev/null and b/website/static/img/resources/alibabacloud/database/relational-database-service.png differ diff --git a/website/static/img/resources/alibabacloud/iot/iot-internet-device-id.png b/website/static/img/resources/alibabacloud/iot/iot-internet-device-id.png new file mode 100644 index 00000000..52f17ae7 Binary files /dev/null and b/website/static/img/resources/alibabacloud/iot/iot-internet-device-id.png differ diff --git a/website/static/img/resources/alibabacloud/iot/iot-link-wan.png b/website/static/img/resources/alibabacloud/iot/iot-link-wan.png new file mode 100644 index 00000000..d94dc044 Binary files /dev/null and b/website/static/img/resources/alibabacloud/iot/iot-link-wan.png differ diff --git a/website/static/img/resources/alibabacloud/iot/iot-mobile-connection-package.png b/website/static/img/resources/alibabacloud/iot/iot-mobile-connection-package.png new file mode 100644 index 00000000..c5f40d6f Binary files /dev/null and b/website/static/img/resources/alibabacloud/iot/iot-mobile-connection-package.png differ diff --git a/website/static/img/resources/alibabacloud/iot/iot-platform.png b/website/static/img/resources/alibabacloud/iot/iot-platform.png new file mode 100644 index 00000000..5deb97e0 Binary files /dev/null and b/website/static/img/resources/alibabacloud/iot/iot-platform.png differ diff --git a/website/static/img/resources/alibabacloud/network/cdn.png b/website/static/img/resources/alibabacloud/network/cdn.png new file mode 100644 index 00000000..8beeaec1 Binary files /dev/null and b/website/static/img/resources/alibabacloud/network/cdn.png differ diff --git a/website/static/img/resources/alibabacloud/network/cloud-enterprise-network.png b/website/static/img/resources/alibabacloud/network/cloud-enterprise-network.png new file mode 100644 index 00000000..bbeb6e24 Binary files /dev/null and b/website/static/img/resources/alibabacloud/network/cloud-enterprise-network.png differ diff --git a/website/static/img/resources/alibabacloud/network/elastic-ip-address.png b/website/static/img/resources/alibabacloud/network/elastic-ip-address.png new file mode 100644 index 00000000..1495637c Binary files /dev/null and b/website/static/img/resources/alibabacloud/network/elastic-ip-address.png differ diff --git a/website/static/img/resources/alibabacloud/network/express-connect.png b/website/static/img/resources/alibabacloud/network/express-connect.png new file mode 100644 index 00000000..6147b019 Binary files /dev/null and b/website/static/img/resources/alibabacloud/network/express-connect.png differ diff --git a/website/static/img/resources/alibabacloud/network/nat-gateway.png b/website/static/img/resources/alibabacloud/network/nat-gateway.png new file mode 100644 index 00000000..24d9575d Binary files /dev/null and b/website/static/img/resources/alibabacloud/network/nat-gateway.png differ diff --git a/website/static/img/resources/alibabacloud/network/server-load-balancer.png b/website/static/img/resources/alibabacloud/network/server-load-balancer.png new file mode 100644 index 00000000..33380e3c Binary files /dev/null and b/website/static/img/resources/alibabacloud/network/server-load-balancer.png differ diff --git a/website/static/img/resources/alibabacloud/network/smart-access-gateway.png b/website/static/img/resources/alibabacloud/network/smart-access-gateway.png new file mode 100644 index 00000000..ab89625d Binary files /dev/null and b/website/static/img/resources/alibabacloud/network/smart-access-gateway.png differ diff --git a/website/static/img/resources/alibabacloud/network/virtual-private-cloud.png b/website/static/img/resources/alibabacloud/network/virtual-private-cloud.png new file mode 100644 index 00000000..8bbc8930 Binary files /dev/null and b/website/static/img/resources/alibabacloud/network/virtual-private-cloud.png differ diff --git a/website/static/img/resources/alibabacloud/network/vpn-gateway.png b/website/static/img/resources/alibabacloud/network/vpn-gateway.png new file mode 100644 index 00000000..1f26934e Binary files /dev/null and b/website/static/img/resources/alibabacloud/network/vpn-gateway.png differ diff --git a/website/static/img/resources/alibabacloud/security/anti-bot-service.png b/website/static/img/resources/alibabacloud/security/anti-bot-service.png new file mode 100644 index 00000000..d688abab Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/anti-bot-service.png differ diff --git a/website/static/img/resources/alibabacloud/security/anti-ddos-basic.png b/website/static/img/resources/alibabacloud/security/anti-ddos-basic.png new file mode 100644 index 00000000..9fee49f7 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/anti-ddos-basic.png differ diff --git a/website/static/img/resources/alibabacloud/security/anti-ddos-pro.png b/website/static/img/resources/alibabacloud/security/anti-ddos-pro.png new file mode 100644 index 00000000..98462f4d Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/anti-ddos-pro.png differ diff --git a/website/static/img/resources/alibabacloud/security/antifraud-service.png b/website/static/img/resources/alibabacloud/security/antifraud-service.png new file mode 100644 index 00000000..0468dc04 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/antifraud-service.png differ diff --git a/website/static/img/resources/alibabacloud/security/bastion-host.png b/website/static/img/resources/alibabacloud/security/bastion-host.png new file mode 100644 index 00000000..ac2215f6 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/bastion-host.png differ diff --git a/website/static/img/resources/alibabacloud/security/cloud-firewall.png b/website/static/img/resources/alibabacloud/security/cloud-firewall.png new file mode 100644 index 00000000..7b807303 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/cloud-firewall.png differ diff --git a/website/static/img/resources/alibabacloud/security/cloud-security-scanner.png b/website/static/img/resources/alibabacloud/security/cloud-security-scanner.png new file mode 100644 index 00000000..fe9e8288 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/cloud-security-scanner.png differ diff --git a/website/static/img/resources/alibabacloud/security/content-moderation.png b/website/static/img/resources/alibabacloud/security/content-moderation.png new file mode 100644 index 00000000..55f5b9c0 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/content-moderation.png differ diff --git a/website/static/img/resources/alibabacloud/security/crowdsourced-security-testing.png b/website/static/img/resources/alibabacloud/security/crowdsourced-security-testing.png new file mode 100644 index 00000000..144057d0 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/crowdsourced-security-testing.png differ diff --git a/website/static/img/resources/alibabacloud/security/data-encryption-service.png b/website/static/img/resources/alibabacloud/security/data-encryption-service.png new file mode 100644 index 00000000..e22c0a89 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/data-encryption-service.png differ diff --git a/website/static/img/resources/alibabacloud/security/db-audit.png b/website/static/img/resources/alibabacloud/security/db-audit.png new file mode 100644 index 00000000..195b11fc Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/db-audit.png differ diff --git a/website/static/img/resources/alibabacloud/security/game-shield.png b/website/static/img/resources/alibabacloud/security/game-shield.png new file mode 100644 index 00000000..a66127bb Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/game-shield.png differ diff --git a/website/static/img/resources/alibabacloud/security/id-verification.png b/website/static/img/resources/alibabacloud/security/id-verification.png new file mode 100644 index 00000000..512e8729 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/id-verification.png differ diff --git a/website/static/img/resources/alibabacloud/security/managed-security-service.png b/website/static/img/resources/alibabacloud/security/managed-security-service.png new file mode 100644 index 00000000..c0e661c0 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/managed-security-service.png differ diff --git a/website/static/img/resources/alibabacloud/security/security-center.png b/website/static/img/resources/alibabacloud/security/security-center.png new file mode 100644 index 00000000..485141a1 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/security-center.png differ diff --git a/website/static/img/resources/alibabacloud/security/server-guard.png b/website/static/img/resources/alibabacloud/security/server-guard.png new file mode 100644 index 00000000..b924e71b Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/server-guard.png differ diff --git a/website/static/img/resources/alibabacloud/security/ssl-certificates.png b/website/static/img/resources/alibabacloud/security/ssl-certificates.png new file mode 100644 index 00000000..23979bf4 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/ssl-certificates.png differ diff --git a/website/static/img/resources/alibabacloud/security/web-application-firewall.png b/website/static/img/resources/alibabacloud/security/web-application-firewall.png new file mode 100644 index 00000000..ecbd8216 Binary files /dev/null and b/website/static/img/resources/alibabacloud/security/web-application-firewall.png differ diff --git a/website/static/img/resources/alibabacloud/storage/cloud-storage-gateway.png b/website/static/img/resources/alibabacloud/storage/cloud-storage-gateway.png new file mode 100644 index 00000000..d578e944 Binary files /dev/null and b/website/static/img/resources/alibabacloud/storage/cloud-storage-gateway.png differ diff --git a/website/static/img/resources/alibabacloud/storage/file-storage-hdfs.png b/website/static/img/resources/alibabacloud/storage/file-storage-hdfs.png new file mode 100644 index 00000000..9d965c60 Binary files /dev/null and b/website/static/img/resources/alibabacloud/storage/file-storage-hdfs.png differ diff --git a/website/static/img/resources/alibabacloud/storage/file-storage-nas.png b/website/static/img/resources/alibabacloud/storage/file-storage-nas.png new file mode 100644 index 00000000..264d9c00 Binary files /dev/null and b/website/static/img/resources/alibabacloud/storage/file-storage-nas.png differ diff --git a/website/static/img/resources/alibabacloud/storage/hybrid-backup-recovery.png b/website/static/img/resources/alibabacloud/storage/hybrid-backup-recovery.png new file mode 100644 index 00000000..94409b39 Binary files /dev/null and b/website/static/img/resources/alibabacloud/storage/hybrid-backup-recovery.png differ diff --git a/website/static/img/resources/alibabacloud/storage/hybrid-cloud-disaster-recovery.png b/website/static/img/resources/alibabacloud/storage/hybrid-cloud-disaster-recovery.png new file mode 100644 index 00000000..037a1cca Binary files /dev/null and b/website/static/img/resources/alibabacloud/storage/hybrid-cloud-disaster-recovery.png differ diff --git a/website/static/img/resources/alibabacloud/storage/imm.png b/website/static/img/resources/alibabacloud/storage/imm.png new file mode 100644 index 00000000..1bed8491 Binary files /dev/null and b/website/static/img/resources/alibabacloud/storage/imm.png differ diff --git a/website/static/img/resources/alibabacloud/storage/object-storage-service.png b/website/static/img/resources/alibabacloud/storage/object-storage-service.png new file mode 100644 index 00000000..fb189dde Binary files /dev/null and b/website/static/img/resources/alibabacloud/storage/object-storage-service.png differ diff --git a/website/static/img/resources/alibabacloud/storage/object-table-store.png b/website/static/img/resources/alibabacloud/storage/object-table-store.png new file mode 100644 index 00000000..09a8cc72 Binary files /dev/null and b/website/static/img/resources/alibabacloud/storage/object-table-store.png differ diff --git a/website/static/img/resources/alibabacloud/web/dns.png b/website/static/img/resources/alibabacloud/web/dns.png new file mode 100644 index 00000000..f429fee9 Binary files /dev/null and b/website/static/img/resources/alibabacloud/web/dns.png differ diff --git a/website/static/img/resources/alibabacloud/web/domain.png b/website/static/img/resources/alibabacloud/web/domain.png new file mode 100644 index 00000000..6014bbb6 Binary files /dev/null and b/website/static/img/resources/alibabacloud/web/domain.png differ diff --git a/website/static/img/resources/aws/analytics/amazon-opensearch-service.png b/website/static/img/resources/aws/analytics/amazon-opensearch-service.png new file mode 100644 index 00000000..e1d5a6a7 Binary files /dev/null and b/website/static/img/resources/aws/analytics/amazon-opensearch-service.png differ diff --git a/website/static/img/resources/aws/analytics/analytics.png b/website/static/img/resources/aws/analytics/analytics.png new file mode 100644 index 00000000..ef67203d Binary files /dev/null and b/website/static/img/resources/aws/analytics/analytics.png differ diff --git a/website/static/img/resources/aws/analytics/athena.png b/website/static/img/resources/aws/analytics/athena.png new file mode 100644 index 00000000..e51abb58 Binary files /dev/null and b/website/static/img/resources/aws/analytics/athena.png differ diff --git a/website/static/img/resources/aws/analytics/cloudsearch-search-documents.png b/website/static/img/resources/aws/analytics/cloudsearch-search-documents.png new file mode 100644 index 00000000..2d2624fd Binary files /dev/null and b/website/static/img/resources/aws/analytics/cloudsearch-search-documents.png differ diff --git a/website/static/img/resources/aws/analytics/cloudsearch.png b/website/static/img/resources/aws/analytics/cloudsearch.png new file mode 100644 index 00000000..1bc03c15 Binary files /dev/null and b/website/static/img/resources/aws/analytics/cloudsearch.png differ diff --git a/website/static/img/resources/aws/analytics/data-lake-resource.png b/website/static/img/resources/aws/analytics/data-lake-resource.png new file mode 100644 index 00000000..bb7c1caf Binary files /dev/null and b/website/static/img/resources/aws/analytics/data-lake-resource.png differ diff --git a/website/static/img/resources/aws/analytics/data-pipeline.png b/website/static/img/resources/aws/analytics/data-pipeline.png new file mode 100644 index 00000000..3e3036bf Binary files /dev/null and b/website/static/img/resources/aws/analytics/data-pipeline.png differ diff --git a/website/static/img/resources/aws/analytics/elasticsearch-service.png b/website/static/img/resources/aws/analytics/elasticsearch-service.png new file mode 100644 index 00000000..da8f9a6f Binary files /dev/null and b/website/static/img/resources/aws/analytics/elasticsearch-service.png differ diff --git a/website/static/img/resources/aws/analytics/emr-cluster.png b/website/static/img/resources/aws/analytics/emr-cluster.png new file mode 100644 index 00000000..ea559087 Binary files /dev/null and b/website/static/img/resources/aws/analytics/emr-cluster.png differ diff --git a/website/static/img/resources/aws/analytics/emr-engine-mapr-m3.png b/website/static/img/resources/aws/analytics/emr-engine-mapr-m3.png new file mode 100644 index 00000000..0547e623 Binary files /dev/null and b/website/static/img/resources/aws/analytics/emr-engine-mapr-m3.png differ diff --git a/website/static/img/resources/aws/analytics/emr-engine-mapr-m5.png b/website/static/img/resources/aws/analytics/emr-engine-mapr-m5.png new file mode 100644 index 00000000..8abd36a3 Binary files /dev/null and b/website/static/img/resources/aws/analytics/emr-engine-mapr-m5.png differ diff --git a/website/static/img/resources/aws/analytics/emr-engine-mapr-m7.png b/website/static/img/resources/aws/analytics/emr-engine-mapr-m7.png new file mode 100644 index 00000000..2f28f1d7 Binary files /dev/null and b/website/static/img/resources/aws/analytics/emr-engine-mapr-m7.png differ diff --git a/website/static/img/resources/aws/analytics/emr-engine.png b/website/static/img/resources/aws/analytics/emr-engine.png new file mode 100644 index 00000000..21273e03 Binary files /dev/null and b/website/static/img/resources/aws/analytics/emr-engine.png differ diff --git a/website/static/img/resources/aws/analytics/emr-hdfs-cluster.png b/website/static/img/resources/aws/analytics/emr-hdfs-cluster.png new file mode 100644 index 00000000..31e2ce3b Binary files /dev/null and b/website/static/img/resources/aws/analytics/emr-hdfs-cluster.png differ diff --git a/website/static/img/resources/aws/analytics/emr.png b/website/static/img/resources/aws/analytics/emr.png new file mode 100644 index 00000000..df85811e Binary files /dev/null and b/website/static/img/resources/aws/analytics/emr.png differ diff --git a/website/static/img/resources/aws/analytics/glue-crawlers.png b/website/static/img/resources/aws/analytics/glue-crawlers.png new file mode 100644 index 00000000..da11608f Binary files /dev/null and b/website/static/img/resources/aws/analytics/glue-crawlers.png differ diff --git a/website/static/img/resources/aws/analytics/glue-data-catalog.png b/website/static/img/resources/aws/analytics/glue-data-catalog.png new file mode 100644 index 00000000..5bf091af Binary files /dev/null and b/website/static/img/resources/aws/analytics/glue-data-catalog.png differ diff --git a/website/static/img/resources/aws/analytics/glue.png b/website/static/img/resources/aws/analytics/glue.png new file mode 100644 index 00000000..b91416f0 Binary files /dev/null and b/website/static/img/resources/aws/analytics/glue.png differ diff --git a/website/static/img/resources/aws/analytics/kinesis-data-analytics.png b/website/static/img/resources/aws/analytics/kinesis-data-analytics.png new file mode 100644 index 00000000..0f52bd2e Binary files /dev/null and b/website/static/img/resources/aws/analytics/kinesis-data-analytics.png differ diff --git a/website/static/img/resources/aws/analytics/kinesis-data-firehose.png b/website/static/img/resources/aws/analytics/kinesis-data-firehose.png new file mode 100644 index 00000000..b543e85f Binary files /dev/null and b/website/static/img/resources/aws/analytics/kinesis-data-firehose.png differ diff --git a/website/static/img/resources/aws/analytics/kinesis-data-streams.png b/website/static/img/resources/aws/analytics/kinesis-data-streams.png new file mode 100644 index 00000000..badec2f0 Binary files /dev/null and b/website/static/img/resources/aws/analytics/kinesis-data-streams.png differ diff --git a/website/static/img/resources/aws/analytics/kinesis-video-streams.png b/website/static/img/resources/aws/analytics/kinesis-video-streams.png new file mode 100644 index 00000000..1c3930ac Binary files /dev/null and b/website/static/img/resources/aws/analytics/kinesis-video-streams.png differ diff --git a/website/static/img/resources/aws/analytics/kinesis.png b/website/static/img/resources/aws/analytics/kinesis.png new file mode 100644 index 00000000..16812b3c Binary files /dev/null and b/website/static/img/resources/aws/analytics/kinesis.png differ diff --git a/website/static/img/resources/aws/analytics/lake-formation.png b/website/static/img/resources/aws/analytics/lake-formation.png new file mode 100644 index 00000000..61f32979 Binary files /dev/null and b/website/static/img/resources/aws/analytics/lake-formation.png differ diff --git a/website/static/img/resources/aws/analytics/managed-streaming-for-kafka.png b/website/static/img/resources/aws/analytics/managed-streaming-for-kafka.png new file mode 100644 index 00000000..f090b78c Binary files /dev/null and b/website/static/img/resources/aws/analytics/managed-streaming-for-kafka.png differ diff --git a/website/static/img/resources/aws/analytics/opensearch.png b/website/static/img/resources/aws/analytics/opensearch.png new file mode 100644 index 00000000..e1d5a6a7 Binary files /dev/null and b/website/static/img/resources/aws/analytics/opensearch.png differ diff --git a/website/static/img/resources/aws/analytics/quicksight.png b/website/static/img/resources/aws/analytics/quicksight.png new file mode 100644 index 00000000..3c7c974e Binary files /dev/null and b/website/static/img/resources/aws/analytics/quicksight.png differ diff --git a/website/static/img/resources/aws/analytics/redshift-dense-compute-node.png b/website/static/img/resources/aws/analytics/redshift-dense-compute-node.png new file mode 100644 index 00000000..1f22df12 Binary files /dev/null and b/website/static/img/resources/aws/analytics/redshift-dense-compute-node.png differ diff --git a/website/static/img/resources/aws/analytics/redshift-dense-storage-node.png b/website/static/img/resources/aws/analytics/redshift-dense-storage-node.png new file mode 100644 index 00000000..b211748a Binary files /dev/null and b/website/static/img/resources/aws/analytics/redshift-dense-storage-node.png differ diff --git a/website/static/img/resources/aws/analytics/redshift.png b/website/static/img/resources/aws/analytics/redshift.png new file mode 100644 index 00000000..23253ba4 Binary files /dev/null and b/website/static/img/resources/aws/analytics/redshift.png differ diff --git a/website/static/img/resources/aws/ar/ar-vr.png b/website/static/img/resources/aws/ar/ar-vr.png new file mode 100644 index 00000000..82b009ec Binary files /dev/null and b/website/static/img/resources/aws/ar/ar-vr.png differ diff --git a/website/static/img/resources/aws/ar/sumerian.png b/website/static/img/resources/aws/ar/sumerian.png new file mode 100644 index 00000000..c46492bd Binary files /dev/null and b/website/static/img/resources/aws/ar/sumerian.png differ diff --git a/website/static/img/resources/aws/blockchain/blockchain-resource.png b/website/static/img/resources/aws/blockchain/blockchain-resource.png new file mode 100644 index 00000000..bd31f858 Binary files /dev/null and b/website/static/img/resources/aws/blockchain/blockchain-resource.png differ diff --git a/website/static/img/resources/aws/blockchain/blockchain.png b/website/static/img/resources/aws/blockchain/blockchain.png new file mode 100644 index 00000000..bcf410e6 Binary files /dev/null and b/website/static/img/resources/aws/blockchain/blockchain.png differ diff --git a/website/static/img/resources/aws/blockchain/managed-blockchain.png b/website/static/img/resources/aws/blockchain/managed-blockchain.png new file mode 100644 index 00000000..35f63d74 Binary files /dev/null and b/website/static/img/resources/aws/blockchain/managed-blockchain.png differ diff --git a/website/static/img/resources/aws/blockchain/quantum-ledger-database-qldb.png b/website/static/img/resources/aws/blockchain/quantum-ledger-database-qldb.png new file mode 100644 index 00000000..f2c69044 Binary files /dev/null and b/website/static/img/resources/aws/blockchain/quantum-ledger-database-qldb.png differ diff --git a/website/static/img/resources/aws/business/alexa-for-business.png b/website/static/img/resources/aws/business/alexa-for-business.png new file mode 100644 index 00000000..ae7377cb Binary files /dev/null and b/website/static/img/resources/aws/business/alexa-for-business.png differ diff --git a/website/static/img/resources/aws/business/business-applications.png b/website/static/img/resources/aws/business/business-applications.png new file mode 100644 index 00000000..c3eb299b Binary files /dev/null and b/website/static/img/resources/aws/business/business-applications.png differ diff --git a/website/static/img/resources/aws/business/chime.png b/website/static/img/resources/aws/business/chime.png new file mode 100644 index 00000000..fb3f92ac Binary files /dev/null and b/website/static/img/resources/aws/business/chime.png differ diff --git a/website/static/img/resources/aws/business/workmail.png b/website/static/img/resources/aws/business/workmail.png new file mode 100644 index 00000000..48082930 Binary files /dev/null and b/website/static/img/resources/aws/business/workmail.png differ diff --git a/website/static/img/resources/aws/compute/app-runner.png b/website/static/img/resources/aws/compute/app-runner.png new file mode 100644 index 00000000..c8448bc5 Binary files /dev/null and b/website/static/img/resources/aws/compute/app-runner.png differ diff --git a/website/static/img/resources/aws/compute/application-auto-scaling-rounded.png b/website/static/img/resources/aws/compute/application-auto-scaling-rounded.png new file mode 100644 index 00000000..b91b06ed Binary files /dev/null and b/website/static/img/resources/aws/compute/application-auto-scaling-rounded.png differ diff --git a/website/static/img/resources/aws/compute/application-auto-scaling.png b/website/static/img/resources/aws/compute/application-auto-scaling.png new file mode 100755 index 00000000..b91b06ed Binary files /dev/null and b/website/static/img/resources/aws/compute/application-auto-scaling.png differ diff --git a/website/static/img/resources/aws/compute/batch-rounded.png b/website/static/img/resources/aws/compute/batch-rounded.png new file mode 100644 index 00000000..e2e5e18b Binary files /dev/null and b/website/static/img/resources/aws/compute/batch-rounded.png differ diff --git a/website/static/img/resources/aws/compute/batch.png b/website/static/img/resources/aws/compute/batch.png new file mode 100644 index 00000000..e2e5e18b Binary files /dev/null and b/website/static/img/resources/aws/compute/batch.png differ diff --git a/website/static/img/resources/aws/compute/compute-optimizer.png b/website/static/img/resources/aws/compute/compute-optimizer.png new file mode 100644 index 00000000..3ad2dd5d Binary files /dev/null and b/website/static/img/resources/aws/compute/compute-optimizer.png differ diff --git a/website/static/img/resources/aws/compute/compute-rounded.png b/website/static/img/resources/aws/compute/compute-rounded.png new file mode 100644 index 00000000..a50bbaff Binary files /dev/null and b/website/static/img/resources/aws/compute/compute-rounded.png differ diff --git a/website/static/img/resources/aws/compute/compute.png b/website/static/img/resources/aws/compute/compute.png new file mode 100644 index 00000000..a50bbaff Binary files /dev/null and b/website/static/img/resources/aws/compute/compute.png differ diff --git a/website/static/img/resources/aws/compute/ec2-ami.png b/website/static/img/resources/aws/compute/ec2-ami.png new file mode 100644 index 00000000..e5ee34ad Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-ami.png differ diff --git a/website/static/img/resources/aws/compute/ec2-auto-scaling.png b/website/static/img/resources/aws/compute/ec2-auto-scaling.png new file mode 100644 index 00000000..04123663 Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-auto-scaling.png differ diff --git a/website/static/img/resources/aws/compute/ec2-container-registry-image.png b/website/static/img/resources/aws/compute/ec2-container-registry-image.png new file mode 100644 index 00000000..7b59df3d Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-container-registry-image.png differ diff --git a/website/static/img/resources/aws/compute/ec2-container-registry-registry.png b/website/static/img/resources/aws/compute/ec2-container-registry-registry.png new file mode 100644 index 00000000..22d0d661 Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-container-registry-registry.png differ diff --git a/website/static/img/resources/aws/compute/ec2-container-registry-rounded.png b/website/static/img/resources/aws/compute/ec2-container-registry-rounded.png new file mode 100644 index 00000000..1dbfed05 Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-container-registry-rounded.png differ diff --git a/website/static/img/resources/aws/compute/ec2-container-registry.png b/website/static/img/resources/aws/compute/ec2-container-registry.png new file mode 100644 index 00000000..1dbfed05 Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-container-registry.png differ diff --git a/website/static/img/resources/aws/compute/ec2-elastic-ip-address.png b/website/static/img/resources/aws/compute/ec2-elastic-ip-address.png new file mode 100644 index 00000000..5b226d95 Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-elastic-ip-address.png differ diff --git a/website/static/img/resources/aws/compute/ec2-image-builder.png b/website/static/img/resources/aws/compute/ec2-image-builder.png new file mode 100644 index 00000000..1ee4acfa Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-image-builder.png differ diff --git a/website/static/img/resources/aws/compute/ec2-instance.png b/website/static/img/resources/aws/compute/ec2-instance.png new file mode 100644 index 00000000..fd58edcb Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-instance.png differ diff --git a/website/static/img/resources/aws/compute/ec2-instances.png b/website/static/img/resources/aws/compute/ec2-instances.png new file mode 100644 index 00000000..215ca26c Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-instances.png differ diff --git a/website/static/img/resources/aws/compute/ec2-rescue.png b/website/static/img/resources/aws/compute/ec2-rescue.png new file mode 100644 index 00000000..f5dbf2b8 Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-rescue.png differ diff --git a/website/static/img/resources/aws/compute/ec2-rounded.png b/website/static/img/resources/aws/compute/ec2-rounded.png new file mode 100644 index 00000000..cca18d73 Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-rounded.png differ diff --git a/website/static/img/resources/aws/compute/ec2-spot-instance.png b/website/static/img/resources/aws/compute/ec2-spot-instance.png new file mode 100644 index 00000000..82df72d8 Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2-spot-instance.png differ diff --git a/website/static/img/resources/aws/compute/ec2.png b/website/static/img/resources/aws/compute/ec2.png new file mode 100644 index 00000000..cca18d73 Binary files /dev/null and b/website/static/img/resources/aws/compute/ec2.png differ diff --git a/website/static/img/resources/aws/compute/elastic-beanstalk-application.png b/website/static/img/resources/aws/compute/elastic-beanstalk-application.png new file mode 100644 index 00000000..3f8f6d9d Binary files /dev/null and b/website/static/img/resources/aws/compute/elastic-beanstalk-application.png differ diff --git a/website/static/img/resources/aws/compute/elastic-beanstalk-deployment.png b/website/static/img/resources/aws/compute/elastic-beanstalk-deployment.png new file mode 100644 index 00000000..9f1464b6 Binary files /dev/null and b/website/static/img/resources/aws/compute/elastic-beanstalk-deployment.png differ diff --git a/website/static/img/resources/aws/compute/elastic-beanstalk-rounded.png b/website/static/img/resources/aws/compute/elastic-beanstalk-rounded.png new file mode 100644 index 00000000..a38a6e51 Binary files /dev/null and b/website/static/img/resources/aws/compute/elastic-beanstalk-rounded.png differ diff --git a/website/static/img/resources/aws/compute/elastic-beanstalk.png b/website/static/img/resources/aws/compute/elastic-beanstalk.png new file mode 100644 index 00000000..a38a6e51 Binary files /dev/null and b/website/static/img/resources/aws/compute/elastic-beanstalk.png differ diff --git a/website/static/img/resources/aws/compute/elastic-container-service-container.png b/website/static/img/resources/aws/compute/elastic-container-service-container.png new file mode 100644 index 00000000..e8846798 Binary files /dev/null and b/website/static/img/resources/aws/compute/elastic-container-service-container.png differ diff --git a/website/static/img/resources/aws/compute/elastic-container-service-rounded.png b/website/static/img/resources/aws/compute/elastic-container-service-rounded.png new file mode 100644 index 00000000..274c5e47 Binary files /dev/null and b/website/static/img/resources/aws/compute/elastic-container-service-rounded.png differ diff --git a/website/static/img/resources/aws/compute/elastic-container-service-service.png b/website/static/img/resources/aws/compute/elastic-container-service-service.png new file mode 100644 index 00000000..965eb31e Binary files /dev/null and b/website/static/img/resources/aws/compute/elastic-container-service-service.png differ diff --git a/website/static/img/resources/aws/compute/elastic-container-service.png b/website/static/img/resources/aws/compute/elastic-container-service.png new file mode 100644 index 00000000..274c5e47 Binary files /dev/null and b/website/static/img/resources/aws/compute/elastic-container-service.png differ diff --git a/website/static/img/resources/aws/compute/elastic-kubernetes-service-rounded.png b/website/static/img/resources/aws/compute/elastic-kubernetes-service-rounded.png new file mode 100644 index 00000000..98ee8d3a Binary files /dev/null and b/website/static/img/resources/aws/compute/elastic-kubernetes-service-rounded.png differ diff --git a/website/static/img/resources/aws/compute/elastic-kubernetes-service.png b/website/static/img/resources/aws/compute/elastic-kubernetes-service.png new file mode 100644 index 00000000..98ee8d3a Binary files /dev/null and b/website/static/img/resources/aws/compute/elastic-kubernetes-service.png differ diff --git a/website/static/img/resources/aws/compute/fargate-rounded.png b/website/static/img/resources/aws/compute/fargate-rounded.png new file mode 100644 index 00000000..c9ec76e5 Binary files /dev/null and b/website/static/img/resources/aws/compute/fargate-rounded.png differ diff --git a/website/static/img/resources/aws/compute/fargate.png b/website/static/img/resources/aws/compute/fargate.png new file mode 100644 index 00000000..c9ec76e5 Binary files /dev/null and b/website/static/img/resources/aws/compute/fargate.png differ diff --git a/website/static/img/resources/aws/compute/lambda-function.png b/website/static/img/resources/aws/compute/lambda-function.png new file mode 100644 index 00000000..5c9b5e29 Binary files /dev/null and b/website/static/img/resources/aws/compute/lambda-function.png differ diff --git a/website/static/img/resources/aws/compute/lambda-rounded.png b/website/static/img/resources/aws/compute/lambda-rounded.png new file mode 100644 index 00000000..af5c8889 Binary files /dev/null and b/website/static/img/resources/aws/compute/lambda-rounded.png differ diff --git a/website/static/img/resources/aws/compute/lambda.png b/website/static/img/resources/aws/compute/lambda.png new file mode 100644 index 00000000..af5c8889 Binary files /dev/null and b/website/static/img/resources/aws/compute/lambda.png differ diff --git a/website/static/img/resources/aws/compute/lightsail-rounded.png b/website/static/img/resources/aws/compute/lightsail-rounded.png new file mode 100644 index 00000000..b8e2f5f5 Binary files /dev/null and b/website/static/img/resources/aws/compute/lightsail-rounded.png differ diff --git a/website/static/img/resources/aws/compute/lightsail.png b/website/static/img/resources/aws/compute/lightsail.png new file mode 100644 index 00000000..b8e2f5f5 Binary files /dev/null and b/website/static/img/resources/aws/compute/lightsail.png differ diff --git a/website/static/img/resources/aws/compute/local-zones.png b/website/static/img/resources/aws/compute/local-zones.png new file mode 100644 index 00000000..a97d446e Binary files /dev/null and b/website/static/img/resources/aws/compute/local-zones.png differ diff --git a/website/static/img/resources/aws/compute/outposts-rounded.png b/website/static/img/resources/aws/compute/outposts-rounded.png new file mode 100644 index 00000000..76fa693c Binary files /dev/null and b/website/static/img/resources/aws/compute/outposts-rounded.png differ diff --git a/website/static/img/resources/aws/compute/outposts.png b/website/static/img/resources/aws/compute/outposts.png new file mode 100644 index 00000000..76fa693c Binary files /dev/null and b/website/static/img/resources/aws/compute/outposts.png differ diff --git a/website/static/img/resources/aws/compute/serverless-application-repository-rounded.png b/website/static/img/resources/aws/compute/serverless-application-repository-rounded.png new file mode 100644 index 00000000..c7aaa4c0 Binary files /dev/null and b/website/static/img/resources/aws/compute/serverless-application-repository-rounded.png differ diff --git a/website/static/img/resources/aws/compute/serverless-application-repository.png b/website/static/img/resources/aws/compute/serverless-application-repository.png new file mode 100644 index 00000000..c7aaa4c0 Binary files /dev/null and b/website/static/img/resources/aws/compute/serverless-application-repository.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-deadline-rounded.png b/website/static/img/resources/aws/compute/thinkbox-deadline-rounded.png new file mode 100644 index 00000000..725c1519 Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-deadline-rounded.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-deadline.png b/website/static/img/resources/aws/compute/thinkbox-deadline.png new file mode 100755 index 00000000..725c1519 Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-deadline.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-draft-rounded.png b/website/static/img/resources/aws/compute/thinkbox-draft-rounded.png new file mode 100644 index 00000000..286bf2f1 Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-draft-rounded.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-draft.png b/website/static/img/resources/aws/compute/thinkbox-draft.png new file mode 100755 index 00000000..286bf2f1 Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-draft.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-frost-rounded.png b/website/static/img/resources/aws/compute/thinkbox-frost-rounded.png new file mode 100644 index 00000000..3e63f714 Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-frost-rounded.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-frost.png b/website/static/img/resources/aws/compute/thinkbox-frost.png new file mode 100755 index 00000000..3e63f714 Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-frost.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-krakatoa-rounded.png b/website/static/img/resources/aws/compute/thinkbox-krakatoa-rounded.png new file mode 100644 index 00000000..07b5f35a Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-krakatoa-rounded.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-krakatoa.png b/website/static/img/resources/aws/compute/thinkbox-krakatoa.png new file mode 100755 index 00000000..07b5f35a Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-krakatoa.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-sequoia-rounded.png b/website/static/img/resources/aws/compute/thinkbox-sequoia-rounded.png new file mode 100644 index 00000000..99931cf6 Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-sequoia-rounded.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-sequoia.png b/website/static/img/resources/aws/compute/thinkbox-sequoia.png new file mode 100755 index 00000000..99931cf6 Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-sequoia.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-stoke-rounded.png b/website/static/img/resources/aws/compute/thinkbox-stoke-rounded.png new file mode 100644 index 00000000..ad869a87 Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-stoke-rounded.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-stoke.png b/website/static/img/resources/aws/compute/thinkbox-stoke.png new file mode 100755 index 00000000..ad869a87 Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-stoke.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-xmesh-rounded.png b/website/static/img/resources/aws/compute/thinkbox-xmesh-rounded.png new file mode 100644 index 00000000..01379b09 Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-xmesh-rounded.png differ diff --git a/website/static/img/resources/aws/compute/thinkbox-xmesh.png b/website/static/img/resources/aws/compute/thinkbox-xmesh.png new file mode 100755 index 00000000..01379b09 Binary files /dev/null and b/website/static/img/resources/aws/compute/thinkbox-xmesh.png differ diff --git a/website/static/img/resources/aws/compute/vmware-cloud-on-aws-rounded.png b/website/static/img/resources/aws/compute/vmware-cloud-on-aws-rounded.png new file mode 100644 index 00000000..24b3534b Binary files /dev/null and b/website/static/img/resources/aws/compute/vmware-cloud-on-aws-rounded.png differ diff --git a/website/static/img/resources/aws/compute/vmware-cloud-on-aws.png b/website/static/img/resources/aws/compute/vmware-cloud-on-aws.png new file mode 100644 index 00000000..24b3534b Binary files /dev/null and b/website/static/img/resources/aws/compute/vmware-cloud-on-aws.png differ diff --git a/website/static/img/resources/aws/compute/wavelength.png b/website/static/img/resources/aws/compute/wavelength.png new file mode 100644 index 00000000..208c42d8 Binary files /dev/null and b/website/static/img/resources/aws/compute/wavelength.png differ diff --git a/website/static/img/resources/aws/cost/budgets.png b/website/static/img/resources/aws/cost/budgets.png new file mode 100644 index 00000000..0ccebea7 Binary files /dev/null and b/website/static/img/resources/aws/cost/budgets.png differ diff --git a/website/static/img/resources/aws/cost/cost-and-usage-report.png b/website/static/img/resources/aws/cost/cost-and-usage-report.png new file mode 100644 index 00000000..651fef9f Binary files /dev/null and b/website/static/img/resources/aws/cost/cost-and-usage-report.png differ diff --git a/website/static/img/resources/aws/cost/cost-explorer.png b/website/static/img/resources/aws/cost/cost-explorer.png new file mode 100644 index 00000000..5bb28c4e Binary files /dev/null and b/website/static/img/resources/aws/cost/cost-explorer.png differ diff --git a/website/static/img/resources/aws/cost/cost-management.png b/website/static/img/resources/aws/cost/cost-management.png new file mode 100644 index 00000000..ec088b15 Binary files /dev/null and b/website/static/img/resources/aws/cost/cost-management.png differ diff --git a/website/static/img/resources/aws/cost/reserved-instance-reporting.png b/website/static/img/resources/aws/cost/reserved-instance-reporting.png new file mode 100644 index 00000000..f0add1cc Binary files /dev/null and b/website/static/img/resources/aws/cost/reserved-instance-reporting.png differ diff --git a/website/static/img/resources/aws/cost/savings-plans.png b/website/static/img/resources/aws/cost/savings-plans.png new file mode 100755 index 00000000..28e9cf20 Binary files /dev/null and b/website/static/img/resources/aws/cost/savings-plans.png differ diff --git a/website/static/img/resources/aws/database/aurora-instance.png b/website/static/img/resources/aws/database/aurora-instance.png new file mode 100644 index 00000000..34877a06 Binary files /dev/null and b/website/static/img/resources/aws/database/aurora-instance.png differ diff --git a/website/static/img/resources/aws/database/aurora.png b/website/static/img/resources/aws/database/aurora.png new file mode 100644 index 00000000..cc04dc49 Binary files /dev/null and b/website/static/img/resources/aws/database/aurora.png differ diff --git a/website/static/img/resources/aws/database/database-migration-service-database-migration-workflow.png b/website/static/img/resources/aws/database/database-migration-service-database-migration-workflow.png new file mode 100644 index 00000000..1f807c0d Binary files /dev/null and b/website/static/img/resources/aws/database/database-migration-service-database-migration-workflow.png differ diff --git a/website/static/img/resources/aws/database/database-migration-service.png b/website/static/img/resources/aws/database/database-migration-service.png new file mode 100644 index 00000000..0b0028cb Binary files /dev/null and b/website/static/img/resources/aws/database/database-migration-service.png differ diff --git a/website/static/img/resources/aws/database/database.png b/website/static/img/resources/aws/database/database.png new file mode 100644 index 00000000..76e96fa9 Binary files /dev/null and b/website/static/img/resources/aws/database/database.png differ diff --git a/website/static/img/resources/aws/database/documentdb-mongodb-compatibility.png b/website/static/img/resources/aws/database/documentdb-mongodb-compatibility.png new file mode 100644 index 00000000..9917c9b6 Binary files /dev/null and b/website/static/img/resources/aws/database/documentdb-mongodb-compatibility.png differ diff --git a/website/static/img/resources/aws/database/dynamodb-attribute.png b/website/static/img/resources/aws/database/dynamodb-attribute.png new file mode 100644 index 00000000..befaed80 Binary files /dev/null and b/website/static/img/resources/aws/database/dynamodb-attribute.png differ diff --git a/website/static/img/resources/aws/database/dynamodb-attributes.png b/website/static/img/resources/aws/database/dynamodb-attributes.png new file mode 100644 index 00000000..b935d517 Binary files /dev/null and b/website/static/img/resources/aws/database/dynamodb-attributes.png differ diff --git a/website/static/img/resources/aws/database/dynamodb-dax.png b/website/static/img/resources/aws/database/dynamodb-dax.png new file mode 100755 index 00000000..5f923c6f Binary files /dev/null and b/website/static/img/resources/aws/database/dynamodb-dax.png differ diff --git a/website/static/img/resources/aws/database/dynamodb-global-secondary-index.png b/website/static/img/resources/aws/database/dynamodb-global-secondary-index.png new file mode 100644 index 00000000..ca41aebd Binary files /dev/null and b/website/static/img/resources/aws/database/dynamodb-global-secondary-index.png differ diff --git a/website/static/img/resources/aws/database/dynamodb-item.png b/website/static/img/resources/aws/database/dynamodb-item.png new file mode 100644 index 00000000..17e152f5 Binary files /dev/null and b/website/static/img/resources/aws/database/dynamodb-item.png differ diff --git a/website/static/img/resources/aws/database/dynamodb-items.png b/website/static/img/resources/aws/database/dynamodb-items.png new file mode 100644 index 00000000..a0bf5fff Binary files /dev/null and b/website/static/img/resources/aws/database/dynamodb-items.png differ diff --git a/website/static/img/resources/aws/database/dynamodb-table.png b/website/static/img/resources/aws/database/dynamodb-table.png new file mode 100644 index 00000000..2dc08e68 Binary files /dev/null and b/website/static/img/resources/aws/database/dynamodb-table.png differ diff --git a/website/static/img/resources/aws/database/dynamodb.png b/website/static/img/resources/aws/database/dynamodb.png new file mode 100644 index 00000000..00132a19 Binary files /dev/null and b/website/static/img/resources/aws/database/dynamodb.png differ diff --git a/website/static/img/resources/aws/database/elasticache-cache-node.png b/website/static/img/resources/aws/database/elasticache-cache-node.png new file mode 100644 index 00000000..21b3a8ac Binary files /dev/null and b/website/static/img/resources/aws/database/elasticache-cache-node.png differ diff --git a/website/static/img/resources/aws/database/elasticache-for-memcached.png b/website/static/img/resources/aws/database/elasticache-for-memcached.png new file mode 100644 index 00000000..e04ac5ce Binary files /dev/null and b/website/static/img/resources/aws/database/elasticache-for-memcached.png differ diff --git a/website/static/img/resources/aws/database/elasticache-for-redis.png b/website/static/img/resources/aws/database/elasticache-for-redis.png new file mode 100644 index 00000000..1d882f9a Binary files /dev/null and b/website/static/img/resources/aws/database/elasticache-for-redis.png differ diff --git a/website/static/img/resources/aws/database/elasticache.png b/website/static/img/resources/aws/database/elasticache.png new file mode 100644 index 00000000..40f2db77 Binary files /dev/null and b/website/static/img/resources/aws/database/elasticache.png differ diff --git a/website/static/img/resources/aws/database/keyspaces-managed-apache-cassandra-service.png b/website/static/img/resources/aws/database/keyspaces-managed-apache-cassandra-service.png new file mode 100644 index 00000000..fdfe9a1b Binary files /dev/null and b/website/static/img/resources/aws/database/keyspaces-managed-apache-cassandra-service.png differ diff --git a/website/static/img/resources/aws/database/neptune.png b/website/static/img/resources/aws/database/neptune.png new file mode 100644 index 00000000..a2434736 Binary files /dev/null and b/website/static/img/resources/aws/database/neptune.png differ diff --git a/website/static/img/resources/aws/database/quantum-ledger-database-qldb.png b/website/static/img/resources/aws/database/quantum-ledger-database-qldb.png new file mode 100644 index 00000000..e3080f20 Binary files /dev/null and b/website/static/img/resources/aws/database/quantum-ledger-database-qldb.png differ diff --git a/website/static/img/resources/aws/database/rds-instance.png b/website/static/img/resources/aws/database/rds-instance.png new file mode 100644 index 00000000..aece303d Binary files /dev/null and b/website/static/img/resources/aws/database/rds-instance.png differ diff --git a/website/static/img/resources/aws/database/rds-mariadb-instance.png b/website/static/img/resources/aws/database/rds-mariadb-instance.png new file mode 100644 index 00000000..1b4c5df4 Binary files /dev/null and b/website/static/img/resources/aws/database/rds-mariadb-instance.png differ diff --git a/website/static/img/resources/aws/database/rds-mysql-instance.png b/website/static/img/resources/aws/database/rds-mysql-instance.png new file mode 100644 index 00000000..71b71adf Binary files /dev/null and b/website/static/img/resources/aws/database/rds-mysql-instance.png differ diff --git a/website/static/img/resources/aws/database/rds-on-vmware.png b/website/static/img/resources/aws/database/rds-on-vmware.png new file mode 100644 index 00000000..1992a12d Binary files /dev/null and b/website/static/img/resources/aws/database/rds-on-vmware.png differ diff --git a/website/static/img/resources/aws/database/rds-oracle-instance.png b/website/static/img/resources/aws/database/rds-oracle-instance.png new file mode 100644 index 00000000..ddf00979 Binary files /dev/null and b/website/static/img/resources/aws/database/rds-oracle-instance.png differ diff --git a/website/static/img/resources/aws/database/rds-postgresql-instance.png b/website/static/img/resources/aws/database/rds-postgresql-instance.png new file mode 100644 index 00000000..56f31155 Binary files /dev/null and b/website/static/img/resources/aws/database/rds-postgresql-instance.png differ diff --git a/website/static/img/resources/aws/database/rds-sql-server-instance.png b/website/static/img/resources/aws/database/rds-sql-server-instance.png new file mode 100644 index 00000000..ffa78ed2 Binary files /dev/null and b/website/static/img/resources/aws/database/rds-sql-server-instance.png differ diff --git a/website/static/img/resources/aws/database/rds.png b/website/static/img/resources/aws/database/rds.png new file mode 100644 index 00000000..42f849c9 Binary files /dev/null and b/website/static/img/resources/aws/database/rds.png differ diff --git a/website/static/img/resources/aws/database/redshift-dense-compute-node.png b/website/static/img/resources/aws/database/redshift-dense-compute-node.png new file mode 100644 index 00000000..a04a5ecd Binary files /dev/null and b/website/static/img/resources/aws/database/redshift-dense-compute-node.png differ diff --git a/website/static/img/resources/aws/database/redshift-dense-storage-node.png b/website/static/img/resources/aws/database/redshift-dense-storage-node.png new file mode 100644 index 00000000..73b0ecd4 Binary files /dev/null and b/website/static/img/resources/aws/database/redshift-dense-storage-node.png differ diff --git a/website/static/img/resources/aws/database/redshift.png b/website/static/img/resources/aws/database/redshift.png new file mode 100644 index 00000000..63cea3c2 Binary files /dev/null and b/website/static/img/resources/aws/database/redshift.png differ diff --git a/website/static/img/resources/aws/database/timestream.png b/website/static/img/resources/aws/database/timestream.png new file mode 100644 index 00000000..ea14fa60 Binary files /dev/null and b/website/static/img/resources/aws/database/timestream.png differ diff --git a/website/static/img/resources/aws/devtools/cloud-development-kit.png b/website/static/img/resources/aws/devtools/cloud-development-kit.png new file mode 100755 index 00000000..8ca818fe Binary files /dev/null and b/website/static/img/resources/aws/devtools/cloud-development-kit.png differ diff --git a/website/static/img/resources/aws/devtools/cloud9-resource.png b/website/static/img/resources/aws/devtools/cloud9-resource.png new file mode 100644 index 00000000..49748a60 Binary files /dev/null and b/website/static/img/resources/aws/devtools/cloud9-resource.png differ diff --git a/website/static/img/resources/aws/devtools/cloud9.png b/website/static/img/resources/aws/devtools/cloud9.png new file mode 100644 index 00000000..780b5401 Binary files /dev/null and b/website/static/img/resources/aws/devtools/cloud9.png differ diff --git a/website/static/img/resources/aws/devtools/codeartifact.png b/website/static/img/resources/aws/devtools/codeartifact.png new file mode 100644 index 00000000..7c4f3f49 Binary files /dev/null and b/website/static/img/resources/aws/devtools/codeartifact.png differ diff --git a/website/static/img/resources/aws/devtools/codebuild.png b/website/static/img/resources/aws/devtools/codebuild.png new file mode 100644 index 00000000..163a33b4 Binary files /dev/null and b/website/static/img/resources/aws/devtools/codebuild.png differ diff --git a/website/static/img/resources/aws/devtools/codecommit.png b/website/static/img/resources/aws/devtools/codecommit.png new file mode 100644 index 00000000..b971c0fd Binary files /dev/null and b/website/static/img/resources/aws/devtools/codecommit.png differ diff --git a/website/static/img/resources/aws/devtools/codedeploy.png b/website/static/img/resources/aws/devtools/codedeploy.png new file mode 100644 index 00000000..7165aff5 Binary files /dev/null and b/website/static/img/resources/aws/devtools/codedeploy.png differ diff --git a/website/static/img/resources/aws/devtools/codepipeline.png b/website/static/img/resources/aws/devtools/codepipeline.png new file mode 100644 index 00000000..8e3bde57 Binary files /dev/null and b/website/static/img/resources/aws/devtools/codepipeline.png differ diff --git a/website/static/img/resources/aws/devtools/codestar.png b/website/static/img/resources/aws/devtools/codestar.png new file mode 100644 index 00000000..5ac4fe6b Binary files /dev/null and b/website/static/img/resources/aws/devtools/codestar.png differ diff --git a/website/static/img/resources/aws/devtools/command-line-interface.png b/website/static/img/resources/aws/devtools/command-line-interface.png new file mode 100644 index 00000000..cb9720f3 Binary files /dev/null and b/website/static/img/resources/aws/devtools/command-line-interface.png differ diff --git a/website/static/img/resources/aws/devtools/developer-tools.png b/website/static/img/resources/aws/devtools/developer-tools.png new file mode 100644 index 00000000..16755c92 Binary files /dev/null and b/website/static/img/resources/aws/devtools/developer-tools.png differ diff --git a/website/static/img/resources/aws/devtools/tools-and-sdks.png b/website/static/img/resources/aws/devtools/tools-and-sdks.png new file mode 100644 index 00000000..5ae1429f Binary files /dev/null and b/website/static/img/resources/aws/devtools/tools-and-sdks.png differ diff --git a/website/static/img/resources/aws/devtools/x-ray.png b/website/static/img/resources/aws/devtools/x-ray.png new file mode 100644 index 00000000..578b3a30 Binary files /dev/null and b/website/static/img/resources/aws/devtools/x-ray.png differ diff --git a/website/static/img/resources/aws/enablement/customer-enablement.png b/website/static/img/resources/aws/enablement/customer-enablement.png new file mode 100644 index 00000000..fa82f8be Binary files /dev/null and b/website/static/img/resources/aws/enablement/customer-enablement.png differ diff --git a/website/static/img/resources/aws/enablement/iq.png b/website/static/img/resources/aws/enablement/iq.png new file mode 100755 index 00000000..bc594ea4 Binary files /dev/null and b/website/static/img/resources/aws/enablement/iq.png differ diff --git a/website/static/img/resources/aws/enablement/managed-services.png b/website/static/img/resources/aws/enablement/managed-services.png new file mode 100755 index 00000000..0024249c Binary files /dev/null and b/website/static/img/resources/aws/enablement/managed-services.png differ diff --git a/website/static/img/resources/aws/enablement/professional-services.png b/website/static/img/resources/aws/enablement/professional-services.png new file mode 100755 index 00000000..0ba4e099 Binary files /dev/null and b/website/static/img/resources/aws/enablement/professional-services.png differ diff --git a/website/static/img/resources/aws/enablement/support.png b/website/static/img/resources/aws/enablement/support.png new file mode 100755 index 00000000..aecefb5b Binary files /dev/null and b/website/static/img/resources/aws/enablement/support.png differ diff --git a/website/static/img/resources/aws/enduser/appstream-2-0.png b/website/static/img/resources/aws/enduser/appstream-2-0.png new file mode 100644 index 00000000..80f1e71f Binary files /dev/null and b/website/static/img/resources/aws/enduser/appstream-2-0.png differ diff --git a/website/static/img/resources/aws/enduser/desktop-and-app-streaming.png b/website/static/img/resources/aws/enduser/desktop-and-app-streaming.png new file mode 100644 index 00000000..d672505f Binary files /dev/null and b/website/static/img/resources/aws/enduser/desktop-and-app-streaming.png differ diff --git a/website/static/img/resources/aws/enduser/workdocs.png b/website/static/img/resources/aws/enduser/workdocs.png new file mode 100644 index 00000000..74775464 Binary files /dev/null and b/website/static/img/resources/aws/enduser/workdocs.png differ diff --git a/website/static/img/resources/aws/enduser/worklink.png b/website/static/img/resources/aws/enduser/worklink.png new file mode 100644 index 00000000..d00ad814 Binary files /dev/null and b/website/static/img/resources/aws/enduser/worklink.png differ diff --git a/website/static/img/resources/aws/enduser/workspaces.png b/website/static/img/resources/aws/enduser/workspaces.png new file mode 100644 index 00000000..21865ac7 Binary files /dev/null and b/website/static/img/resources/aws/enduser/workspaces.png differ diff --git a/website/static/img/resources/aws/engagement/connect.png b/website/static/img/resources/aws/engagement/connect.png new file mode 100644 index 00000000..68da531c Binary files /dev/null and b/website/static/img/resources/aws/engagement/connect.png differ diff --git a/website/static/img/resources/aws/engagement/customer-engagement.png b/website/static/img/resources/aws/engagement/customer-engagement.png new file mode 100644 index 00000000..fb250d40 Binary files /dev/null and b/website/static/img/resources/aws/engagement/customer-engagement.png differ diff --git a/website/static/img/resources/aws/engagement/pinpoint.png b/website/static/img/resources/aws/engagement/pinpoint.png new file mode 100644 index 00000000..e7037544 Binary files /dev/null and b/website/static/img/resources/aws/engagement/pinpoint.png differ diff --git a/website/static/img/resources/aws/engagement/simple-email-service-ses-email.png b/website/static/img/resources/aws/engagement/simple-email-service-ses-email.png new file mode 100644 index 00000000..c98a3ea3 Binary files /dev/null and b/website/static/img/resources/aws/engagement/simple-email-service-ses-email.png differ diff --git a/website/static/img/resources/aws/engagement/simple-email-service-ses.png b/website/static/img/resources/aws/engagement/simple-email-service-ses.png new file mode 100644 index 00000000..15e2be44 Binary files /dev/null and b/website/static/img/resources/aws/engagement/simple-email-service-ses.png differ diff --git a/website/static/img/resources/aws/game/game-tech.png b/website/static/img/resources/aws/game/game-tech.png new file mode 100644 index 00000000..2de65291 Binary files /dev/null and b/website/static/img/resources/aws/game/game-tech.png differ diff --git a/website/static/img/resources/aws/game/gamelift.png b/website/static/img/resources/aws/game/gamelift.png new file mode 100644 index 00000000..2c161ae6 Binary files /dev/null and b/website/static/img/resources/aws/game/gamelift.png differ diff --git a/website/static/img/resources/aws/general/client.png b/website/static/img/resources/aws/general/client.png new file mode 100644 index 00000000..50ae22e4 Binary files /dev/null and b/website/static/img/resources/aws/general/client.png differ diff --git a/website/static/img/resources/aws/general/disk.png b/website/static/img/resources/aws/general/disk.png new file mode 100644 index 00000000..533ee568 Binary files /dev/null and b/website/static/img/resources/aws/general/disk.png differ diff --git a/website/static/img/resources/aws/general/forums.png b/website/static/img/resources/aws/general/forums.png new file mode 100644 index 00000000..92252242 Binary files /dev/null and b/website/static/img/resources/aws/general/forums.png differ diff --git a/website/static/img/resources/aws/general/general.png b/website/static/img/resources/aws/general/general.png new file mode 100644 index 00000000..779941e7 Binary files /dev/null and b/website/static/img/resources/aws/general/general.png differ diff --git a/website/static/img/resources/aws/general/generic-database.png b/website/static/img/resources/aws/general/generic-database.png new file mode 100644 index 00000000..b1e7bf1e Binary files /dev/null and b/website/static/img/resources/aws/general/generic-database.png differ diff --git a/website/static/img/resources/aws/general/generic-firewall.png b/website/static/img/resources/aws/general/generic-firewall.png new file mode 100644 index 00000000..4f91b1a6 Binary files /dev/null and b/website/static/img/resources/aws/general/generic-firewall.png differ diff --git a/website/static/img/resources/aws/general/generic-office-building.png b/website/static/img/resources/aws/general/generic-office-building.png new file mode 100644 index 00000000..bb96caa5 Binary files /dev/null and b/website/static/img/resources/aws/general/generic-office-building.png differ diff --git a/website/static/img/resources/aws/general/generic-saml-token.png b/website/static/img/resources/aws/general/generic-saml-token.png new file mode 100644 index 00000000..0d5fa4ce Binary files /dev/null and b/website/static/img/resources/aws/general/generic-saml-token.png differ diff --git a/website/static/img/resources/aws/general/generic-sdk.png b/website/static/img/resources/aws/general/generic-sdk.png new file mode 100644 index 00000000..0ce11f87 Binary files /dev/null and b/website/static/img/resources/aws/general/generic-sdk.png differ diff --git a/website/static/img/resources/aws/general/internet-alt1.png b/website/static/img/resources/aws/general/internet-alt1.png new file mode 100644 index 00000000..5a5eedc8 Binary files /dev/null and b/website/static/img/resources/aws/general/internet-alt1.png differ diff --git a/website/static/img/resources/aws/general/internet-alt2.png b/website/static/img/resources/aws/general/internet-alt2.png new file mode 100644 index 00000000..b225226c Binary files /dev/null and b/website/static/img/resources/aws/general/internet-alt2.png differ diff --git a/website/static/img/resources/aws/general/internet-gateway.png b/website/static/img/resources/aws/general/internet-gateway.png new file mode 100644 index 00000000..a930f2ba Binary files /dev/null and b/website/static/img/resources/aws/general/internet-gateway.png differ diff --git a/website/static/img/resources/aws/general/marketplace.png b/website/static/img/resources/aws/general/marketplace.png new file mode 100644 index 00000000..c1c863b1 Binary files /dev/null and b/website/static/img/resources/aws/general/marketplace.png differ diff --git a/website/static/img/resources/aws/general/mobile-client.png b/website/static/img/resources/aws/general/mobile-client.png new file mode 100644 index 00000000..232b7d43 Binary files /dev/null and b/website/static/img/resources/aws/general/mobile-client.png differ diff --git a/website/static/img/resources/aws/general/multimedia.png b/website/static/img/resources/aws/general/multimedia.png new file mode 100644 index 00000000..aeab8d70 Binary files /dev/null and b/website/static/img/resources/aws/general/multimedia.png differ diff --git a/website/static/img/resources/aws/general/office-building.png b/website/static/img/resources/aws/general/office-building.png new file mode 100644 index 00000000..97e9b4e6 Binary files /dev/null and b/website/static/img/resources/aws/general/office-building.png differ diff --git a/website/static/img/resources/aws/general/saml-token.png b/website/static/img/resources/aws/general/saml-token.png new file mode 100644 index 00000000..a882dc3a Binary files /dev/null and b/website/static/img/resources/aws/general/saml-token.png differ diff --git a/website/static/img/resources/aws/general/sdk.png b/website/static/img/resources/aws/general/sdk.png new file mode 100644 index 00000000..851262d4 Binary files /dev/null and b/website/static/img/resources/aws/general/sdk.png differ diff --git a/website/static/img/resources/aws/general/ssl-padlock.png b/website/static/img/resources/aws/general/ssl-padlock.png new file mode 100644 index 00000000..d63c3c68 Binary files /dev/null and b/website/static/img/resources/aws/general/ssl-padlock.png differ diff --git a/website/static/img/resources/aws/general/tape-storage.png b/website/static/img/resources/aws/general/tape-storage.png new file mode 100644 index 00000000..3ed66d4d Binary files /dev/null and b/website/static/img/resources/aws/general/tape-storage.png differ diff --git a/website/static/img/resources/aws/general/toolkit.png b/website/static/img/resources/aws/general/toolkit.png new file mode 100644 index 00000000..c6d059ae Binary files /dev/null and b/website/static/img/resources/aws/general/toolkit.png differ diff --git a/website/static/img/resources/aws/general/traditional-server.png b/website/static/img/resources/aws/general/traditional-server.png new file mode 100644 index 00000000..2373aced Binary files /dev/null and b/website/static/img/resources/aws/general/traditional-server.png differ diff --git a/website/static/img/resources/aws/general/user.png b/website/static/img/resources/aws/general/user.png new file mode 100644 index 00000000..cd17f337 Binary files /dev/null and b/website/static/img/resources/aws/general/user.png differ diff --git a/website/static/img/resources/aws/general/users.png b/website/static/img/resources/aws/general/users.png new file mode 100644 index 00000000..d699247e Binary files /dev/null and b/website/static/img/resources/aws/general/users.png differ diff --git a/website/static/img/resources/aws/integration/application-integration.png b/website/static/img/resources/aws/integration/application-integration.png new file mode 100644 index 00000000..235cfd80 Binary files /dev/null and b/website/static/img/resources/aws/integration/application-integration.png differ diff --git a/website/static/img/resources/aws/integration/appsync.png b/website/static/img/resources/aws/integration/appsync.png new file mode 100644 index 00000000..b1b4b125 Binary files /dev/null and b/website/static/img/resources/aws/integration/appsync.png differ diff --git a/website/static/img/resources/aws/integration/console-mobile-application.png b/website/static/img/resources/aws/integration/console-mobile-application.png new file mode 100755 index 00000000..8459a9fb Binary files /dev/null and b/website/static/img/resources/aws/integration/console-mobile-application.png differ diff --git a/website/static/img/resources/aws/integration/event-resource.png b/website/static/img/resources/aws/integration/event-resource.png new file mode 100644 index 00000000..96cbd817 Binary files /dev/null and b/website/static/img/resources/aws/integration/event-resource.png differ diff --git a/website/static/img/resources/aws/integration/eventbridge-custom-event-bus-resource.png b/website/static/img/resources/aws/integration/eventbridge-custom-event-bus-resource.png new file mode 100644 index 00000000..4053d3cf Binary files /dev/null and b/website/static/img/resources/aws/integration/eventbridge-custom-event-bus-resource.png differ diff --git a/website/static/img/resources/aws/integration/eventbridge-default-event-bus-resource.png b/website/static/img/resources/aws/integration/eventbridge-default-event-bus-resource.png new file mode 100644 index 00000000..e59b3e5f Binary files /dev/null and b/website/static/img/resources/aws/integration/eventbridge-default-event-bus-resource.png differ diff --git a/website/static/img/resources/aws/integration/eventbridge-saas-partner-event-bus-resource.png b/website/static/img/resources/aws/integration/eventbridge-saas-partner-event-bus-resource.png new file mode 100644 index 00000000..6c29642b Binary files /dev/null and b/website/static/img/resources/aws/integration/eventbridge-saas-partner-event-bus-resource.png differ diff --git a/website/static/img/resources/aws/integration/eventbridge.png b/website/static/img/resources/aws/integration/eventbridge.png new file mode 100755 index 00000000..e541e382 Binary files /dev/null and b/website/static/img/resources/aws/integration/eventbridge.png differ diff --git a/website/static/img/resources/aws/integration/express-workflows.png b/website/static/img/resources/aws/integration/express-workflows.png new file mode 100644 index 00000000..1197f29f Binary files /dev/null and b/website/static/img/resources/aws/integration/express-workflows.png differ diff --git a/website/static/img/resources/aws/integration/mq.png b/website/static/img/resources/aws/integration/mq.png new file mode 100644 index 00000000..ab16ce3a Binary files /dev/null and b/website/static/img/resources/aws/integration/mq.png differ diff --git a/website/static/img/resources/aws/integration/simple-notification-service-sns-email-notification.png b/website/static/img/resources/aws/integration/simple-notification-service-sns-email-notification.png new file mode 100644 index 00000000..21268e2c Binary files /dev/null and b/website/static/img/resources/aws/integration/simple-notification-service-sns-email-notification.png differ diff --git a/website/static/img/resources/aws/integration/simple-notification-service-sns-http-notification.png b/website/static/img/resources/aws/integration/simple-notification-service-sns-http-notification.png new file mode 100644 index 00000000..87837bac Binary files /dev/null and b/website/static/img/resources/aws/integration/simple-notification-service-sns-http-notification.png differ diff --git a/website/static/img/resources/aws/integration/simple-notification-service-sns-topic.png b/website/static/img/resources/aws/integration/simple-notification-service-sns-topic.png new file mode 100644 index 00000000..f97c4cfd Binary files /dev/null and b/website/static/img/resources/aws/integration/simple-notification-service-sns-topic.png differ diff --git a/website/static/img/resources/aws/integration/simple-notification-service-sns.png b/website/static/img/resources/aws/integration/simple-notification-service-sns.png new file mode 100644 index 00000000..80d45a84 Binary files /dev/null and b/website/static/img/resources/aws/integration/simple-notification-service-sns.png differ diff --git a/website/static/img/resources/aws/integration/simple-queue-service-sqs-message.png b/website/static/img/resources/aws/integration/simple-queue-service-sqs-message.png new file mode 100644 index 00000000..f817270d Binary files /dev/null and b/website/static/img/resources/aws/integration/simple-queue-service-sqs-message.png differ diff --git a/website/static/img/resources/aws/integration/simple-queue-service-sqs-queue.png b/website/static/img/resources/aws/integration/simple-queue-service-sqs-queue.png new file mode 100644 index 00000000..274c5667 Binary files /dev/null and b/website/static/img/resources/aws/integration/simple-queue-service-sqs-queue.png differ diff --git a/website/static/img/resources/aws/integration/simple-queue-service-sqs.png b/website/static/img/resources/aws/integration/simple-queue-service-sqs.png new file mode 100644 index 00000000..46f9d762 Binary files /dev/null and b/website/static/img/resources/aws/integration/simple-queue-service-sqs.png differ diff --git a/website/static/img/resources/aws/integration/step-functions.png b/website/static/img/resources/aws/integration/step-functions.png new file mode 100644 index 00000000..f9a25e87 Binary files /dev/null and b/website/static/img/resources/aws/integration/step-functions.png differ diff --git a/website/static/img/resources/aws/iot/freertos.png b/website/static/img/resources/aws/iot/freertos.png new file mode 100644 index 00000000..81c7ae05 Binary files /dev/null and b/website/static/img/resources/aws/iot/freertos.png differ diff --git a/website/static/img/resources/aws/iot/internet-of-things.png b/website/static/img/resources/aws/iot/internet-of-things.png new file mode 100644 index 00000000..66930190 Binary files /dev/null and b/website/static/img/resources/aws/iot/internet-of-things.png differ diff --git a/website/static/img/resources/aws/iot/iot-1-click.png b/website/static/img/resources/aws/iot/iot-1-click.png new file mode 100644 index 00000000..ef9017b7 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-1-click.png differ diff --git a/website/static/img/resources/aws/iot/iot-action.png b/website/static/img/resources/aws/iot/iot-action.png new file mode 100644 index 00000000..dace7dc9 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-action.png differ diff --git a/website/static/img/resources/aws/iot/iot-actuator.png b/website/static/img/resources/aws/iot/iot-actuator.png new file mode 100644 index 00000000..99d4f8ff Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-actuator.png differ diff --git a/website/static/img/resources/aws/iot/iot-alexa-echo.png b/website/static/img/resources/aws/iot/iot-alexa-echo.png new file mode 100644 index 00000000..3c1b9987 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-alexa-echo.png differ diff --git a/website/static/img/resources/aws/iot/iot-alexa-enabled-device.png b/website/static/img/resources/aws/iot/iot-alexa-enabled-device.png new file mode 100644 index 00000000..b4b82f91 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-alexa-enabled-device.png differ diff --git a/website/static/img/resources/aws/iot/iot-alexa-skill.png b/website/static/img/resources/aws/iot/iot-alexa-skill.png new file mode 100644 index 00000000..95c13f0f Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-alexa-skill.png differ diff --git a/website/static/img/resources/aws/iot/iot-alexa-voice-service.png b/website/static/img/resources/aws/iot/iot-alexa-voice-service.png new file mode 100644 index 00000000..2128b5a1 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-alexa-voice-service.png differ diff --git a/website/static/img/resources/aws/iot/iot-analytics-channel.png b/website/static/img/resources/aws/iot/iot-analytics-channel.png new file mode 100644 index 00000000..d40c6e12 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-analytics-channel.png differ diff --git a/website/static/img/resources/aws/iot/iot-analytics-data-set.png b/website/static/img/resources/aws/iot/iot-analytics-data-set.png new file mode 100644 index 00000000..f1e966b6 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-analytics-data-set.png differ diff --git a/website/static/img/resources/aws/iot/iot-analytics-data-store.png b/website/static/img/resources/aws/iot/iot-analytics-data-store.png new file mode 100644 index 00000000..7cf6c30e Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-analytics-data-store.png differ diff --git a/website/static/img/resources/aws/iot/iot-analytics-notebook.png b/website/static/img/resources/aws/iot/iot-analytics-notebook.png new file mode 100644 index 00000000..09c5cbcc Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-analytics-notebook.png differ diff --git a/website/static/img/resources/aws/iot/iot-analytics-pipeline.png b/website/static/img/resources/aws/iot/iot-analytics-pipeline.png new file mode 100644 index 00000000..468d4831 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-analytics-pipeline.png differ diff --git a/website/static/img/resources/aws/iot/iot-analytics.png b/website/static/img/resources/aws/iot/iot-analytics.png new file mode 100644 index 00000000..e2e4d110 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-analytics.png differ diff --git a/website/static/img/resources/aws/iot/iot-bank.png b/website/static/img/resources/aws/iot/iot-bank.png new file mode 100644 index 00000000..5efe50b0 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-bank.png differ diff --git a/website/static/img/resources/aws/iot/iot-bicycle.png b/website/static/img/resources/aws/iot/iot-bicycle.png new file mode 100644 index 00000000..c1682dc9 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-bicycle.png differ diff --git a/website/static/img/resources/aws/iot/iot-button.png b/website/static/img/resources/aws/iot/iot-button.png new file mode 100644 index 00000000..1737b67e Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-button.png differ diff --git a/website/static/img/resources/aws/iot/iot-camera.png b/website/static/img/resources/aws/iot/iot-camera.png new file mode 100644 index 00000000..ecdea675 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-camera.png differ diff --git a/website/static/img/resources/aws/iot/iot-car.png b/website/static/img/resources/aws/iot/iot-car.png new file mode 100644 index 00000000..8de358bb Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-car.png differ diff --git a/website/static/img/resources/aws/iot/iot-cart.png b/website/static/img/resources/aws/iot/iot-cart.png new file mode 100644 index 00000000..6602fb0a Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-cart.png differ diff --git a/website/static/img/resources/aws/iot/iot-certificate.png b/website/static/img/resources/aws/iot/iot-certificate.png new file mode 100644 index 00000000..be450741 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-certificate.png differ diff --git a/website/static/img/resources/aws/iot/iot-coffee-pot.png b/website/static/img/resources/aws/iot/iot-coffee-pot.png new file mode 100644 index 00000000..c3d70b60 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-coffee-pot.png differ diff --git a/website/static/img/resources/aws/iot/iot-core.png b/website/static/img/resources/aws/iot/iot-core.png new file mode 100644 index 00000000..37d3dcca Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-core.png differ diff --git a/website/static/img/resources/aws/iot/iot-desired-state.png b/website/static/img/resources/aws/iot/iot-desired-state.png new file mode 100644 index 00000000..bc8cd45a Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-desired-state.png differ diff --git a/website/static/img/resources/aws/iot/iot-device-defender.png b/website/static/img/resources/aws/iot/iot-device-defender.png new file mode 100644 index 00000000..54962ebf Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-device-defender.png differ diff --git a/website/static/img/resources/aws/iot/iot-device-gateway.png b/website/static/img/resources/aws/iot/iot-device-gateway.png new file mode 100644 index 00000000..6ddbfa2d Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-device-gateway.png differ diff --git a/website/static/img/resources/aws/iot/iot-device-management.png b/website/static/img/resources/aws/iot/iot-device-management.png new file mode 100644 index 00000000..8de6bb55 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-device-management.png differ diff --git a/website/static/img/resources/aws/iot/iot-door-lock.png b/website/static/img/resources/aws/iot/iot-door-lock.png new file mode 100644 index 00000000..b7fec7b7 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-door-lock.png differ diff --git a/website/static/img/resources/aws/iot/iot-events.png b/website/static/img/resources/aws/iot/iot-events.png new file mode 100644 index 00000000..173e0a00 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-events.png differ diff --git a/website/static/img/resources/aws/iot/iot-factory.png b/website/static/img/resources/aws/iot/iot-factory.png new file mode 100644 index 00000000..d7712412 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-factory.png differ diff --git a/website/static/img/resources/aws/iot/iot-fire-tv-stick.png b/website/static/img/resources/aws/iot/iot-fire-tv-stick.png new file mode 100644 index 00000000..b3b8b1b4 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-fire-tv-stick.png differ diff --git a/website/static/img/resources/aws/iot/iot-fire-tv.png b/website/static/img/resources/aws/iot/iot-fire-tv.png new file mode 100644 index 00000000..4c456b4e Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-fire-tv.png differ diff --git a/website/static/img/resources/aws/iot/iot-generic.png b/website/static/img/resources/aws/iot/iot-generic.png new file mode 100644 index 00000000..ee3a6713 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-generic.png differ diff --git a/website/static/img/resources/aws/iot/iot-greengrass-connector.png b/website/static/img/resources/aws/iot/iot-greengrass-connector.png new file mode 100644 index 00000000..e3e56e52 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-greengrass-connector.png differ diff --git a/website/static/img/resources/aws/iot/iot-greengrass.png b/website/static/img/resources/aws/iot/iot-greengrass.png new file mode 100644 index 00000000..22acd32d Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-greengrass.png differ diff --git a/website/static/img/resources/aws/iot/iot-hardware-board.png b/website/static/img/resources/aws/iot/iot-hardware-board.png new file mode 100644 index 00000000..d7224b2f Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-hardware-board.png differ diff --git a/website/static/img/resources/aws/iot/iot-house.png b/website/static/img/resources/aws/iot/iot-house.png new file mode 100644 index 00000000..324f990a Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-house.png differ diff --git a/website/static/img/resources/aws/iot/iot-http.png b/website/static/img/resources/aws/iot/iot-http.png new file mode 100644 index 00000000..0592af7d Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-http.png differ diff --git a/website/static/img/resources/aws/iot/iot-http2.png b/website/static/img/resources/aws/iot/iot-http2.png new file mode 100644 index 00000000..bfee7e88 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-http2.png differ diff --git a/website/static/img/resources/aws/iot/iot-jobs.png b/website/static/img/resources/aws/iot/iot-jobs.png new file mode 100644 index 00000000..6690df51 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-jobs.png differ diff --git a/website/static/img/resources/aws/iot/iot-lambda.png b/website/static/img/resources/aws/iot/iot-lambda.png new file mode 100644 index 00000000..6ff938bc Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-lambda.png differ diff --git a/website/static/img/resources/aws/iot/iot-lightbulb.png b/website/static/img/resources/aws/iot/iot-lightbulb.png new file mode 100644 index 00000000..52d4591e Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-lightbulb.png differ diff --git a/website/static/img/resources/aws/iot/iot-medical-emergency.png b/website/static/img/resources/aws/iot/iot-medical-emergency.png new file mode 100644 index 00000000..96baef6c Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-medical-emergency.png differ diff --git a/website/static/img/resources/aws/iot/iot-mqtt.png b/website/static/img/resources/aws/iot/iot-mqtt.png new file mode 100644 index 00000000..308866c5 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-mqtt.png differ diff --git a/website/static/img/resources/aws/iot/iot-over-the-air-update.png b/website/static/img/resources/aws/iot/iot-over-the-air-update.png new file mode 100644 index 00000000..9320e87e Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-over-the-air-update.png differ diff --git a/website/static/img/resources/aws/iot/iot-policy-emergency.png b/website/static/img/resources/aws/iot/iot-policy-emergency.png new file mode 100644 index 00000000..ac08ece8 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-policy-emergency.png differ diff --git a/website/static/img/resources/aws/iot/iot-policy.png b/website/static/img/resources/aws/iot/iot-policy.png new file mode 100644 index 00000000..846e21cf Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-policy.png differ diff --git a/website/static/img/resources/aws/iot/iot-reported-state.png b/website/static/img/resources/aws/iot/iot-reported-state.png new file mode 100644 index 00000000..638b80af Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-reported-state.png differ diff --git a/website/static/img/resources/aws/iot/iot-rule.png b/website/static/img/resources/aws/iot/iot-rule.png new file mode 100644 index 00000000..06065cbe Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-rule.png differ diff --git a/website/static/img/resources/aws/iot/iot-sensor.png b/website/static/img/resources/aws/iot/iot-sensor.png new file mode 100644 index 00000000..19e299c2 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-sensor.png differ diff --git a/website/static/img/resources/aws/iot/iot-servo.png b/website/static/img/resources/aws/iot/iot-servo.png new file mode 100644 index 00000000..4aad755d Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-servo.png differ diff --git a/website/static/img/resources/aws/iot/iot-shadow.png b/website/static/img/resources/aws/iot/iot-shadow.png new file mode 100644 index 00000000..9fc50eb7 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-shadow.png differ diff --git a/website/static/img/resources/aws/iot/iot-simulator.png b/website/static/img/resources/aws/iot/iot-simulator.png new file mode 100644 index 00000000..ad10b7bb Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-simulator.png differ diff --git a/website/static/img/resources/aws/iot/iot-sitewise.png b/website/static/img/resources/aws/iot/iot-sitewise.png new file mode 100644 index 00000000..26b85674 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-sitewise.png differ diff --git a/website/static/img/resources/aws/iot/iot-thermostat.png b/website/static/img/resources/aws/iot/iot-thermostat.png new file mode 100644 index 00000000..45e2b3e0 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-thermostat.png differ diff --git a/website/static/img/resources/aws/iot/iot-things-graph.png b/website/static/img/resources/aws/iot/iot-things-graph.png new file mode 100644 index 00000000..7290b3ae Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-things-graph.png differ diff --git a/website/static/img/resources/aws/iot/iot-topic.png b/website/static/img/resources/aws/iot/iot-topic.png new file mode 100644 index 00000000..ef5646b8 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-topic.png differ diff --git a/website/static/img/resources/aws/iot/iot-travel.png b/website/static/img/resources/aws/iot/iot-travel.png new file mode 100644 index 00000000..b1890d99 Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-travel.png differ diff --git a/website/static/img/resources/aws/iot/iot-utility.png b/website/static/img/resources/aws/iot/iot-utility.png new file mode 100644 index 00000000..72fa9f1d Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-utility.png differ diff --git a/website/static/img/resources/aws/iot/iot-windfarm.png b/website/static/img/resources/aws/iot/iot-windfarm.png new file mode 100644 index 00000000..9c3fa30e Binary files /dev/null and b/website/static/img/resources/aws/iot/iot-windfarm.png differ diff --git a/website/static/img/resources/aws/management/amazon-devops-guru.png b/website/static/img/resources/aws/management/amazon-devops-guru.png new file mode 100644 index 00000000..f9129c19 Binary files /dev/null and b/website/static/img/resources/aws/management/amazon-devops-guru.png differ diff --git a/website/static/img/resources/aws/management/amazon-managed-grafana.png b/website/static/img/resources/aws/management/amazon-managed-grafana.png new file mode 100644 index 00000000..ba44d709 Binary files /dev/null and b/website/static/img/resources/aws/management/amazon-managed-grafana.png differ diff --git a/website/static/img/resources/aws/management/amazon-managed-prometheus.png b/website/static/img/resources/aws/management/amazon-managed-prometheus.png new file mode 100644 index 00000000..0cca0377 Binary files /dev/null and b/website/static/img/resources/aws/management/amazon-managed-prometheus.png differ diff --git a/website/static/img/resources/aws/management/amazon-managed-workflows-apache-airflow.png b/website/static/img/resources/aws/management/amazon-managed-workflows-apache-airflow.png new file mode 100644 index 00000000..1b584247 Binary files /dev/null and b/website/static/img/resources/aws/management/amazon-managed-workflows-apache-airflow.png differ diff --git a/website/static/img/resources/aws/management/auto-scaling.png b/website/static/img/resources/aws/management/auto-scaling.png new file mode 100644 index 00000000..c4929d77 Binary files /dev/null and b/website/static/img/resources/aws/management/auto-scaling.png differ diff --git a/website/static/img/resources/aws/management/chatbot.png b/website/static/img/resources/aws/management/chatbot.png new file mode 100644 index 00000000..4e6e0a32 Binary files /dev/null and b/website/static/img/resources/aws/management/chatbot.png differ diff --git a/website/static/img/resources/aws/management/cloudformation-change-set.png b/website/static/img/resources/aws/management/cloudformation-change-set.png new file mode 100644 index 00000000..de5a6d10 Binary files /dev/null and b/website/static/img/resources/aws/management/cloudformation-change-set.png differ diff --git a/website/static/img/resources/aws/management/cloudformation-stack.png b/website/static/img/resources/aws/management/cloudformation-stack.png new file mode 100644 index 00000000..7a5c4bbc Binary files /dev/null and b/website/static/img/resources/aws/management/cloudformation-stack.png differ diff --git a/website/static/img/resources/aws/management/cloudformation-template.png b/website/static/img/resources/aws/management/cloudformation-template.png new file mode 100644 index 00000000..22551868 Binary files /dev/null and b/website/static/img/resources/aws/management/cloudformation-template.png differ diff --git a/website/static/img/resources/aws/management/cloudformation.png b/website/static/img/resources/aws/management/cloudformation.png new file mode 100644 index 00000000..ddaa5d16 Binary files /dev/null and b/website/static/img/resources/aws/management/cloudformation.png differ diff --git a/website/static/img/resources/aws/management/cloudtrail.png b/website/static/img/resources/aws/management/cloudtrail.png new file mode 100644 index 00000000..a20301fe Binary files /dev/null and b/website/static/img/resources/aws/management/cloudtrail.png differ diff --git a/website/static/img/resources/aws/management/cloudwatch-alarm.png b/website/static/img/resources/aws/management/cloudwatch-alarm.png new file mode 100644 index 00000000..239b50e0 Binary files /dev/null and b/website/static/img/resources/aws/management/cloudwatch-alarm.png differ diff --git a/website/static/img/resources/aws/management/cloudwatch-event-event-based.png b/website/static/img/resources/aws/management/cloudwatch-event-event-based.png new file mode 100644 index 00000000..b95b337a Binary files /dev/null and b/website/static/img/resources/aws/management/cloudwatch-event-event-based.png differ diff --git a/website/static/img/resources/aws/management/cloudwatch-event-time-based.png b/website/static/img/resources/aws/management/cloudwatch-event-time-based.png new file mode 100644 index 00000000..0c5c929a Binary files /dev/null and b/website/static/img/resources/aws/management/cloudwatch-event-time-based.png differ diff --git a/website/static/img/resources/aws/management/cloudwatch-rule.png b/website/static/img/resources/aws/management/cloudwatch-rule.png new file mode 100644 index 00000000..2d5c59f2 Binary files /dev/null and b/website/static/img/resources/aws/management/cloudwatch-rule.png differ diff --git a/website/static/img/resources/aws/management/cloudwatch.png b/website/static/img/resources/aws/management/cloudwatch.png new file mode 100644 index 00000000..8c5f04e0 Binary files /dev/null and b/website/static/img/resources/aws/management/cloudwatch.png differ diff --git a/website/static/img/resources/aws/management/codeguru.png b/website/static/img/resources/aws/management/codeguru.png new file mode 100755 index 00000000..3464ae13 Binary files /dev/null and b/website/static/img/resources/aws/management/codeguru.png differ diff --git a/website/static/img/resources/aws/management/command-line-interface.png b/website/static/img/resources/aws/management/command-line-interface.png new file mode 100644 index 00000000..3dc01474 Binary files /dev/null and b/website/static/img/resources/aws/management/command-line-interface.png differ diff --git a/website/static/img/resources/aws/management/config.png b/website/static/img/resources/aws/management/config.png new file mode 100644 index 00000000..1e34a860 Binary files /dev/null and b/website/static/img/resources/aws/management/config.png differ diff --git a/website/static/img/resources/aws/management/control-tower.png b/website/static/img/resources/aws/management/control-tower.png new file mode 100644 index 00000000..4c689568 Binary files /dev/null and b/website/static/img/resources/aws/management/control-tower.png differ diff --git a/website/static/img/resources/aws/management/devops-guru.png b/website/static/img/resources/aws/management/devops-guru.png new file mode 100644 index 00000000..f9129c19 Binary files /dev/null and b/website/static/img/resources/aws/management/devops-guru.png differ diff --git a/website/static/img/resources/aws/management/license-manager.png b/website/static/img/resources/aws/management/license-manager.png new file mode 100644 index 00000000..6f404bb9 Binary files /dev/null and b/website/static/img/resources/aws/management/license-manager.png differ diff --git a/website/static/img/resources/aws/management/managed-services.png b/website/static/img/resources/aws/management/managed-services.png new file mode 100644 index 00000000..88a18b6b Binary files /dev/null and b/website/static/img/resources/aws/management/managed-services.png differ diff --git a/website/static/img/resources/aws/management/management-and-governance.png b/website/static/img/resources/aws/management/management-and-governance.png new file mode 100644 index 00000000..d156a4c6 Binary files /dev/null and b/website/static/img/resources/aws/management/management-and-governance.png differ diff --git a/website/static/img/resources/aws/management/management-console.png b/website/static/img/resources/aws/management/management-console.png new file mode 100644 index 00000000..06b2d624 Binary files /dev/null and b/website/static/img/resources/aws/management/management-console.png differ diff --git a/website/static/img/resources/aws/management/opsworks-apps.png b/website/static/img/resources/aws/management/opsworks-apps.png new file mode 100644 index 00000000..5153f5cd Binary files /dev/null and b/website/static/img/resources/aws/management/opsworks-apps.png differ diff --git a/website/static/img/resources/aws/management/opsworks-deployments.png b/website/static/img/resources/aws/management/opsworks-deployments.png new file mode 100644 index 00000000..646e8bd2 Binary files /dev/null and b/website/static/img/resources/aws/management/opsworks-deployments.png differ diff --git a/website/static/img/resources/aws/management/opsworks-instances.png b/website/static/img/resources/aws/management/opsworks-instances.png new file mode 100644 index 00000000..1e0fea5f Binary files /dev/null and b/website/static/img/resources/aws/management/opsworks-instances.png differ diff --git a/website/static/img/resources/aws/management/opsworks-layers.png b/website/static/img/resources/aws/management/opsworks-layers.png new file mode 100644 index 00000000..3058e88b Binary files /dev/null and b/website/static/img/resources/aws/management/opsworks-layers.png differ diff --git a/website/static/img/resources/aws/management/opsworks-monitoring.png b/website/static/img/resources/aws/management/opsworks-monitoring.png new file mode 100644 index 00000000..260e7c64 Binary files /dev/null and b/website/static/img/resources/aws/management/opsworks-monitoring.png differ diff --git a/website/static/img/resources/aws/management/opsworks-permissions.png b/website/static/img/resources/aws/management/opsworks-permissions.png new file mode 100644 index 00000000..9f9c7f4b Binary files /dev/null and b/website/static/img/resources/aws/management/opsworks-permissions.png differ diff --git a/website/static/img/resources/aws/management/opsworks-resources.png b/website/static/img/resources/aws/management/opsworks-resources.png new file mode 100644 index 00000000..a47f83a2 Binary files /dev/null and b/website/static/img/resources/aws/management/opsworks-resources.png differ diff --git a/website/static/img/resources/aws/management/opsworks-stack.png b/website/static/img/resources/aws/management/opsworks-stack.png new file mode 100644 index 00000000..41aa7fa4 Binary files /dev/null and b/website/static/img/resources/aws/management/opsworks-stack.png differ diff --git a/website/static/img/resources/aws/management/opsworks.png b/website/static/img/resources/aws/management/opsworks.png new file mode 100644 index 00000000..f6273b1c Binary files /dev/null and b/website/static/img/resources/aws/management/opsworks.png differ diff --git a/website/static/img/resources/aws/management/organizations-account.png b/website/static/img/resources/aws/management/organizations-account.png new file mode 100644 index 00000000..6de49ef0 Binary files /dev/null and b/website/static/img/resources/aws/management/organizations-account.png differ diff --git a/website/static/img/resources/aws/management/organizations-organizational-unit.png b/website/static/img/resources/aws/management/organizations-organizational-unit.png new file mode 100644 index 00000000..0322b7fb Binary files /dev/null and b/website/static/img/resources/aws/management/organizations-organizational-unit.png differ diff --git a/website/static/img/resources/aws/management/organizations.png b/website/static/img/resources/aws/management/organizations.png new file mode 100644 index 00000000..850dca0d Binary files /dev/null and b/website/static/img/resources/aws/management/organizations.png differ diff --git a/website/static/img/resources/aws/management/personal-health-dashboard.png b/website/static/img/resources/aws/management/personal-health-dashboard.png new file mode 100644 index 00000000..ac34a748 Binary files /dev/null and b/website/static/img/resources/aws/management/personal-health-dashboard.png differ diff --git a/website/static/img/resources/aws/management/proton.png b/website/static/img/resources/aws/management/proton.png new file mode 100644 index 00000000..619191ce Binary files /dev/null and b/website/static/img/resources/aws/management/proton.png differ diff --git a/website/static/img/resources/aws/management/service-catalog.png b/website/static/img/resources/aws/management/service-catalog.png new file mode 100644 index 00000000..6a2bf15c Binary files /dev/null and b/website/static/img/resources/aws/management/service-catalog.png differ diff --git a/website/static/img/resources/aws/management/systems-manager-app-config.png b/website/static/img/resources/aws/management/systems-manager-app-config.png new file mode 100644 index 00000000..a6087e58 Binary files /dev/null and b/website/static/img/resources/aws/management/systems-manager-app-config.png differ diff --git a/website/static/img/resources/aws/management/systems-manager-automation.png b/website/static/img/resources/aws/management/systems-manager-automation.png new file mode 100644 index 00000000..4d2eabe7 Binary files /dev/null and b/website/static/img/resources/aws/management/systems-manager-automation.png differ diff --git a/website/static/img/resources/aws/management/systems-manager-documents.png b/website/static/img/resources/aws/management/systems-manager-documents.png new file mode 100644 index 00000000..140732b6 Binary files /dev/null and b/website/static/img/resources/aws/management/systems-manager-documents.png differ diff --git a/website/static/img/resources/aws/management/systems-manager-inventory.png b/website/static/img/resources/aws/management/systems-manager-inventory.png new file mode 100644 index 00000000..e9db8ab4 Binary files /dev/null and b/website/static/img/resources/aws/management/systems-manager-inventory.png differ diff --git a/website/static/img/resources/aws/management/systems-manager-maintenance-windows.png b/website/static/img/resources/aws/management/systems-manager-maintenance-windows.png new file mode 100644 index 00000000..5fd58ada Binary files /dev/null and b/website/static/img/resources/aws/management/systems-manager-maintenance-windows.png differ diff --git a/website/static/img/resources/aws/management/systems-manager-opscenter.png b/website/static/img/resources/aws/management/systems-manager-opscenter.png new file mode 100644 index 00000000..53eb9a8a Binary files /dev/null and b/website/static/img/resources/aws/management/systems-manager-opscenter.png differ diff --git a/website/static/img/resources/aws/management/systems-manager-parameter-store.png b/website/static/img/resources/aws/management/systems-manager-parameter-store.png new file mode 100644 index 00000000..f673e108 Binary files /dev/null and b/website/static/img/resources/aws/management/systems-manager-parameter-store.png differ diff --git a/website/static/img/resources/aws/management/systems-manager-patch-manager.png b/website/static/img/resources/aws/management/systems-manager-patch-manager.png new file mode 100644 index 00000000..4a02149f Binary files /dev/null and b/website/static/img/resources/aws/management/systems-manager-patch-manager.png differ diff --git a/website/static/img/resources/aws/management/systems-manager-run-command.png b/website/static/img/resources/aws/management/systems-manager-run-command.png new file mode 100644 index 00000000..23971002 Binary files /dev/null and b/website/static/img/resources/aws/management/systems-manager-run-command.png differ diff --git a/website/static/img/resources/aws/management/systems-manager-state-manager.png b/website/static/img/resources/aws/management/systems-manager-state-manager.png new file mode 100644 index 00000000..003cb61d Binary files /dev/null and b/website/static/img/resources/aws/management/systems-manager-state-manager.png differ diff --git a/website/static/img/resources/aws/management/systems-manager.png b/website/static/img/resources/aws/management/systems-manager.png new file mode 100644 index 00000000..43de1ccd Binary files /dev/null and b/website/static/img/resources/aws/management/systems-manager.png differ diff --git a/website/static/img/resources/aws/management/trusted-advisor-checklist-cost.png b/website/static/img/resources/aws/management/trusted-advisor-checklist-cost.png new file mode 100644 index 00000000..7810b957 Binary files /dev/null and b/website/static/img/resources/aws/management/trusted-advisor-checklist-cost.png differ diff --git a/website/static/img/resources/aws/management/trusted-advisor-checklist-fault-tolerant.png b/website/static/img/resources/aws/management/trusted-advisor-checklist-fault-tolerant.png new file mode 100644 index 00000000..35f13e08 Binary files /dev/null and b/website/static/img/resources/aws/management/trusted-advisor-checklist-fault-tolerant.png differ diff --git a/website/static/img/resources/aws/management/trusted-advisor-checklist-performance.png b/website/static/img/resources/aws/management/trusted-advisor-checklist-performance.png new file mode 100644 index 00000000..e6104792 Binary files /dev/null and b/website/static/img/resources/aws/management/trusted-advisor-checklist-performance.png differ diff --git a/website/static/img/resources/aws/management/trusted-advisor-checklist-security.png b/website/static/img/resources/aws/management/trusted-advisor-checklist-security.png new file mode 100644 index 00000000..6d6cd1f8 Binary files /dev/null and b/website/static/img/resources/aws/management/trusted-advisor-checklist-security.png differ diff --git a/website/static/img/resources/aws/management/trusted-advisor-checklist.png b/website/static/img/resources/aws/management/trusted-advisor-checklist.png new file mode 100644 index 00000000..23796381 Binary files /dev/null and b/website/static/img/resources/aws/management/trusted-advisor-checklist.png differ diff --git a/website/static/img/resources/aws/management/trusted-advisor.png b/website/static/img/resources/aws/management/trusted-advisor.png new file mode 100644 index 00000000..c56a08be Binary files /dev/null and b/website/static/img/resources/aws/management/trusted-advisor.png differ diff --git a/website/static/img/resources/aws/management/well-architected-tool.png b/website/static/img/resources/aws/management/well-architected-tool.png new file mode 100644 index 00000000..aaf7d483 Binary files /dev/null and b/website/static/img/resources/aws/management/well-architected-tool.png differ diff --git a/website/static/img/resources/aws/media/elastic-transcoder.png b/website/static/img/resources/aws/media/elastic-transcoder.png new file mode 100644 index 00000000..fd4de67c Binary files /dev/null and b/website/static/img/resources/aws/media/elastic-transcoder.png differ diff --git a/website/static/img/resources/aws/media/elemental-conductor.png b/website/static/img/resources/aws/media/elemental-conductor.png new file mode 100644 index 00000000..db799a7d Binary files /dev/null and b/website/static/img/resources/aws/media/elemental-conductor.png differ diff --git a/website/static/img/resources/aws/media/elemental-delta.png b/website/static/img/resources/aws/media/elemental-delta.png new file mode 100644 index 00000000..db799a7d Binary files /dev/null and b/website/static/img/resources/aws/media/elemental-delta.png differ diff --git a/website/static/img/resources/aws/media/elemental-live.png b/website/static/img/resources/aws/media/elemental-live.png new file mode 100644 index 00000000..db799a7d Binary files /dev/null and b/website/static/img/resources/aws/media/elemental-live.png differ diff --git a/website/static/img/resources/aws/media/elemental-mediaconnect.png b/website/static/img/resources/aws/media/elemental-mediaconnect.png new file mode 100644 index 00000000..05eaaba0 Binary files /dev/null and b/website/static/img/resources/aws/media/elemental-mediaconnect.png differ diff --git a/website/static/img/resources/aws/media/elemental-mediaconvert.png b/website/static/img/resources/aws/media/elemental-mediaconvert.png new file mode 100644 index 00000000..26ae1d72 Binary files /dev/null and b/website/static/img/resources/aws/media/elemental-mediaconvert.png differ diff --git a/website/static/img/resources/aws/media/elemental-medialive.png b/website/static/img/resources/aws/media/elemental-medialive.png new file mode 100644 index 00000000..7367dd85 Binary files /dev/null and b/website/static/img/resources/aws/media/elemental-medialive.png differ diff --git a/website/static/img/resources/aws/media/elemental-mediapackage.png b/website/static/img/resources/aws/media/elemental-mediapackage.png new file mode 100644 index 00000000..275a9831 Binary files /dev/null and b/website/static/img/resources/aws/media/elemental-mediapackage.png differ diff --git a/website/static/img/resources/aws/media/elemental-mediastore.png b/website/static/img/resources/aws/media/elemental-mediastore.png new file mode 100644 index 00000000..0f41ebd8 Binary files /dev/null and b/website/static/img/resources/aws/media/elemental-mediastore.png differ diff --git a/website/static/img/resources/aws/media/elemental-mediatailor.png b/website/static/img/resources/aws/media/elemental-mediatailor.png new file mode 100644 index 00000000..edb44406 Binary files /dev/null and b/website/static/img/resources/aws/media/elemental-mediatailor.png differ diff --git a/website/static/img/resources/aws/media/elemental-server.png b/website/static/img/resources/aws/media/elemental-server.png new file mode 100644 index 00000000..db799a7d Binary files /dev/null and b/website/static/img/resources/aws/media/elemental-server.png differ diff --git a/website/static/img/resources/aws/media/kinesis-video-streams.png b/website/static/img/resources/aws/media/kinesis-video-streams.png new file mode 100644 index 00000000..65ffe3fb Binary files /dev/null and b/website/static/img/resources/aws/media/kinesis-video-streams.png differ diff --git a/website/static/img/resources/aws/media/media-services.png b/website/static/img/resources/aws/media/media-services.png new file mode 100644 index 00000000..f3e94064 Binary files /dev/null and b/website/static/img/resources/aws/media/media-services.png differ diff --git a/website/static/img/resources/aws/migration/application-discovery-service.png b/website/static/img/resources/aws/migration/application-discovery-service.png new file mode 100644 index 00000000..79ccd8cb Binary files /dev/null and b/website/static/img/resources/aws/migration/application-discovery-service.png differ diff --git a/website/static/img/resources/aws/migration/cloudendure-migration.png b/website/static/img/resources/aws/migration/cloudendure-migration.png new file mode 100755 index 00000000..a6da8169 Binary files /dev/null and b/website/static/img/resources/aws/migration/cloudendure-migration.png differ diff --git a/website/static/img/resources/aws/migration/database-migration-service.png b/website/static/img/resources/aws/migration/database-migration-service.png new file mode 100644 index 00000000..d22e1d47 Binary files /dev/null and b/website/static/img/resources/aws/migration/database-migration-service.png differ diff --git a/website/static/img/resources/aws/migration/datasync-agent.png b/website/static/img/resources/aws/migration/datasync-agent.png new file mode 100644 index 00000000..0fd223ab Binary files /dev/null and b/website/static/img/resources/aws/migration/datasync-agent.png differ diff --git a/website/static/img/resources/aws/migration/datasync.png b/website/static/img/resources/aws/migration/datasync.png new file mode 100644 index 00000000..e4f909cd Binary files /dev/null and b/website/static/img/resources/aws/migration/datasync.png differ diff --git a/website/static/img/resources/aws/migration/migration-and-transfer.png b/website/static/img/resources/aws/migration/migration-and-transfer.png new file mode 100644 index 00000000..461a0d97 Binary files /dev/null and b/website/static/img/resources/aws/migration/migration-and-transfer.png differ diff --git a/website/static/img/resources/aws/migration/migration-hub.png b/website/static/img/resources/aws/migration/migration-hub.png new file mode 100644 index 00000000..b6296811 Binary files /dev/null and b/website/static/img/resources/aws/migration/migration-hub.png differ diff --git a/website/static/img/resources/aws/migration/server-migration-service.png b/website/static/img/resources/aws/migration/server-migration-service.png new file mode 100644 index 00000000..3c8c29af Binary files /dev/null and b/website/static/img/resources/aws/migration/server-migration-service.png differ diff --git a/website/static/img/resources/aws/migration/snowball-edge.png b/website/static/img/resources/aws/migration/snowball-edge.png new file mode 100644 index 00000000..8c7c0ca9 Binary files /dev/null and b/website/static/img/resources/aws/migration/snowball-edge.png differ diff --git a/website/static/img/resources/aws/migration/snowball.png b/website/static/img/resources/aws/migration/snowball.png new file mode 100644 index 00000000..9771c382 Binary files /dev/null and b/website/static/img/resources/aws/migration/snowball.png differ diff --git a/website/static/img/resources/aws/migration/snowmobile.png b/website/static/img/resources/aws/migration/snowmobile.png new file mode 100644 index 00000000..728ee459 Binary files /dev/null and b/website/static/img/resources/aws/migration/snowmobile.png differ diff --git a/website/static/img/resources/aws/migration/transfer-for-sftp.png b/website/static/img/resources/aws/migration/transfer-for-sftp.png new file mode 100644 index 00000000..7766f911 Binary files /dev/null and b/website/static/img/resources/aws/migration/transfer-for-sftp.png differ diff --git a/website/static/img/resources/aws/ml/apache-mxnet-on-aws.png b/website/static/img/resources/aws/ml/apache-mxnet-on-aws.png new file mode 100644 index 00000000..b50b3435 Binary files /dev/null and b/website/static/img/resources/aws/ml/apache-mxnet-on-aws.png differ diff --git a/website/static/img/resources/aws/ml/augmented-ai.png b/website/static/img/resources/aws/ml/augmented-ai.png new file mode 100644 index 00000000..7a355ee8 Binary files /dev/null and b/website/static/img/resources/aws/ml/augmented-ai.png differ diff --git a/website/static/img/resources/aws/ml/comprehend.png b/website/static/img/resources/aws/ml/comprehend.png new file mode 100644 index 00000000..46bcf7e5 Binary files /dev/null and b/website/static/img/resources/aws/ml/comprehend.png differ diff --git a/website/static/img/resources/aws/ml/deep-learning-amis.png b/website/static/img/resources/aws/ml/deep-learning-amis.png new file mode 100644 index 00000000..f9e764d5 Binary files /dev/null and b/website/static/img/resources/aws/ml/deep-learning-amis.png differ diff --git a/website/static/img/resources/aws/ml/deep-learning-containers.png b/website/static/img/resources/aws/ml/deep-learning-containers.png new file mode 100644 index 00000000..f7be334a Binary files /dev/null and b/website/static/img/resources/aws/ml/deep-learning-containers.png differ diff --git a/website/static/img/resources/aws/ml/deepcomposer.png b/website/static/img/resources/aws/ml/deepcomposer.png new file mode 100644 index 00000000..b9e8844b Binary files /dev/null and b/website/static/img/resources/aws/ml/deepcomposer.png differ diff --git a/website/static/img/resources/aws/ml/deeplens.png b/website/static/img/resources/aws/ml/deeplens.png new file mode 100644 index 00000000..b1867fa6 Binary files /dev/null and b/website/static/img/resources/aws/ml/deeplens.png differ diff --git a/website/static/img/resources/aws/ml/deepracer.png b/website/static/img/resources/aws/ml/deepracer.png new file mode 100644 index 00000000..5c9468d5 Binary files /dev/null and b/website/static/img/resources/aws/ml/deepracer.png differ diff --git a/website/static/img/resources/aws/ml/elastic-inference.png b/website/static/img/resources/aws/ml/elastic-inference.png new file mode 100644 index 00000000..72823648 Binary files /dev/null and b/website/static/img/resources/aws/ml/elastic-inference.png differ diff --git a/website/static/img/resources/aws/ml/forecast.png b/website/static/img/resources/aws/ml/forecast.png new file mode 100644 index 00000000..3d011470 Binary files /dev/null and b/website/static/img/resources/aws/ml/forecast.png differ diff --git a/website/static/img/resources/aws/ml/fraud-detector.png b/website/static/img/resources/aws/ml/fraud-detector.png new file mode 100644 index 00000000..7772f262 Binary files /dev/null and b/website/static/img/resources/aws/ml/fraud-detector.png differ diff --git a/website/static/img/resources/aws/ml/kendra.png b/website/static/img/resources/aws/ml/kendra.png new file mode 100644 index 00000000..e77173f8 Binary files /dev/null and b/website/static/img/resources/aws/ml/kendra.png differ diff --git a/website/static/img/resources/aws/ml/lex.png b/website/static/img/resources/aws/ml/lex.png new file mode 100644 index 00000000..36e9bb2c Binary files /dev/null and b/website/static/img/resources/aws/ml/lex.png differ diff --git a/website/static/img/resources/aws/ml/machine-learning.png b/website/static/img/resources/aws/ml/machine-learning.png new file mode 100644 index 00000000..881f4dd6 Binary files /dev/null and b/website/static/img/resources/aws/ml/machine-learning.png differ diff --git a/website/static/img/resources/aws/ml/personalize.png b/website/static/img/resources/aws/ml/personalize.png new file mode 100644 index 00000000..3c89844c Binary files /dev/null and b/website/static/img/resources/aws/ml/personalize.png differ diff --git a/website/static/img/resources/aws/ml/polly.png b/website/static/img/resources/aws/ml/polly.png new file mode 100644 index 00000000..0b8422b3 Binary files /dev/null and b/website/static/img/resources/aws/ml/polly.png differ diff --git a/website/static/img/resources/aws/ml/rekognition-image.png b/website/static/img/resources/aws/ml/rekognition-image.png new file mode 100644 index 00000000..d7b0374b Binary files /dev/null and b/website/static/img/resources/aws/ml/rekognition-image.png differ diff --git a/website/static/img/resources/aws/ml/rekognition-video.png b/website/static/img/resources/aws/ml/rekognition-video.png new file mode 100644 index 00000000..47b53964 Binary files /dev/null and b/website/static/img/resources/aws/ml/rekognition-video.png differ diff --git a/website/static/img/resources/aws/ml/rekognition.png b/website/static/img/resources/aws/ml/rekognition.png new file mode 100644 index 00000000..5baecf15 Binary files /dev/null and b/website/static/img/resources/aws/ml/rekognition.png differ diff --git a/website/static/img/resources/aws/ml/sagemaker-ground-truth.png b/website/static/img/resources/aws/ml/sagemaker-ground-truth.png new file mode 100644 index 00000000..c917546e Binary files /dev/null and b/website/static/img/resources/aws/ml/sagemaker-ground-truth.png differ diff --git a/website/static/img/resources/aws/ml/sagemaker-model.png b/website/static/img/resources/aws/ml/sagemaker-model.png new file mode 100644 index 00000000..8fad6ddf Binary files /dev/null and b/website/static/img/resources/aws/ml/sagemaker-model.png differ diff --git a/website/static/img/resources/aws/ml/sagemaker-notebook.png b/website/static/img/resources/aws/ml/sagemaker-notebook.png new file mode 100644 index 00000000..5c48c140 Binary files /dev/null and b/website/static/img/resources/aws/ml/sagemaker-notebook.png differ diff --git a/website/static/img/resources/aws/ml/sagemaker-training-job.png b/website/static/img/resources/aws/ml/sagemaker-training-job.png new file mode 100644 index 00000000..071ed2c5 Binary files /dev/null and b/website/static/img/resources/aws/ml/sagemaker-training-job.png differ diff --git a/website/static/img/resources/aws/ml/sagemaker.png b/website/static/img/resources/aws/ml/sagemaker.png new file mode 100644 index 00000000..c9096ea4 Binary files /dev/null and b/website/static/img/resources/aws/ml/sagemaker.png differ diff --git a/website/static/img/resources/aws/ml/tensorflow-on-aws.png b/website/static/img/resources/aws/ml/tensorflow-on-aws.png new file mode 100644 index 00000000..b50b3435 Binary files /dev/null and b/website/static/img/resources/aws/ml/tensorflow-on-aws.png differ diff --git a/website/static/img/resources/aws/ml/textract.png b/website/static/img/resources/aws/ml/textract.png new file mode 100644 index 00000000..07665a3a Binary files /dev/null and b/website/static/img/resources/aws/ml/textract.png differ diff --git a/website/static/img/resources/aws/ml/transcribe.png b/website/static/img/resources/aws/ml/transcribe.png new file mode 100644 index 00000000..5754d256 Binary files /dev/null and b/website/static/img/resources/aws/ml/transcribe.png differ diff --git a/website/static/img/resources/aws/ml/translate.png b/website/static/img/resources/aws/ml/translate.png new file mode 100644 index 00000000..94e5a4a0 Binary files /dev/null and b/website/static/img/resources/aws/ml/translate.png differ diff --git a/website/static/img/resources/aws/mobile/amplify.png b/website/static/img/resources/aws/mobile/amplify.png new file mode 100644 index 00000000..8b22c326 Binary files /dev/null and b/website/static/img/resources/aws/mobile/amplify.png differ diff --git a/website/static/img/resources/aws/mobile/api-gateway-endpoint.png b/website/static/img/resources/aws/mobile/api-gateway-endpoint.png new file mode 100644 index 00000000..2c0d4687 Binary files /dev/null and b/website/static/img/resources/aws/mobile/api-gateway-endpoint.png differ diff --git a/website/static/img/resources/aws/mobile/api-gateway.png b/website/static/img/resources/aws/mobile/api-gateway.png new file mode 100644 index 00000000..30be8c32 Binary files /dev/null and b/website/static/img/resources/aws/mobile/api-gateway.png differ diff --git a/website/static/img/resources/aws/mobile/appsync.png b/website/static/img/resources/aws/mobile/appsync.png new file mode 100644 index 00000000..74a9064b Binary files /dev/null and b/website/static/img/resources/aws/mobile/appsync.png differ diff --git a/website/static/img/resources/aws/mobile/device-farm.png b/website/static/img/resources/aws/mobile/device-farm.png new file mode 100644 index 00000000..3d72c411 Binary files /dev/null and b/website/static/img/resources/aws/mobile/device-farm.png differ diff --git a/website/static/img/resources/aws/mobile/mobile.png b/website/static/img/resources/aws/mobile/mobile.png new file mode 100644 index 00000000..fbf2c8ee Binary files /dev/null and b/website/static/img/resources/aws/mobile/mobile.png differ diff --git a/website/static/img/resources/aws/mobile/pinpoint.png b/website/static/img/resources/aws/mobile/pinpoint.png new file mode 100644 index 00000000..73588dad Binary files /dev/null and b/website/static/img/resources/aws/mobile/pinpoint.png differ diff --git a/website/static/img/resources/aws/network/api-gateway-endpoint.png b/website/static/img/resources/aws/network/api-gateway-endpoint.png new file mode 100644 index 00000000..96fcf394 Binary files /dev/null and b/website/static/img/resources/aws/network/api-gateway-endpoint.png differ diff --git a/website/static/img/resources/aws/network/api-gateway.png b/website/static/img/resources/aws/network/api-gateway.png new file mode 100644 index 00000000..c1918fa3 Binary files /dev/null and b/website/static/img/resources/aws/network/api-gateway.png differ diff --git a/website/static/img/resources/aws/network/app-mesh.png b/website/static/img/resources/aws/network/app-mesh.png new file mode 100644 index 00000000..a8d58ed8 Binary files /dev/null and b/website/static/img/resources/aws/network/app-mesh.png differ diff --git a/website/static/img/resources/aws/network/client-vpn.png b/website/static/img/resources/aws/network/client-vpn.png new file mode 100644 index 00000000..4f9243cd Binary files /dev/null and b/website/static/img/resources/aws/network/client-vpn.png differ diff --git a/website/static/img/resources/aws/network/cloud-map.png b/website/static/img/resources/aws/network/cloud-map.png new file mode 100644 index 00000000..2502b91b Binary files /dev/null and b/website/static/img/resources/aws/network/cloud-map.png differ diff --git a/website/static/img/resources/aws/network/cloudfront-download-distribution.png b/website/static/img/resources/aws/network/cloudfront-download-distribution.png new file mode 100644 index 00000000..ca4b979a Binary files /dev/null and b/website/static/img/resources/aws/network/cloudfront-download-distribution.png differ diff --git a/website/static/img/resources/aws/network/cloudfront-edge-location.png b/website/static/img/resources/aws/network/cloudfront-edge-location.png new file mode 100644 index 00000000..e06d6b51 Binary files /dev/null and b/website/static/img/resources/aws/network/cloudfront-edge-location.png differ diff --git a/website/static/img/resources/aws/network/cloudfront-streaming-distribution.png b/website/static/img/resources/aws/network/cloudfront-streaming-distribution.png new file mode 100644 index 00000000..cbd97899 Binary files /dev/null and b/website/static/img/resources/aws/network/cloudfront-streaming-distribution.png differ diff --git a/website/static/img/resources/aws/network/cloudfront.png b/website/static/img/resources/aws/network/cloudfront.png new file mode 100644 index 00000000..70992d92 Binary files /dev/null and b/website/static/img/resources/aws/network/cloudfront.png differ diff --git a/website/static/img/resources/aws/network/direct-connect.png b/website/static/img/resources/aws/network/direct-connect.png new file mode 100644 index 00000000..9851b696 Binary files /dev/null and b/website/static/img/resources/aws/network/direct-connect.png differ diff --git a/website/static/img/resources/aws/network/elastic-load-balancing.png b/website/static/img/resources/aws/network/elastic-load-balancing.png new file mode 100644 index 00000000..56f26cee Binary files /dev/null and b/website/static/img/resources/aws/network/elastic-load-balancing.png differ diff --git a/website/static/img/resources/aws/network/elb-application-load-balancer.png b/website/static/img/resources/aws/network/elb-application-load-balancer.png new file mode 100644 index 00000000..bad1aedf Binary files /dev/null and b/website/static/img/resources/aws/network/elb-application-load-balancer.png differ diff --git a/website/static/img/resources/aws/network/elb-classic-load-balancer.png b/website/static/img/resources/aws/network/elb-classic-load-balancer.png new file mode 100644 index 00000000..8957eec8 Binary files /dev/null and b/website/static/img/resources/aws/network/elb-classic-load-balancer.png differ diff --git a/website/static/img/resources/aws/network/elb-network-load-balancer.png b/website/static/img/resources/aws/network/elb-network-load-balancer.png new file mode 100644 index 00000000..d8d880d3 Binary files /dev/null and b/website/static/img/resources/aws/network/elb-network-load-balancer.png differ diff --git a/website/static/img/resources/aws/network/endpoint.png b/website/static/img/resources/aws/network/endpoint.png new file mode 100644 index 00000000..2357ce49 Binary files /dev/null and b/website/static/img/resources/aws/network/endpoint.png differ diff --git a/website/static/img/resources/aws/network/global-accelerator.png b/website/static/img/resources/aws/network/global-accelerator.png new file mode 100644 index 00000000..d677ee1f Binary files /dev/null and b/website/static/img/resources/aws/network/global-accelerator.png differ diff --git a/website/static/img/resources/aws/network/internet-gateway.png b/website/static/img/resources/aws/network/internet-gateway.png new file mode 100644 index 00000000..bcaf71a4 Binary files /dev/null and b/website/static/img/resources/aws/network/internet-gateway.png differ diff --git a/website/static/img/resources/aws/network/nacl.png b/website/static/img/resources/aws/network/nacl.png new file mode 100644 index 00000000..fd14518a Binary files /dev/null and b/website/static/img/resources/aws/network/nacl.png differ diff --git a/website/static/img/resources/aws/network/nat-gateway.png b/website/static/img/resources/aws/network/nat-gateway.png new file mode 100644 index 00000000..a2c6e592 Binary files /dev/null and b/website/static/img/resources/aws/network/nat-gateway.png differ diff --git a/website/static/img/resources/aws/network/network-firewall.png b/website/static/img/resources/aws/network/network-firewall.png new file mode 100644 index 00000000..7535c287 Binary files /dev/null and b/website/static/img/resources/aws/network/network-firewall.png differ diff --git a/website/static/img/resources/aws/network/networking-and-content-delivery.png b/website/static/img/resources/aws/network/networking-and-content-delivery.png new file mode 100644 index 00000000..aef8cf72 Binary files /dev/null and b/website/static/img/resources/aws/network/networking-and-content-delivery.png differ diff --git a/website/static/img/resources/aws/network/private-subnet.png b/website/static/img/resources/aws/network/private-subnet.png new file mode 100644 index 00000000..c31424f0 Binary files /dev/null and b/website/static/img/resources/aws/network/private-subnet.png differ diff --git a/website/static/img/resources/aws/network/privatelink.png b/website/static/img/resources/aws/network/privatelink.png new file mode 100644 index 00000000..b38ed76b Binary files /dev/null and b/website/static/img/resources/aws/network/privatelink.png differ diff --git a/website/static/img/resources/aws/network/public-subnet.png b/website/static/img/resources/aws/network/public-subnet.png new file mode 100644 index 00000000..f540d66c Binary files /dev/null and b/website/static/img/resources/aws/network/public-subnet.png differ diff --git a/website/static/img/resources/aws/network/route-53-hosted-zone.png b/website/static/img/resources/aws/network/route-53-hosted-zone.png new file mode 100644 index 00000000..c50c9ae6 Binary files /dev/null and b/website/static/img/resources/aws/network/route-53-hosted-zone.png differ diff --git a/website/static/img/resources/aws/network/route-53.png b/website/static/img/resources/aws/network/route-53.png new file mode 100644 index 00000000..9e7d1697 Binary files /dev/null and b/website/static/img/resources/aws/network/route-53.png differ diff --git a/website/static/img/resources/aws/network/route-table.png b/website/static/img/resources/aws/network/route-table.png new file mode 100644 index 00000000..f111bf3e Binary files /dev/null and b/website/static/img/resources/aws/network/route-table.png differ diff --git a/website/static/img/resources/aws/network/site-to-site-vpn.png b/website/static/img/resources/aws/network/site-to-site-vpn.png new file mode 100644 index 00000000..2c660783 Binary files /dev/null and b/website/static/img/resources/aws/network/site-to-site-vpn.png differ diff --git a/website/static/img/resources/aws/network/transit-gateway-attachment.png b/website/static/img/resources/aws/network/transit-gateway-attachment.png new file mode 100644 index 00000000..1e3fdaed Binary files /dev/null and b/website/static/img/resources/aws/network/transit-gateway-attachment.png differ diff --git a/website/static/img/resources/aws/network/transit-gateway.png b/website/static/img/resources/aws/network/transit-gateway.png new file mode 100644 index 00000000..1c467e28 Binary files /dev/null and b/website/static/img/resources/aws/network/transit-gateway.png differ diff --git a/website/static/img/resources/aws/network/vpc-customer-gateway.png b/website/static/img/resources/aws/network/vpc-customer-gateway.png new file mode 100644 index 00000000..9cb40030 Binary files /dev/null and b/website/static/img/resources/aws/network/vpc-customer-gateway.png differ diff --git a/website/static/img/resources/aws/network/vpc-elastic-network-adapter.png b/website/static/img/resources/aws/network/vpc-elastic-network-adapter.png new file mode 100644 index 00000000..d845ca76 Binary files /dev/null and b/website/static/img/resources/aws/network/vpc-elastic-network-adapter.png differ diff --git a/website/static/img/resources/aws/network/vpc-elastic-network-interface.png b/website/static/img/resources/aws/network/vpc-elastic-network-interface.png new file mode 100644 index 00000000..a13bec34 Binary files /dev/null and b/website/static/img/resources/aws/network/vpc-elastic-network-interface.png differ diff --git a/website/static/img/resources/aws/network/vpc-flow-logs.png b/website/static/img/resources/aws/network/vpc-flow-logs.png new file mode 100644 index 00000000..a9e7a4b5 Binary files /dev/null and b/website/static/img/resources/aws/network/vpc-flow-logs.png differ diff --git a/website/static/img/resources/aws/network/vpc-peering.png b/website/static/img/resources/aws/network/vpc-peering.png new file mode 100644 index 00000000..439d763b Binary files /dev/null and b/website/static/img/resources/aws/network/vpc-peering.png differ diff --git a/website/static/img/resources/aws/network/vpc-router.png b/website/static/img/resources/aws/network/vpc-router.png new file mode 100644 index 00000000..b0ae6d14 Binary files /dev/null and b/website/static/img/resources/aws/network/vpc-router.png differ diff --git a/website/static/img/resources/aws/network/vpc-traffic-mirroring.png b/website/static/img/resources/aws/network/vpc-traffic-mirroring.png new file mode 100644 index 00000000..4606c62c Binary files /dev/null and b/website/static/img/resources/aws/network/vpc-traffic-mirroring.png differ diff --git a/website/static/img/resources/aws/network/vpc.png b/website/static/img/resources/aws/network/vpc.png new file mode 100644 index 00000000..172aee85 Binary files /dev/null and b/website/static/img/resources/aws/network/vpc.png differ diff --git a/website/static/img/resources/aws/network/vpn-connection.png b/website/static/img/resources/aws/network/vpn-connection.png new file mode 100644 index 00000000..c735cb3f Binary files /dev/null and b/website/static/img/resources/aws/network/vpn-connection.png differ diff --git a/website/static/img/resources/aws/network/vpn-gateway.png b/website/static/img/resources/aws/network/vpn-gateway.png new file mode 100644 index 00000000..d7e9ec54 Binary files /dev/null and b/website/static/img/resources/aws/network/vpn-gateway.png differ diff --git a/website/static/img/resources/aws/quantum/braket.png b/website/static/img/resources/aws/quantum/braket.png new file mode 100644 index 00000000..b216f9b1 Binary files /dev/null and b/website/static/img/resources/aws/quantum/braket.png differ diff --git a/website/static/img/resources/aws/quantum/quantum-technologies.png b/website/static/img/resources/aws/quantum/quantum-technologies.png new file mode 100644 index 00000000..93178772 Binary files /dev/null and b/website/static/img/resources/aws/quantum/quantum-technologies.png differ diff --git a/website/static/img/resources/aws/robotics/robomaker-cloud-extension-ros.png b/website/static/img/resources/aws/robotics/robomaker-cloud-extension-ros.png new file mode 100644 index 00000000..3732a5d0 Binary files /dev/null and b/website/static/img/resources/aws/robotics/robomaker-cloud-extension-ros.png differ diff --git a/website/static/img/resources/aws/robotics/robomaker-development-environment.png b/website/static/img/resources/aws/robotics/robomaker-development-environment.png new file mode 100644 index 00000000..5761f06d Binary files /dev/null and b/website/static/img/resources/aws/robotics/robomaker-development-environment.png differ diff --git a/website/static/img/resources/aws/robotics/robomaker-fleet-management.png b/website/static/img/resources/aws/robotics/robomaker-fleet-management.png new file mode 100644 index 00000000..3be903a9 Binary files /dev/null and b/website/static/img/resources/aws/robotics/robomaker-fleet-management.png differ diff --git a/website/static/img/resources/aws/robotics/robomaker-simulator.png b/website/static/img/resources/aws/robotics/robomaker-simulator.png new file mode 100644 index 00000000..3c95e14e Binary files /dev/null and b/website/static/img/resources/aws/robotics/robomaker-simulator.png differ diff --git a/website/static/img/resources/aws/robotics/robomaker.png b/website/static/img/resources/aws/robotics/robomaker.png new file mode 100644 index 00000000..7cf8ab70 Binary files /dev/null and b/website/static/img/resources/aws/robotics/robomaker.png differ diff --git a/website/static/img/resources/aws/robotics/robotics.png b/website/static/img/resources/aws/robotics/robotics.png new file mode 100644 index 00000000..7b878bb4 Binary files /dev/null and b/website/static/img/resources/aws/robotics/robotics.png differ diff --git a/website/static/img/resources/aws/satellite/ground-station.png b/website/static/img/resources/aws/satellite/ground-station.png new file mode 100644 index 00000000..693565b7 Binary files /dev/null and b/website/static/img/resources/aws/satellite/ground-station.png differ diff --git a/website/static/img/resources/aws/satellite/satellite.png b/website/static/img/resources/aws/satellite/satellite.png new file mode 100644 index 00000000..e3df2df2 Binary files /dev/null and b/website/static/img/resources/aws/satellite/satellite.png differ diff --git a/website/static/img/resources/aws/security/ad-connector.png b/website/static/img/resources/aws/security/ad-connector.png new file mode 100644 index 00000000..e7c046b5 Binary files /dev/null and b/website/static/img/resources/aws/security/ad-connector.png differ diff --git a/website/static/img/resources/aws/security/artifact.png b/website/static/img/resources/aws/security/artifact.png new file mode 100644 index 00000000..bfddb00e Binary files /dev/null and b/website/static/img/resources/aws/security/artifact.png differ diff --git a/website/static/img/resources/aws/security/certificate-authority.png b/website/static/img/resources/aws/security/certificate-authority.png new file mode 100644 index 00000000..933b00b6 Binary files /dev/null and b/website/static/img/resources/aws/security/certificate-authority.png differ diff --git a/website/static/img/resources/aws/security/certificate-manager.png b/website/static/img/resources/aws/security/certificate-manager.png new file mode 100644 index 00000000..543ce00a Binary files /dev/null and b/website/static/img/resources/aws/security/certificate-manager.png differ diff --git a/website/static/img/resources/aws/security/cloud-directory.png b/website/static/img/resources/aws/security/cloud-directory.png new file mode 100644 index 00000000..f9f58c70 Binary files /dev/null and b/website/static/img/resources/aws/security/cloud-directory.png differ diff --git a/website/static/img/resources/aws/security/cloudhsm.png b/website/static/img/resources/aws/security/cloudhsm.png new file mode 100644 index 00000000..788badfd Binary files /dev/null and b/website/static/img/resources/aws/security/cloudhsm.png differ diff --git a/website/static/img/resources/aws/security/cognito.png b/website/static/img/resources/aws/security/cognito.png new file mode 100644 index 00000000..a7cd7ecb Binary files /dev/null and b/website/static/img/resources/aws/security/cognito.png differ diff --git a/website/static/img/resources/aws/security/detective.png b/website/static/img/resources/aws/security/detective.png new file mode 100755 index 00000000..9b138ec5 Binary files /dev/null and b/website/static/img/resources/aws/security/detective.png differ diff --git a/website/static/img/resources/aws/security/directory-service.png b/website/static/img/resources/aws/security/directory-service.png new file mode 100644 index 00000000..453e6350 Binary files /dev/null and b/website/static/img/resources/aws/security/directory-service.png differ diff --git a/website/static/img/resources/aws/security/firewall-manager.png b/website/static/img/resources/aws/security/firewall-manager.png new file mode 100644 index 00000000..3019a5ef Binary files /dev/null and b/website/static/img/resources/aws/security/firewall-manager.png differ diff --git a/website/static/img/resources/aws/security/guardduty.png b/website/static/img/resources/aws/security/guardduty.png new file mode 100644 index 00000000..d02e2024 Binary files /dev/null and b/website/static/img/resources/aws/security/guardduty.png differ diff --git a/website/static/img/resources/aws/security/identity-and-access-management-iam-access-analyzer.png b/website/static/img/resources/aws/security/identity-and-access-management-iam-access-analyzer.png new file mode 100644 index 00000000..e04ad7c4 Binary files /dev/null and b/website/static/img/resources/aws/security/identity-and-access-management-iam-access-analyzer.png differ diff --git a/website/static/img/resources/aws/security/identity-and-access-management-iam-add-on.png b/website/static/img/resources/aws/security/identity-and-access-management-iam-add-on.png new file mode 100644 index 00000000..f38aab12 Binary files /dev/null and b/website/static/img/resources/aws/security/identity-and-access-management-iam-add-on.png differ diff --git a/website/static/img/resources/aws/security/identity-and-access-management-iam-aws-sts-alternate.png b/website/static/img/resources/aws/security/identity-and-access-management-iam-aws-sts-alternate.png new file mode 100644 index 00000000..3976e1e6 Binary files /dev/null and b/website/static/img/resources/aws/security/identity-and-access-management-iam-aws-sts-alternate.png differ diff --git a/website/static/img/resources/aws/security/identity-and-access-management-iam-aws-sts.png b/website/static/img/resources/aws/security/identity-and-access-management-iam-aws-sts.png new file mode 100644 index 00000000..d9e35a3c Binary files /dev/null and b/website/static/img/resources/aws/security/identity-and-access-management-iam-aws-sts.png differ diff --git a/website/static/img/resources/aws/security/identity-and-access-management-iam-data-encryption-key.png b/website/static/img/resources/aws/security/identity-and-access-management-iam-data-encryption-key.png new file mode 100644 index 00000000..6cc7931a Binary files /dev/null and b/website/static/img/resources/aws/security/identity-and-access-management-iam-data-encryption-key.png differ diff --git a/website/static/img/resources/aws/security/identity-and-access-management-iam-encrypted-data.png b/website/static/img/resources/aws/security/identity-and-access-management-iam-encrypted-data.png new file mode 100644 index 00000000..5312dff4 Binary files /dev/null and b/website/static/img/resources/aws/security/identity-and-access-management-iam-encrypted-data.png differ diff --git a/website/static/img/resources/aws/security/identity-and-access-management-iam-long-term-security-credential.png b/website/static/img/resources/aws/security/identity-and-access-management-iam-long-term-security-credential.png new file mode 100644 index 00000000..b74afb41 Binary files /dev/null and b/website/static/img/resources/aws/security/identity-and-access-management-iam-long-term-security-credential.png differ diff --git a/website/static/img/resources/aws/security/identity-and-access-management-iam-mfa-token.png b/website/static/img/resources/aws/security/identity-and-access-management-iam-mfa-token.png new file mode 100644 index 00000000..ace4e451 Binary files /dev/null and b/website/static/img/resources/aws/security/identity-and-access-management-iam-mfa-token.png differ diff --git a/website/static/img/resources/aws/security/identity-and-access-management-iam-permissions.png b/website/static/img/resources/aws/security/identity-and-access-management-iam-permissions.png new file mode 100644 index 00000000..2f26e277 Binary files /dev/null and b/website/static/img/resources/aws/security/identity-and-access-management-iam-permissions.png differ diff --git a/website/static/img/resources/aws/security/identity-and-access-management-iam-role.png b/website/static/img/resources/aws/security/identity-and-access-management-iam-role.png new file mode 100644 index 00000000..97862706 Binary files /dev/null and b/website/static/img/resources/aws/security/identity-and-access-management-iam-role.png differ diff --git a/website/static/img/resources/aws/security/identity-and-access-management-iam-temporary-security-credential.png b/website/static/img/resources/aws/security/identity-and-access-management-iam-temporary-security-credential.png new file mode 100644 index 00000000..3d3d2797 Binary files /dev/null and b/website/static/img/resources/aws/security/identity-and-access-management-iam-temporary-security-credential.png differ diff --git a/website/static/img/resources/aws/security/identity-and-access-management-iam.png b/website/static/img/resources/aws/security/identity-and-access-management-iam.png new file mode 100644 index 00000000..1c3bb9c0 Binary files /dev/null and b/website/static/img/resources/aws/security/identity-and-access-management-iam.png differ diff --git a/website/static/img/resources/aws/security/inspector-agent.png b/website/static/img/resources/aws/security/inspector-agent.png new file mode 100644 index 00000000..1a54b1aa Binary files /dev/null and b/website/static/img/resources/aws/security/inspector-agent.png differ diff --git a/website/static/img/resources/aws/security/inspector.png b/website/static/img/resources/aws/security/inspector.png new file mode 100644 index 00000000..24238da4 Binary files /dev/null and b/website/static/img/resources/aws/security/inspector.png differ diff --git a/website/static/img/resources/aws/security/key-management-service.png b/website/static/img/resources/aws/security/key-management-service.png new file mode 100644 index 00000000..e830844e Binary files /dev/null and b/website/static/img/resources/aws/security/key-management-service.png differ diff --git a/website/static/img/resources/aws/security/macie.png b/website/static/img/resources/aws/security/macie.png new file mode 100644 index 00000000..e292ce00 Binary files /dev/null and b/website/static/img/resources/aws/security/macie.png differ diff --git a/website/static/img/resources/aws/security/managed-microsoft-ad.png b/website/static/img/resources/aws/security/managed-microsoft-ad.png new file mode 100644 index 00000000..20e1918a Binary files /dev/null and b/website/static/img/resources/aws/security/managed-microsoft-ad.png differ diff --git a/website/static/img/resources/aws/security/resource-access-manager.png b/website/static/img/resources/aws/security/resource-access-manager.png new file mode 100644 index 00000000..924ff8a1 Binary files /dev/null and b/website/static/img/resources/aws/security/resource-access-manager.png differ diff --git a/website/static/img/resources/aws/security/secrets-manager.png b/website/static/img/resources/aws/security/secrets-manager.png new file mode 100644 index 00000000..e6852b0e Binary files /dev/null and b/website/static/img/resources/aws/security/secrets-manager.png differ diff --git a/website/static/img/resources/aws/security/security-hub-finding.png b/website/static/img/resources/aws/security/security-hub-finding.png new file mode 100644 index 00000000..ed71748a Binary files /dev/null and b/website/static/img/resources/aws/security/security-hub-finding.png differ diff --git a/website/static/img/resources/aws/security/security-hub.png b/website/static/img/resources/aws/security/security-hub.png new file mode 100644 index 00000000..26ba9558 Binary files /dev/null and b/website/static/img/resources/aws/security/security-hub.png differ diff --git a/website/static/img/resources/aws/security/security-identity-and-compliance.png b/website/static/img/resources/aws/security/security-identity-and-compliance.png new file mode 100644 index 00000000..00939544 Binary files /dev/null and b/website/static/img/resources/aws/security/security-identity-and-compliance.png differ diff --git a/website/static/img/resources/aws/security/shield-advanced.png b/website/static/img/resources/aws/security/shield-advanced.png new file mode 100644 index 00000000..d530ded8 Binary files /dev/null and b/website/static/img/resources/aws/security/shield-advanced.png differ diff --git a/website/static/img/resources/aws/security/shield.png b/website/static/img/resources/aws/security/shield.png new file mode 100644 index 00000000..843ca98c Binary files /dev/null and b/website/static/img/resources/aws/security/shield.png differ diff --git a/website/static/img/resources/aws/security/simple-ad.png b/website/static/img/resources/aws/security/simple-ad.png new file mode 100644 index 00000000..a83492d1 Binary files /dev/null and b/website/static/img/resources/aws/security/simple-ad.png differ diff --git a/website/static/img/resources/aws/security/single-sign-on.png b/website/static/img/resources/aws/security/single-sign-on.png new file mode 100644 index 00000000..6a0ea5d4 Binary files /dev/null and b/website/static/img/resources/aws/security/single-sign-on.png differ diff --git a/website/static/img/resources/aws/security/waf-filtering-rule.png b/website/static/img/resources/aws/security/waf-filtering-rule.png new file mode 100644 index 00000000..65c208ce Binary files /dev/null and b/website/static/img/resources/aws/security/waf-filtering-rule.png differ diff --git a/website/static/img/resources/aws/security/waf.png b/website/static/img/resources/aws/security/waf.png new file mode 100644 index 00000000..06f6632d Binary files /dev/null and b/website/static/img/resources/aws/security/waf.png differ diff --git a/website/static/img/resources/aws/storage/backup.png b/website/static/img/resources/aws/storage/backup.png new file mode 100644 index 00000000..5f002f60 Binary files /dev/null and b/website/static/img/resources/aws/storage/backup.png differ diff --git a/website/static/img/resources/aws/storage/cloudendure-disaster-recovery.png b/website/static/img/resources/aws/storage/cloudendure-disaster-recovery.png new file mode 100755 index 00000000..53957828 Binary files /dev/null and b/website/static/img/resources/aws/storage/cloudendure-disaster-recovery.png differ diff --git a/website/static/img/resources/aws/storage/efs-infrequentaccess-primary-bg.png b/website/static/img/resources/aws/storage/efs-infrequentaccess-primary-bg.png new file mode 100644 index 00000000..41932778 Binary files /dev/null and b/website/static/img/resources/aws/storage/efs-infrequentaccess-primary-bg.png differ diff --git a/website/static/img/resources/aws/storage/efs-standard-primary-bg.png b/website/static/img/resources/aws/storage/efs-standard-primary-bg.png new file mode 100755 index 00000000..4d3fcaee Binary files /dev/null and b/website/static/img/resources/aws/storage/efs-standard-primary-bg.png differ diff --git a/website/static/img/resources/aws/storage/elastic-block-store-ebs-snapshot.png b/website/static/img/resources/aws/storage/elastic-block-store-ebs-snapshot.png new file mode 100644 index 00000000..f9f45a36 Binary files /dev/null and b/website/static/img/resources/aws/storage/elastic-block-store-ebs-snapshot.png differ diff --git a/website/static/img/resources/aws/storage/elastic-block-store-ebs-volume.png b/website/static/img/resources/aws/storage/elastic-block-store-ebs-volume.png new file mode 100644 index 00000000..8bc08c55 Binary files /dev/null and b/website/static/img/resources/aws/storage/elastic-block-store-ebs-volume.png differ diff --git a/website/static/img/resources/aws/storage/elastic-block-store-ebs.png b/website/static/img/resources/aws/storage/elastic-block-store-ebs.png new file mode 100644 index 00000000..e51ef08e Binary files /dev/null and b/website/static/img/resources/aws/storage/elastic-block-store-ebs.png differ diff --git a/website/static/img/resources/aws/storage/elastic-file-system-efs-file-system.png b/website/static/img/resources/aws/storage/elastic-file-system-efs-file-system.png new file mode 100644 index 00000000..93b98ee8 Binary files /dev/null and b/website/static/img/resources/aws/storage/elastic-file-system-efs-file-system.png differ diff --git a/website/static/img/resources/aws/storage/elastic-file-system-efs.png b/website/static/img/resources/aws/storage/elastic-file-system-efs.png new file mode 100644 index 00000000..435becb1 Binary files /dev/null and b/website/static/img/resources/aws/storage/elastic-file-system-efs.png differ diff --git a/website/static/img/resources/aws/storage/fsx-for-lustre.png b/website/static/img/resources/aws/storage/fsx-for-lustre.png new file mode 100644 index 00000000..7a3948b5 Binary files /dev/null and b/website/static/img/resources/aws/storage/fsx-for-lustre.png differ diff --git a/website/static/img/resources/aws/storage/fsx-for-windows-file-server.png b/website/static/img/resources/aws/storage/fsx-for-windows-file-server.png new file mode 100644 index 00000000..6ab37f1d Binary files /dev/null and b/website/static/img/resources/aws/storage/fsx-for-windows-file-server.png differ diff --git a/website/static/img/resources/aws/storage/fsx.png b/website/static/img/resources/aws/storage/fsx.png new file mode 100644 index 00000000..73b2be83 Binary files /dev/null and b/website/static/img/resources/aws/storage/fsx.png differ diff --git a/website/static/img/resources/aws/storage/multiple-volumes-resource.png b/website/static/img/resources/aws/storage/multiple-volumes-resource.png new file mode 100644 index 00000000..1b73423e Binary files /dev/null and b/website/static/img/resources/aws/storage/multiple-volumes-resource.png differ diff --git a/website/static/img/resources/aws/storage/s3-glacier-archive.png b/website/static/img/resources/aws/storage/s3-glacier-archive.png new file mode 100644 index 00000000..eed6d9f1 Binary files /dev/null and b/website/static/img/resources/aws/storage/s3-glacier-archive.png differ diff --git a/website/static/img/resources/aws/storage/s3-glacier-vault.png b/website/static/img/resources/aws/storage/s3-glacier-vault.png new file mode 100644 index 00000000..ca35dfbf Binary files /dev/null and b/website/static/img/resources/aws/storage/s3-glacier-vault.png differ diff --git a/website/static/img/resources/aws/storage/s3-glacier.png b/website/static/img/resources/aws/storage/s3-glacier.png new file mode 100644 index 00000000..ff0e563a Binary files /dev/null and b/website/static/img/resources/aws/storage/s3-glacier.png differ diff --git a/website/static/img/resources/aws/storage/simple-storage-service-s3-bucket-with-objects.png b/website/static/img/resources/aws/storage/simple-storage-service-s3-bucket-with-objects.png new file mode 100644 index 00000000..88f9fa59 Binary files /dev/null and b/website/static/img/resources/aws/storage/simple-storage-service-s3-bucket-with-objects.png differ diff --git a/website/static/img/resources/aws/storage/simple-storage-service-s3-bucket.png b/website/static/img/resources/aws/storage/simple-storage-service-s3-bucket.png new file mode 100644 index 00000000..2994e207 Binary files /dev/null and b/website/static/img/resources/aws/storage/simple-storage-service-s3-bucket.png differ diff --git a/website/static/img/resources/aws/storage/simple-storage-service-s3-object.png b/website/static/img/resources/aws/storage/simple-storage-service-s3-object.png new file mode 100644 index 00000000..6098f067 Binary files /dev/null and b/website/static/img/resources/aws/storage/simple-storage-service-s3-object.png differ diff --git a/website/static/img/resources/aws/storage/simple-storage-service-s3.png b/website/static/img/resources/aws/storage/simple-storage-service-s3.png new file mode 100644 index 00000000..eae74b55 Binary files /dev/null and b/website/static/img/resources/aws/storage/simple-storage-service-s3.png differ diff --git a/website/static/img/resources/aws/storage/snow-family-snowball-import-export.png b/website/static/img/resources/aws/storage/snow-family-snowball-import-export.png new file mode 100644 index 00000000..a4710145 Binary files /dev/null and b/website/static/img/resources/aws/storage/snow-family-snowball-import-export.png differ diff --git a/website/static/img/resources/aws/storage/snowball-edge.png b/website/static/img/resources/aws/storage/snowball-edge.png new file mode 100644 index 00000000..33966be9 Binary files /dev/null and b/website/static/img/resources/aws/storage/snowball-edge.png differ diff --git a/website/static/img/resources/aws/storage/snowball.png b/website/static/img/resources/aws/storage/snowball.png new file mode 100644 index 00000000..7f9a6229 Binary files /dev/null and b/website/static/img/resources/aws/storage/snowball.png differ diff --git a/website/static/img/resources/aws/storage/snowmobile.png b/website/static/img/resources/aws/storage/snowmobile.png new file mode 100644 index 00000000..7f21f8cd Binary files /dev/null and b/website/static/img/resources/aws/storage/snowmobile.png differ diff --git a/website/static/img/resources/aws/storage/storage-gateway-cached-volume.png b/website/static/img/resources/aws/storage/storage-gateway-cached-volume.png new file mode 100644 index 00000000..8b637f4a Binary files /dev/null and b/website/static/img/resources/aws/storage/storage-gateway-cached-volume.png differ diff --git a/website/static/img/resources/aws/storage/storage-gateway-non-cached-volume.png b/website/static/img/resources/aws/storage/storage-gateway-non-cached-volume.png new file mode 100644 index 00000000..89d13219 Binary files /dev/null and b/website/static/img/resources/aws/storage/storage-gateway-non-cached-volume.png differ diff --git a/website/static/img/resources/aws/storage/storage-gateway-virtual-tape-library.png b/website/static/img/resources/aws/storage/storage-gateway-virtual-tape-library.png new file mode 100644 index 00000000..0c920710 Binary files /dev/null and b/website/static/img/resources/aws/storage/storage-gateway-virtual-tape-library.png differ diff --git a/website/static/img/resources/aws/storage/storage-gateway.png b/website/static/img/resources/aws/storage/storage-gateway.png new file mode 100644 index 00000000..906f596b Binary files /dev/null and b/website/static/img/resources/aws/storage/storage-gateway.png differ diff --git a/website/static/img/resources/aws/storage/storage.png b/website/static/img/resources/aws/storage/storage.png new file mode 100644 index 00000000..f1533b71 Binary files /dev/null and b/website/static/img/resources/aws/storage/storage.png differ diff --git a/website/static/img/resources/azure/analytics/analysis-services.png b/website/static/img/resources/azure/analytics/analysis-services.png new file mode 100644 index 00000000..efa3daff Binary files /dev/null and b/website/static/img/resources/azure/analytics/analysis-services.png differ diff --git a/website/static/img/resources/azure/analytics/data-explorer-clusters.png b/website/static/img/resources/azure/analytics/data-explorer-clusters.png new file mode 100644 index 00000000..2c4f8021 Binary files /dev/null and b/website/static/img/resources/azure/analytics/data-explorer-clusters.png differ diff --git a/website/static/img/resources/azure/analytics/data-factories.png b/website/static/img/resources/azure/analytics/data-factories.png new file mode 100644 index 00000000..6016899e Binary files /dev/null and b/website/static/img/resources/azure/analytics/data-factories.png differ diff --git a/website/static/img/resources/azure/analytics/data-lake-analytics.png b/website/static/img/resources/azure/analytics/data-lake-analytics.png new file mode 100644 index 00000000..e561bfc4 Binary files /dev/null and b/website/static/img/resources/azure/analytics/data-lake-analytics.png differ diff --git a/website/static/img/resources/azure/analytics/data-lake-store-gen1.png b/website/static/img/resources/azure/analytics/data-lake-store-gen1.png new file mode 100644 index 00000000..6e861246 Binary files /dev/null and b/website/static/img/resources/azure/analytics/data-lake-store-gen1.png differ diff --git a/website/static/img/resources/azure/analytics/databricks.png b/website/static/img/resources/azure/analytics/databricks.png new file mode 100644 index 00000000..42cacf60 Binary files /dev/null and b/website/static/img/resources/azure/analytics/databricks.png differ diff --git a/website/static/img/resources/azure/analytics/event-hub-clusters.png b/website/static/img/resources/azure/analytics/event-hub-clusters.png new file mode 100644 index 00000000..dde0c68d Binary files /dev/null and b/website/static/img/resources/azure/analytics/event-hub-clusters.png differ diff --git a/website/static/img/resources/azure/analytics/event-hubs.png b/website/static/img/resources/azure/analytics/event-hubs.png new file mode 100644 index 00000000..2677ee0a Binary files /dev/null and b/website/static/img/resources/azure/analytics/event-hubs.png differ diff --git a/website/static/img/resources/azure/analytics/hdinsightclusters.png b/website/static/img/resources/azure/analytics/hdinsightclusters.png new file mode 100644 index 00000000..42fc1d14 Binary files /dev/null and b/website/static/img/resources/azure/analytics/hdinsightclusters.png differ diff --git a/website/static/img/resources/azure/analytics/log-analytics-workspaces.png b/website/static/img/resources/azure/analytics/log-analytics-workspaces.png new file mode 100644 index 00000000..d3f462ad Binary files /dev/null and b/website/static/img/resources/azure/analytics/log-analytics-workspaces.png differ diff --git a/website/static/img/resources/azure/analytics/stream-analytics-jobs.png b/website/static/img/resources/azure/analytics/stream-analytics-jobs.png new file mode 100644 index 00000000..a9fceb32 Binary files /dev/null and b/website/static/img/resources/azure/analytics/stream-analytics-jobs.png differ diff --git a/website/static/img/resources/azure/analytics/synapse-analytics.png b/website/static/img/resources/azure/analytics/synapse-analytics.png new file mode 100644 index 00000000..7966c325 Binary files /dev/null and b/website/static/img/resources/azure/analytics/synapse-analytics.png differ diff --git a/website/static/img/resources/azure/compute/app-services.png b/website/static/img/resources/azure/compute/app-services.png new file mode 100644 index 00000000..f7ca7fb0 Binary files /dev/null and b/website/static/img/resources/azure/compute/app-services.png differ diff --git a/website/static/img/resources/azure/compute/automanaged-vm.png b/website/static/img/resources/azure/compute/automanaged-vm.png new file mode 100644 index 00000000..ec8365b5 Binary files /dev/null and b/website/static/img/resources/azure/compute/automanaged-vm.png differ diff --git a/website/static/img/resources/azure/compute/availability-sets.png b/website/static/img/resources/azure/compute/availability-sets.png new file mode 100644 index 00000000..988e9a6c Binary files /dev/null and b/website/static/img/resources/azure/compute/availability-sets.png differ diff --git a/website/static/img/resources/azure/compute/batch-accounts.png b/website/static/img/resources/azure/compute/batch-accounts.png new file mode 100644 index 00000000..8f41434e Binary files /dev/null and b/website/static/img/resources/azure/compute/batch-accounts.png differ diff --git a/website/static/img/resources/azure/compute/citrix-virtual-desktops-essentials.png b/website/static/img/resources/azure/compute/citrix-virtual-desktops-essentials.png new file mode 100644 index 00000000..fc262400 Binary files /dev/null and b/website/static/img/resources/azure/compute/citrix-virtual-desktops-essentials.png differ diff --git a/website/static/img/resources/azure/compute/cloud-services-classic.png b/website/static/img/resources/azure/compute/cloud-services-classic.png new file mode 100644 index 00000000..c3fa4d1b Binary files /dev/null and b/website/static/img/resources/azure/compute/cloud-services-classic.png differ diff --git a/website/static/img/resources/azure/compute/cloud-services.png b/website/static/img/resources/azure/compute/cloud-services.png new file mode 100644 index 00000000..0e403583 Binary files /dev/null and b/website/static/img/resources/azure/compute/cloud-services.png differ diff --git a/website/static/img/resources/azure/compute/cloudsimple-virtual-machines.png b/website/static/img/resources/azure/compute/cloudsimple-virtual-machines.png new file mode 100644 index 00000000..8c8b1c64 Binary files /dev/null and b/website/static/img/resources/azure/compute/cloudsimple-virtual-machines.png differ diff --git a/website/static/img/resources/azure/compute/container-apps.png b/website/static/img/resources/azure/compute/container-apps.png new file mode 100755 index 00000000..b36d9165 Binary files /dev/null and b/website/static/img/resources/azure/compute/container-apps.png differ diff --git a/website/static/img/resources/azure/compute/container-instances.png b/website/static/img/resources/azure/compute/container-instances.png new file mode 100644 index 00000000..6be6aacc Binary files /dev/null and b/website/static/img/resources/azure/compute/container-instances.png differ diff --git a/website/static/img/resources/azure/compute/container-registries.png b/website/static/img/resources/azure/compute/container-registries.png new file mode 100644 index 00000000..17bd6678 Binary files /dev/null and b/website/static/img/resources/azure/compute/container-registries.png differ diff --git a/website/static/img/resources/azure/compute/disk-encryption-sets.png b/website/static/img/resources/azure/compute/disk-encryption-sets.png new file mode 100644 index 00000000..17b3126a Binary files /dev/null and b/website/static/img/resources/azure/compute/disk-encryption-sets.png differ diff --git a/website/static/img/resources/azure/compute/disk-snapshots.png b/website/static/img/resources/azure/compute/disk-snapshots.png new file mode 100644 index 00000000..b6f6b69b Binary files /dev/null and b/website/static/img/resources/azure/compute/disk-snapshots.png differ diff --git a/website/static/img/resources/azure/compute/disks.png b/website/static/img/resources/azure/compute/disks.png new file mode 100644 index 00000000..effee0b1 Binary files /dev/null and b/website/static/img/resources/azure/compute/disks.png differ diff --git a/website/static/img/resources/azure/compute/function-apps.png b/website/static/img/resources/azure/compute/function-apps.png new file mode 100644 index 00000000..b6c7f67d Binary files /dev/null and b/website/static/img/resources/azure/compute/function-apps.png differ diff --git a/website/static/img/resources/azure/compute/image-definitions.png b/website/static/img/resources/azure/compute/image-definitions.png new file mode 100644 index 00000000..de6a2b3d Binary files /dev/null and b/website/static/img/resources/azure/compute/image-definitions.png differ diff --git a/website/static/img/resources/azure/compute/image-versions.png b/website/static/img/resources/azure/compute/image-versions.png new file mode 100644 index 00000000..b62ab430 Binary files /dev/null and b/website/static/img/resources/azure/compute/image-versions.png differ diff --git a/website/static/img/resources/azure/compute/kubernetes-services.png b/website/static/img/resources/azure/compute/kubernetes-services.png new file mode 100644 index 00000000..11c37ef8 Binary files /dev/null and b/website/static/img/resources/azure/compute/kubernetes-services.png differ diff --git a/website/static/img/resources/azure/compute/mesh-applications.png b/website/static/img/resources/azure/compute/mesh-applications.png new file mode 100644 index 00000000..468f4e5c Binary files /dev/null and b/website/static/img/resources/azure/compute/mesh-applications.png differ diff --git a/website/static/img/resources/azure/compute/os-images.png b/website/static/img/resources/azure/compute/os-images.png new file mode 100644 index 00000000..fbbcf8e1 Binary files /dev/null and b/website/static/img/resources/azure/compute/os-images.png differ diff --git a/website/static/img/resources/azure/compute/sap-hana-on-azure.png b/website/static/img/resources/azure/compute/sap-hana-on-azure.png new file mode 100644 index 00000000..8641469f Binary files /dev/null and b/website/static/img/resources/azure/compute/sap-hana-on-azure.png differ diff --git a/website/static/img/resources/azure/compute/service-fabric-clusters.png b/website/static/img/resources/azure/compute/service-fabric-clusters.png new file mode 100644 index 00000000..a03a2194 Binary files /dev/null and b/website/static/img/resources/azure/compute/service-fabric-clusters.png differ diff --git a/website/static/img/resources/azure/compute/shared-image-galleries.png b/website/static/img/resources/azure/compute/shared-image-galleries.png new file mode 100644 index 00000000..364a0915 Binary files /dev/null and b/website/static/img/resources/azure/compute/shared-image-galleries.png differ diff --git a/website/static/img/resources/azure/compute/spring-cloud.png b/website/static/img/resources/azure/compute/spring-cloud.png new file mode 100644 index 00000000..58fae815 Binary files /dev/null and b/website/static/img/resources/azure/compute/spring-cloud.png differ diff --git a/website/static/img/resources/azure/compute/vm-classic.png b/website/static/img/resources/azure/compute/vm-classic.png new file mode 100644 index 00000000..70cced29 Binary files /dev/null and b/website/static/img/resources/azure/compute/vm-classic.png differ diff --git a/website/static/img/resources/azure/compute/vm-images.png b/website/static/img/resources/azure/compute/vm-images.png new file mode 100644 index 00000000..fbbcf8e1 Binary files /dev/null and b/website/static/img/resources/azure/compute/vm-images.png differ diff --git a/website/static/img/resources/azure/compute/vm-linux.png b/website/static/img/resources/azure/compute/vm-linux.png new file mode 100644 index 00000000..d5f0f2bb Binary files /dev/null and b/website/static/img/resources/azure/compute/vm-linux.png differ diff --git a/website/static/img/resources/azure/compute/vm-scale-set.png b/website/static/img/resources/azure/compute/vm-scale-set.png new file mode 100644 index 00000000..d2deec75 Binary files /dev/null and b/website/static/img/resources/azure/compute/vm-scale-set.png differ diff --git a/website/static/img/resources/azure/compute/vm-windows.png b/website/static/img/resources/azure/compute/vm-windows.png new file mode 100644 index 00000000..5239bbb6 Binary files /dev/null and b/website/static/img/resources/azure/compute/vm-windows.png differ diff --git a/website/static/img/resources/azure/compute/vm.png b/website/static/img/resources/azure/compute/vm.png new file mode 100644 index 00000000..99a05570 Binary files /dev/null and b/website/static/img/resources/azure/compute/vm.png differ diff --git a/website/static/img/resources/azure/compute/workspaces.png b/website/static/img/resources/azure/compute/workspaces.png new file mode 100644 index 00000000..fa399bfb Binary files /dev/null and b/website/static/img/resources/azure/compute/workspaces.png differ diff --git a/website/static/img/resources/azure/database/blob-storage.png b/website/static/img/resources/azure/database/blob-storage.png new file mode 100644 index 00000000..5764c131 Binary files /dev/null and b/website/static/img/resources/azure/database/blob-storage.png differ diff --git a/website/static/img/resources/azure/database/cache-for-redis.png b/website/static/img/resources/azure/database/cache-for-redis.png new file mode 100644 index 00000000..c3919b2a Binary files /dev/null and b/website/static/img/resources/azure/database/cache-for-redis.png differ diff --git a/website/static/img/resources/azure/database/cosmos-db.png b/website/static/img/resources/azure/database/cosmos-db.png new file mode 100644 index 00000000..64b9796d Binary files /dev/null and b/website/static/img/resources/azure/database/cosmos-db.png differ diff --git a/website/static/img/resources/azure/database/data-explorer-clusters.png b/website/static/img/resources/azure/database/data-explorer-clusters.png new file mode 100644 index 00000000..cb317abc Binary files /dev/null and b/website/static/img/resources/azure/database/data-explorer-clusters.png differ diff --git a/website/static/img/resources/azure/database/data-factory.png b/website/static/img/resources/azure/database/data-factory.png new file mode 100644 index 00000000..78d97d26 Binary files /dev/null and b/website/static/img/resources/azure/database/data-factory.png differ diff --git a/website/static/img/resources/azure/database/data-lake.png b/website/static/img/resources/azure/database/data-lake.png new file mode 100644 index 00000000..e50ee889 Binary files /dev/null and b/website/static/img/resources/azure/database/data-lake.png differ diff --git a/website/static/img/resources/azure/database/database-for-mariadb-servers.png b/website/static/img/resources/azure/database/database-for-mariadb-servers.png new file mode 100644 index 00000000..170251e1 Binary files /dev/null and b/website/static/img/resources/azure/database/database-for-mariadb-servers.png differ diff --git a/website/static/img/resources/azure/database/database-for-mysql-servers.png b/website/static/img/resources/azure/database/database-for-mysql-servers.png new file mode 100644 index 00000000..a70b63c0 Binary files /dev/null and b/website/static/img/resources/azure/database/database-for-mysql-servers.png differ diff --git a/website/static/img/resources/azure/database/database-for-postgresql-servers.png b/website/static/img/resources/azure/database/database-for-postgresql-servers.png new file mode 100644 index 00000000..91875ae0 Binary files /dev/null and b/website/static/img/resources/azure/database/database-for-postgresql-servers.png differ diff --git a/website/static/img/resources/azure/database/elastic-database-pools.png b/website/static/img/resources/azure/database/elastic-database-pools.png new file mode 100644 index 00000000..d5ed1d4a Binary files /dev/null and b/website/static/img/resources/azure/database/elastic-database-pools.png differ diff --git a/website/static/img/resources/azure/database/elastic-job-agents.png b/website/static/img/resources/azure/database/elastic-job-agents.png new file mode 100644 index 00000000..dc82cee7 Binary files /dev/null and b/website/static/img/resources/azure/database/elastic-job-agents.png differ diff --git a/website/static/img/resources/azure/database/instance-pools.png b/website/static/img/resources/azure/database/instance-pools.png new file mode 100644 index 00000000..ccf66287 Binary files /dev/null and b/website/static/img/resources/azure/database/instance-pools.png differ diff --git a/website/static/img/resources/azure/database/managed-databases.png b/website/static/img/resources/azure/database/managed-databases.png new file mode 100644 index 00000000..2035ee34 Binary files /dev/null and b/website/static/img/resources/azure/database/managed-databases.png differ diff --git a/website/static/img/resources/azure/database/sql-databases.png b/website/static/img/resources/azure/database/sql-databases.png new file mode 100644 index 00000000..60d0f169 Binary files /dev/null and b/website/static/img/resources/azure/database/sql-databases.png differ diff --git a/website/static/img/resources/azure/database/sql-datawarehouse.png b/website/static/img/resources/azure/database/sql-datawarehouse.png new file mode 100644 index 00000000..2aeeeeaa Binary files /dev/null and b/website/static/img/resources/azure/database/sql-datawarehouse.png differ diff --git a/website/static/img/resources/azure/database/sql-managed-instances.png b/website/static/img/resources/azure/database/sql-managed-instances.png new file mode 100644 index 00000000..2cfe47e7 Binary files /dev/null and b/website/static/img/resources/azure/database/sql-managed-instances.png differ diff --git a/website/static/img/resources/azure/database/sql-server-stretch-databases.png b/website/static/img/resources/azure/database/sql-server-stretch-databases.png new file mode 100644 index 00000000..2aeeeeaa Binary files /dev/null and b/website/static/img/resources/azure/database/sql-server-stretch-databases.png differ diff --git a/website/static/img/resources/azure/database/sql-servers.png b/website/static/img/resources/azure/database/sql-servers.png new file mode 100644 index 00000000..a45391ba Binary files /dev/null and b/website/static/img/resources/azure/database/sql-servers.png differ diff --git a/website/static/img/resources/azure/database/sql-vm.png b/website/static/img/resources/azure/database/sql-vm.png new file mode 100644 index 00000000..c7ce579d Binary files /dev/null and b/website/static/img/resources/azure/database/sql-vm.png differ diff --git a/website/static/img/resources/azure/database/sql.png b/website/static/img/resources/azure/database/sql.png new file mode 100644 index 00000000..d3b46f09 Binary files /dev/null and b/website/static/img/resources/azure/database/sql.png differ diff --git a/website/static/img/resources/azure/database/ssis-lift-and-shift-ir.png b/website/static/img/resources/azure/database/ssis-lift-and-shift-ir.png new file mode 100644 index 00000000..8ff629c5 Binary files /dev/null and b/website/static/img/resources/azure/database/ssis-lift-and-shift-ir.png differ diff --git a/website/static/img/resources/azure/database/synapse-analytics.png b/website/static/img/resources/azure/database/synapse-analytics.png new file mode 100644 index 00000000..7966c325 Binary files /dev/null and b/website/static/img/resources/azure/database/synapse-analytics.png differ diff --git a/website/static/img/resources/azure/database/virtual-clusters.png b/website/static/img/resources/azure/database/virtual-clusters.png new file mode 100644 index 00000000..c676bd50 Binary files /dev/null and b/website/static/img/resources/azure/database/virtual-clusters.png differ diff --git a/website/static/img/resources/azure/database/virtual-datacenter.png b/website/static/img/resources/azure/database/virtual-datacenter.png new file mode 100644 index 00000000..31ebc4c8 Binary files /dev/null and b/website/static/img/resources/azure/database/virtual-datacenter.png differ diff --git a/website/static/img/resources/azure/devops/application-insights.png b/website/static/img/resources/azure/devops/application-insights.png new file mode 100644 index 00000000..f80e0173 Binary files /dev/null and b/website/static/img/resources/azure/devops/application-insights.png differ diff --git a/website/static/img/resources/azure/devops/artifacts.png b/website/static/img/resources/azure/devops/artifacts.png new file mode 100644 index 00000000..dc928c1d Binary files /dev/null and b/website/static/img/resources/azure/devops/artifacts.png differ diff --git a/website/static/img/resources/azure/devops/boards.png b/website/static/img/resources/azure/devops/boards.png new file mode 100644 index 00000000..1813eba5 Binary files /dev/null and b/website/static/img/resources/azure/devops/boards.png differ diff --git a/website/static/img/resources/azure/devops/devops.png b/website/static/img/resources/azure/devops/devops.png new file mode 100644 index 00000000..9d124a1f Binary files /dev/null and b/website/static/img/resources/azure/devops/devops.png differ diff --git a/website/static/img/resources/azure/devops/devtest-labs.png b/website/static/img/resources/azure/devops/devtest-labs.png new file mode 100644 index 00000000..75b82c12 Binary files /dev/null and b/website/static/img/resources/azure/devops/devtest-labs.png differ diff --git a/website/static/img/resources/azure/devops/lab-services.png b/website/static/img/resources/azure/devops/lab-services.png new file mode 100644 index 00000000..abbe48da Binary files /dev/null and b/website/static/img/resources/azure/devops/lab-services.png differ diff --git a/website/static/img/resources/azure/devops/pipelines.png b/website/static/img/resources/azure/devops/pipelines.png new file mode 100644 index 00000000..631e082d Binary files /dev/null and b/website/static/img/resources/azure/devops/pipelines.png differ diff --git a/website/static/img/resources/azure/devops/repos.png b/website/static/img/resources/azure/devops/repos.png new file mode 100644 index 00000000..636be5d4 Binary files /dev/null and b/website/static/img/resources/azure/devops/repos.png differ diff --git a/website/static/img/resources/azure/devops/test-plans.png b/website/static/img/resources/azure/devops/test-plans.png new file mode 100644 index 00000000..3543c991 Binary files /dev/null and b/website/static/img/resources/azure/devops/test-plans.png differ diff --git a/website/static/img/resources/azure/general/allresources.png b/website/static/img/resources/azure/general/allresources.png new file mode 100644 index 00000000..d2b2ccc7 Binary files /dev/null and b/website/static/img/resources/azure/general/allresources.png differ diff --git a/website/static/img/resources/azure/general/azurehome.png b/website/static/img/resources/azure/general/azurehome.png new file mode 100644 index 00000000..e86046d6 Binary files /dev/null and b/website/static/img/resources/azure/general/azurehome.png differ diff --git a/website/static/img/resources/azure/general/developertools.png b/website/static/img/resources/azure/general/developertools.png new file mode 100644 index 00000000..882de89e Binary files /dev/null and b/website/static/img/resources/azure/general/developertools.png differ diff --git a/website/static/img/resources/azure/general/helpsupport.png b/website/static/img/resources/azure/general/helpsupport.png new file mode 100644 index 00000000..d5172d37 Binary files /dev/null and b/website/static/img/resources/azure/general/helpsupport.png differ diff --git a/website/static/img/resources/azure/general/information.png b/website/static/img/resources/azure/general/information.png new file mode 100644 index 00000000..34af9729 Binary files /dev/null and b/website/static/img/resources/azure/general/information.png differ diff --git a/website/static/img/resources/azure/general/managementgroups.png b/website/static/img/resources/azure/general/managementgroups.png new file mode 100644 index 00000000..94044f40 Binary files /dev/null and b/website/static/img/resources/azure/general/managementgroups.png differ diff --git a/website/static/img/resources/azure/general/marketplace.png b/website/static/img/resources/azure/general/marketplace.png new file mode 100644 index 00000000..311506f4 Binary files /dev/null and b/website/static/img/resources/azure/general/marketplace.png differ diff --git a/website/static/img/resources/azure/general/quickstartcenter.png b/website/static/img/resources/azure/general/quickstartcenter.png new file mode 100644 index 00000000..8a8d92ee Binary files /dev/null and b/website/static/img/resources/azure/general/quickstartcenter.png differ diff --git a/website/static/img/resources/azure/general/recent.png b/website/static/img/resources/azure/general/recent.png new file mode 100644 index 00000000..7d7fb4a4 Binary files /dev/null and b/website/static/img/resources/azure/general/recent.png differ diff --git a/website/static/img/resources/azure/general/reservations.png b/website/static/img/resources/azure/general/reservations.png new file mode 100644 index 00000000..ec2ebad6 Binary files /dev/null and b/website/static/img/resources/azure/general/reservations.png differ diff --git a/website/static/img/resources/azure/general/resource.png b/website/static/img/resources/azure/general/resource.png new file mode 100644 index 00000000..8dfdc432 Binary files /dev/null and b/website/static/img/resources/azure/general/resource.png differ diff --git a/website/static/img/resources/azure/general/resourcegroups.png b/website/static/img/resources/azure/general/resourcegroups.png new file mode 100644 index 00000000..f0177acf Binary files /dev/null and b/website/static/img/resources/azure/general/resourcegroups.png differ diff --git a/website/static/img/resources/azure/general/servicehealth.png b/website/static/img/resources/azure/general/servicehealth.png new file mode 100644 index 00000000..308f7062 Binary files /dev/null and b/website/static/img/resources/azure/general/servicehealth.png differ diff --git a/website/static/img/resources/azure/general/shareddashboard.png b/website/static/img/resources/azure/general/shareddashboard.png new file mode 100644 index 00000000..97caf721 Binary files /dev/null and b/website/static/img/resources/azure/general/shareddashboard.png differ diff --git a/website/static/img/resources/azure/general/subscriptions.png b/website/static/img/resources/azure/general/subscriptions.png new file mode 100644 index 00000000..9a510f98 Binary files /dev/null and b/website/static/img/resources/azure/general/subscriptions.png differ diff --git a/website/static/img/resources/azure/general/support.png b/website/static/img/resources/azure/general/support.png new file mode 100644 index 00000000..6590fc9a Binary files /dev/null and b/website/static/img/resources/azure/general/support.png differ diff --git a/website/static/img/resources/azure/general/supportrequests.png b/website/static/img/resources/azure/general/supportrequests.png new file mode 100644 index 00000000..582ee94e Binary files /dev/null and b/website/static/img/resources/azure/general/supportrequests.png differ diff --git a/website/static/img/resources/azure/general/tag.png b/website/static/img/resources/azure/general/tag.png new file mode 100644 index 00000000..5d0ee16e Binary files /dev/null and b/website/static/img/resources/azure/general/tag.png differ diff --git a/website/static/img/resources/azure/general/tags.png b/website/static/img/resources/azure/general/tags.png new file mode 100644 index 00000000..58f2b4d5 Binary files /dev/null and b/website/static/img/resources/azure/general/tags.png differ diff --git a/website/static/img/resources/azure/general/templates.png b/website/static/img/resources/azure/general/templates.png new file mode 100644 index 00000000..263cebb9 Binary files /dev/null and b/website/static/img/resources/azure/general/templates.png differ diff --git a/website/static/img/resources/azure/general/twousericon.png b/website/static/img/resources/azure/general/twousericon.png new file mode 100644 index 00000000..9d6d8c1a Binary files /dev/null and b/website/static/img/resources/azure/general/twousericon.png differ diff --git a/website/static/img/resources/azure/general/userhealthicon.png b/website/static/img/resources/azure/general/userhealthicon.png new file mode 100644 index 00000000..b2e7e0cd Binary files /dev/null and b/website/static/img/resources/azure/general/userhealthicon.png differ diff --git a/website/static/img/resources/azure/general/usericon.png b/website/static/img/resources/azure/general/usericon.png new file mode 100644 index 00000000..773ccd09 Binary files /dev/null and b/website/static/img/resources/azure/general/usericon.png differ diff --git a/website/static/img/resources/azure/general/userprivacy.png b/website/static/img/resources/azure/general/userprivacy.png new file mode 100644 index 00000000..09d22ce3 Binary files /dev/null and b/website/static/img/resources/azure/general/userprivacy.png differ diff --git a/website/static/img/resources/azure/general/userresource.png b/website/static/img/resources/azure/general/userresource.png new file mode 100644 index 00000000..1418179a Binary files /dev/null and b/website/static/img/resources/azure/general/userresource.png differ diff --git a/website/static/img/resources/azure/general/whatsnew.png b/website/static/img/resources/azure/general/whatsnew.png new file mode 100644 index 00000000..2142d2b3 Binary files /dev/null and b/website/static/img/resources/azure/general/whatsnew.png differ diff --git a/website/static/img/resources/azure/identity/access-review.png b/website/static/img/resources/azure/identity/access-review.png new file mode 100644 index 00000000..22064e8b Binary files /dev/null and b/website/static/img/resources/azure/identity/access-review.png differ diff --git a/website/static/img/resources/azure/identity/active-directory-connect-health.png b/website/static/img/resources/azure/identity/active-directory-connect-health.png new file mode 100644 index 00000000..5dea39e6 Binary files /dev/null and b/website/static/img/resources/azure/identity/active-directory-connect-health.png differ diff --git a/website/static/img/resources/azure/identity/active-directory.png b/website/static/img/resources/azure/identity/active-directory.png new file mode 100644 index 00000000..b12a71bb Binary files /dev/null and b/website/static/img/resources/azure/identity/active-directory.png differ diff --git a/website/static/img/resources/azure/identity/ad-b2c.png b/website/static/img/resources/azure/identity/ad-b2c.png new file mode 100644 index 00000000..dab723f4 Binary files /dev/null and b/website/static/img/resources/azure/identity/ad-b2c.png differ diff --git a/website/static/img/resources/azure/identity/ad-domain-services.png b/website/static/img/resources/azure/identity/ad-domain-services.png new file mode 100644 index 00000000..c4056d91 Binary files /dev/null and b/website/static/img/resources/azure/identity/ad-domain-services.png differ diff --git a/website/static/img/resources/azure/identity/ad-identity-protection.png b/website/static/img/resources/azure/identity/ad-identity-protection.png new file mode 100644 index 00000000..503df013 Binary files /dev/null and b/website/static/img/resources/azure/identity/ad-identity-protection.png differ diff --git a/website/static/img/resources/azure/identity/ad-privileged-identity-management.png b/website/static/img/resources/azure/identity/ad-privileged-identity-management.png new file mode 100644 index 00000000..aca32aa5 Binary files /dev/null and b/website/static/img/resources/azure/identity/ad-privileged-identity-management.png differ diff --git a/website/static/img/resources/azure/identity/app-registrations.png b/website/static/img/resources/azure/identity/app-registrations.png new file mode 100644 index 00000000..755dc76e Binary files /dev/null and b/website/static/img/resources/azure/identity/app-registrations.png differ diff --git a/website/static/img/resources/azure/identity/conditional-access.png b/website/static/img/resources/azure/identity/conditional-access.png new file mode 100644 index 00000000..e0fa97e2 Binary files /dev/null and b/website/static/img/resources/azure/identity/conditional-access.png differ diff --git a/website/static/img/resources/azure/identity/enterprise-applications.png b/website/static/img/resources/azure/identity/enterprise-applications.png new file mode 100644 index 00000000..f14e0c98 Binary files /dev/null and b/website/static/img/resources/azure/identity/enterprise-applications.png differ diff --git a/website/static/img/resources/azure/identity/groups.png b/website/static/img/resources/azure/identity/groups.png new file mode 100644 index 00000000..b859b014 Binary files /dev/null and b/website/static/img/resources/azure/identity/groups.png differ diff --git a/website/static/img/resources/azure/identity/identity-governance.png b/website/static/img/resources/azure/identity/identity-governance.png new file mode 100644 index 00000000..fe46559a Binary files /dev/null and b/website/static/img/resources/azure/identity/identity-governance.png differ diff --git a/website/static/img/resources/azure/identity/information-protection.png b/website/static/img/resources/azure/identity/information-protection.png new file mode 100644 index 00000000..e7f561cf Binary files /dev/null and b/website/static/img/resources/azure/identity/information-protection.png differ diff --git a/website/static/img/resources/azure/identity/managed-identities.png b/website/static/img/resources/azure/identity/managed-identities.png new file mode 100644 index 00000000..d191007d Binary files /dev/null and b/website/static/img/resources/azure/identity/managed-identities.png differ diff --git a/website/static/img/resources/azure/identity/users.png b/website/static/img/resources/azure/identity/users.png new file mode 100644 index 00000000..0da5d6d0 Binary files /dev/null and b/website/static/img/resources/azure/identity/users.png differ diff --git a/website/static/img/resources/azure/integration/api-for-fhir.png b/website/static/img/resources/azure/integration/api-for-fhir.png new file mode 100644 index 00000000..801d438b Binary files /dev/null and b/website/static/img/resources/azure/integration/api-for-fhir.png differ diff --git a/website/static/img/resources/azure/integration/api-management.png b/website/static/img/resources/azure/integration/api-management.png new file mode 100644 index 00000000..1d7db0b9 Binary files /dev/null and b/website/static/img/resources/azure/integration/api-management.png differ diff --git a/website/static/img/resources/azure/integration/app-configuration.png b/website/static/img/resources/azure/integration/app-configuration.png new file mode 100644 index 00000000..088ea173 Binary files /dev/null and b/website/static/img/resources/azure/integration/app-configuration.png differ diff --git a/website/static/img/resources/azure/integration/data-catalog.png b/website/static/img/resources/azure/integration/data-catalog.png new file mode 100644 index 00000000..6f571571 Binary files /dev/null and b/website/static/img/resources/azure/integration/data-catalog.png differ diff --git a/website/static/img/resources/azure/integration/event-grid-domains.png b/website/static/img/resources/azure/integration/event-grid-domains.png new file mode 100644 index 00000000..53e285a4 Binary files /dev/null and b/website/static/img/resources/azure/integration/event-grid-domains.png differ diff --git a/website/static/img/resources/azure/integration/event-grid-subscriptions.png b/website/static/img/resources/azure/integration/event-grid-subscriptions.png new file mode 100644 index 00000000..53e285a4 Binary files /dev/null and b/website/static/img/resources/azure/integration/event-grid-subscriptions.png differ diff --git a/website/static/img/resources/azure/integration/event-grid-topics.png b/website/static/img/resources/azure/integration/event-grid-topics.png new file mode 100644 index 00000000..04213c30 Binary files /dev/null and b/website/static/img/resources/azure/integration/event-grid-topics.png differ diff --git a/website/static/img/resources/azure/integration/integration-accounts.png b/website/static/img/resources/azure/integration/integration-accounts.png new file mode 100644 index 00000000..a729534f Binary files /dev/null and b/website/static/img/resources/azure/integration/integration-accounts.png differ diff --git a/website/static/img/resources/azure/integration/integration-service-environments.png b/website/static/img/resources/azure/integration/integration-service-environments.png new file mode 100644 index 00000000..fefb03b3 Binary files /dev/null and b/website/static/img/resources/azure/integration/integration-service-environments.png differ diff --git a/website/static/img/resources/azure/integration/logic-apps-custom-connector.png b/website/static/img/resources/azure/integration/logic-apps-custom-connector.png new file mode 100644 index 00000000..ace467c7 Binary files /dev/null and b/website/static/img/resources/azure/integration/logic-apps-custom-connector.png differ diff --git a/website/static/img/resources/azure/integration/logic-apps.png b/website/static/img/resources/azure/integration/logic-apps.png new file mode 100644 index 00000000..b07f52c5 Binary files /dev/null and b/website/static/img/resources/azure/integration/logic-apps.png differ diff --git a/website/static/img/resources/azure/integration/partner-topic.png b/website/static/img/resources/azure/integration/partner-topic.png new file mode 100644 index 00000000..0631a558 Binary files /dev/null and b/website/static/img/resources/azure/integration/partner-topic.png differ diff --git a/website/static/img/resources/azure/integration/sendgrid-accounts.png b/website/static/img/resources/azure/integration/sendgrid-accounts.png new file mode 100644 index 00000000..e4cd7afa Binary files /dev/null and b/website/static/img/resources/azure/integration/sendgrid-accounts.png differ diff --git a/website/static/img/resources/azure/integration/service-bus-relays.png b/website/static/img/resources/azure/integration/service-bus-relays.png new file mode 100644 index 00000000..f255f05f Binary files /dev/null and b/website/static/img/resources/azure/integration/service-bus-relays.png differ diff --git a/website/static/img/resources/azure/integration/service-bus.png b/website/static/img/resources/azure/integration/service-bus.png new file mode 100644 index 00000000..b64ad18e Binary files /dev/null and b/website/static/img/resources/azure/integration/service-bus.png differ diff --git a/website/static/img/resources/azure/integration/service-catalog-managed-application-definitions.png b/website/static/img/resources/azure/integration/service-catalog-managed-application-definitions.png new file mode 100644 index 00000000..411380d8 Binary files /dev/null and b/website/static/img/resources/azure/integration/service-catalog-managed-application-definitions.png differ diff --git a/website/static/img/resources/azure/integration/software-as-a-service.png b/website/static/img/resources/azure/integration/software-as-a-service.png new file mode 100644 index 00000000..de893bc8 Binary files /dev/null and b/website/static/img/resources/azure/integration/software-as-a-service.png differ diff --git a/website/static/img/resources/azure/integration/storsimple-device-managers.png b/website/static/img/resources/azure/integration/storsimple-device-managers.png new file mode 100644 index 00000000..b29ce455 Binary files /dev/null and b/website/static/img/resources/azure/integration/storsimple-device-managers.png differ diff --git a/website/static/img/resources/azure/integration/system-topic.png b/website/static/img/resources/azure/integration/system-topic.png new file mode 100644 index 00000000..83e941b3 Binary files /dev/null and b/website/static/img/resources/azure/integration/system-topic.png differ diff --git a/website/static/img/resources/azure/iot/device-provisioning-services.png b/website/static/img/resources/azure/iot/device-provisioning-services.png new file mode 100644 index 00000000..f0fba925 Binary files /dev/null and b/website/static/img/resources/azure/iot/device-provisioning-services.png differ diff --git a/website/static/img/resources/azure/iot/digital-twins.png b/website/static/img/resources/azure/iot/digital-twins.png new file mode 100644 index 00000000..ceb39f8a Binary files /dev/null and b/website/static/img/resources/azure/iot/digital-twins.png differ diff --git a/website/static/img/resources/azure/iot/iot-central-applications.png b/website/static/img/resources/azure/iot/iot-central-applications.png new file mode 100644 index 00000000..0400504c Binary files /dev/null and b/website/static/img/resources/azure/iot/iot-central-applications.png differ diff --git a/website/static/img/resources/azure/iot/iot-hub-security.png b/website/static/img/resources/azure/iot/iot-hub-security.png new file mode 100644 index 00000000..2b4d980c Binary files /dev/null and b/website/static/img/resources/azure/iot/iot-hub-security.png differ diff --git a/website/static/img/resources/azure/iot/iot-hub.png b/website/static/img/resources/azure/iot/iot-hub.png new file mode 100644 index 00000000..664bc23f Binary files /dev/null and b/website/static/img/resources/azure/iot/iot-hub.png differ diff --git a/website/static/img/resources/azure/iot/maps.png b/website/static/img/resources/azure/iot/maps.png new file mode 100644 index 00000000..ed1c5e16 Binary files /dev/null and b/website/static/img/resources/azure/iot/maps.png differ diff --git a/website/static/img/resources/azure/iot/sphere.png b/website/static/img/resources/azure/iot/sphere.png new file mode 100644 index 00000000..5fef9d0c Binary files /dev/null and b/website/static/img/resources/azure/iot/sphere.png differ diff --git a/website/static/img/resources/azure/iot/time-series-insights-environments.png b/website/static/img/resources/azure/iot/time-series-insights-environments.png new file mode 100644 index 00000000..8ddbc0ca Binary files /dev/null and b/website/static/img/resources/azure/iot/time-series-insights-environments.png differ diff --git a/website/static/img/resources/azure/iot/time-series-insights-events-sources.png b/website/static/img/resources/azure/iot/time-series-insights-events-sources.png new file mode 100644 index 00000000..80d33f6c Binary files /dev/null and b/website/static/img/resources/azure/iot/time-series-insights-events-sources.png differ diff --git a/website/static/img/resources/azure/iot/windows-10-iot-core-services.png b/website/static/img/resources/azure/iot/windows-10-iot-core-services.png new file mode 100644 index 00000000..54b6f7e8 Binary files /dev/null and b/website/static/img/resources/azure/iot/windows-10-iot-core-services.png differ diff --git a/website/static/img/resources/azure/migration/data-box-edge.png b/website/static/img/resources/azure/migration/data-box-edge.png new file mode 100644 index 00000000..76d55602 Binary files /dev/null and b/website/static/img/resources/azure/migration/data-box-edge.png differ diff --git a/website/static/img/resources/azure/migration/data-box.png b/website/static/img/resources/azure/migration/data-box.png new file mode 100644 index 00000000..b316d506 Binary files /dev/null and b/website/static/img/resources/azure/migration/data-box.png differ diff --git a/website/static/img/resources/azure/migration/database-migration-services.png b/website/static/img/resources/azure/migration/database-migration-services.png new file mode 100644 index 00000000..9f66d088 Binary files /dev/null and b/website/static/img/resources/azure/migration/database-migration-services.png differ diff --git a/website/static/img/resources/azure/migration/migration-projects.png b/website/static/img/resources/azure/migration/migration-projects.png new file mode 100644 index 00000000..71394c0b Binary files /dev/null and b/website/static/img/resources/azure/migration/migration-projects.png differ diff --git a/website/static/img/resources/azure/migration/recovery-services-vaults.png b/website/static/img/resources/azure/migration/recovery-services-vaults.png new file mode 100644 index 00000000..1275988e Binary files /dev/null and b/website/static/img/resources/azure/migration/recovery-services-vaults.png differ diff --git a/website/static/img/resources/azure/ml/azure-open-ai.png b/website/static/img/resources/azure/ml/azure-open-ai.png new file mode 100644 index 00000000..f617791d Binary files /dev/null and b/website/static/img/resources/azure/ml/azure-open-ai.png differ diff --git a/website/static/img/resources/azure/ml/azure-speed-to-text.png b/website/static/img/resources/azure/ml/azure-speed-to-text.png new file mode 100644 index 00000000..ca331f12 Binary files /dev/null and b/website/static/img/resources/azure/ml/azure-speed-to-text.png differ diff --git a/website/static/img/resources/azure/ml/batch-ai.png b/website/static/img/resources/azure/ml/batch-ai.png new file mode 100644 index 00000000..935f482e Binary files /dev/null and b/website/static/img/resources/azure/ml/batch-ai.png differ diff --git a/website/static/img/resources/azure/ml/bot-services.png b/website/static/img/resources/azure/ml/bot-services.png new file mode 100644 index 00000000..04036722 Binary files /dev/null and b/website/static/img/resources/azure/ml/bot-services.png differ diff --git a/website/static/img/resources/azure/ml/cognitive-services.png b/website/static/img/resources/azure/ml/cognitive-services.png new file mode 100644 index 00000000..651f7303 Binary files /dev/null and b/website/static/img/resources/azure/ml/cognitive-services.png differ diff --git a/website/static/img/resources/azure/ml/genomics-accounts.png b/website/static/img/resources/azure/ml/genomics-accounts.png new file mode 100644 index 00000000..782eba24 Binary files /dev/null and b/website/static/img/resources/azure/ml/genomics-accounts.png differ diff --git a/website/static/img/resources/azure/ml/machine-learning-service-workspaces.png b/website/static/img/resources/azure/ml/machine-learning-service-workspaces.png new file mode 100644 index 00000000..b1e967bb Binary files /dev/null and b/website/static/img/resources/azure/ml/machine-learning-service-workspaces.png differ diff --git a/website/static/img/resources/azure/ml/machine-learning-studio-web-service-plans.png b/website/static/img/resources/azure/ml/machine-learning-studio-web-service-plans.png new file mode 100644 index 00000000..e347017b Binary files /dev/null and b/website/static/img/resources/azure/ml/machine-learning-studio-web-service-plans.png differ diff --git a/website/static/img/resources/azure/ml/machine-learning-studio-web-services.png b/website/static/img/resources/azure/ml/machine-learning-studio-web-services.png new file mode 100644 index 00000000..6885fc3b Binary files /dev/null and b/website/static/img/resources/azure/ml/machine-learning-studio-web-services.png differ diff --git a/website/static/img/resources/azure/ml/machine-learning-studio-workspaces.png b/website/static/img/resources/azure/ml/machine-learning-studio-workspaces.png new file mode 100644 index 00000000..781de23d Binary files /dev/null and b/website/static/img/resources/azure/ml/machine-learning-studio-workspaces.png differ diff --git a/website/static/img/resources/azure/mobile/app-service-mobile.png b/website/static/img/resources/azure/mobile/app-service-mobile.png new file mode 100644 index 00000000..a851bea3 Binary files /dev/null and b/website/static/img/resources/azure/mobile/app-service-mobile.png differ diff --git a/website/static/img/resources/azure/mobile/mobile-engagement.png b/website/static/img/resources/azure/mobile/mobile-engagement.png new file mode 100644 index 00000000..fe02c590 Binary files /dev/null and b/website/static/img/resources/azure/mobile/mobile-engagement.png differ diff --git a/website/static/img/resources/azure/mobile/notification-hubs.png b/website/static/img/resources/azure/mobile/notification-hubs.png new file mode 100644 index 00000000..ad3129f4 Binary files /dev/null and b/website/static/img/resources/azure/mobile/notification-hubs.png differ diff --git a/website/static/img/resources/azure/monitor/change-analysis.png b/website/static/img/resources/azure/monitor/change-analysis.png new file mode 100644 index 00000000..4d5c0317 Binary files /dev/null and b/website/static/img/resources/azure/monitor/change-analysis.png differ diff --git a/website/static/img/resources/azure/monitor/logs.png b/website/static/img/resources/azure/monitor/logs.png new file mode 100644 index 00000000..2fe89972 Binary files /dev/null and b/website/static/img/resources/azure/monitor/logs.png differ diff --git a/website/static/img/resources/azure/monitor/metrics.png b/website/static/img/resources/azure/monitor/metrics.png new file mode 100644 index 00000000..b68f3875 Binary files /dev/null and b/website/static/img/resources/azure/monitor/metrics.png differ diff --git a/website/static/img/resources/azure/monitor/monitor.png b/website/static/img/resources/azure/monitor/monitor.png new file mode 100644 index 00000000..ec03485a Binary files /dev/null and b/website/static/img/resources/azure/monitor/monitor.png differ diff --git a/website/static/img/resources/azure/network/application-gateway.png b/website/static/img/resources/azure/network/application-gateway.png new file mode 100644 index 00000000..33b9bb60 Binary files /dev/null and b/website/static/img/resources/azure/network/application-gateway.png differ diff --git a/website/static/img/resources/azure/network/application-security-groups.png b/website/static/img/resources/azure/network/application-security-groups.png new file mode 100644 index 00000000..0e0b6be9 Binary files /dev/null and b/website/static/img/resources/azure/network/application-security-groups.png differ diff --git a/website/static/img/resources/azure/network/cdn-profiles.png b/website/static/img/resources/azure/network/cdn-profiles.png new file mode 100644 index 00000000..abf28b27 Binary files /dev/null and b/website/static/img/resources/azure/network/cdn-profiles.png differ diff --git a/website/static/img/resources/azure/network/connections.png b/website/static/img/resources/azure/network/connections.png new file mode 100644 index 00000000..ba2f81ff Binary files /dev/null and b/website/static/img/resources/azure/network/connections.png differ diff --git a/website/static/img/resources/azure/network/ddos-protection-plans.png b/website/static/img/resources/azure/network/ddos-protection-plans.png new file mode 100644 index 00000000..a9f93003 Binary files /dev/null and b/website/static/img/resources/azure/network/ddos-protection-plans.png differ diff --git a/website/static/img/resources/azure/network/dns-private-zones.png b/website/static/img/resources/azure/network/dns-private-zones.png new file mode 100644 index 00000000..60bd589e Binary files /dev/null and b/website/static/img/resources/azure/network/dns-private-zones.png differ diff --git a/website/static/img/resources/azure/network/dns-zones.png b/website/static/img/resources/azure/network/dns-zones.png new file mode 100644 index 00000000..cd0e0546 Binary files /dev/null and b/website/static/img/resources/azure/network/dns-zones.png differ diff --git a/website/static/img/resources/azure/network/expressroute-circuits.png b/website/static/img/resources/azure/network/expressroute-circuits.png new file mode 100644 index 00000000..cb86bb1e Binary files /dev/null and b/website/static/img/resources/azure/network/expressroute-circuits.png differ diff --git a/website/static/img/resources/azure/network/firewall.png b/website/static/img/resources/azure/network/firewall.png new file mode 100644 index 00000000..d2f12c96 Binary files /dev/null and b/website/static/img/resources/azure/network/firewall.png differ diff --git a/website/static/img/resources/azure/network/front-doors.png b/website/static/img/resources/azure/network/front-doors.png new file mode 100644 index 00000000..baa09faf Binary files /dev/null and b/website/static/img/resources/azure/network/front-doors.png differ diff --git a/website/static/img/resources/azure/network/load-balancers.png b/website/static/img/resources/azure/network/load-balancers.png new file mode 100644 index 00000000..803c5225 Binary files /dev/null and b/website/static/img/resources/azure/network/load-balancers.png differ diff --git a/website/static/img/resources/azure/network/local-network-gateways.png b/website/static/img/resources/azure/network/local-network-gateways.png new file mode 100644 index 00000000..11e7bf9c Binary files /dev/null and b/website/static/img/resources/azure/network/local-network-gateways.png differ diff --git a/website/static/img/resources/azure/network/network-interfaces.png b/website/static/img/resources/azure/network/network-interfaces.png new file mode 100644 index 00000000..c60606c9 Binary files /dev/null and b/website/static/img/resources/azure/network/network-interfaces.png differ diff --git a/website/static/img/resources/azure/network/network-security-groups-classic.png b/website/static/img/resources/azure/network/network-security-groups-classic.png new file mode 100644 index 00000000..4a7e8eee Binary files /dev/null and b/website/static/img/resources/azure/network/network-security-groups-classic.png differ diff --git a/website/static/img/resources/azure/network/network-watcher.png b/website/static/img/resources/azure/network/network-watcher.png new file mode 100644 index 00000000..1323f62c Binary files /dev/null and b/website/static/img/resources/azure/network/network-watcher.png differ diff --git a/website/static/img/resources/azure/network/on-premises-data-gateways.png b/website/static/img/resources/azure/network/on-premises-data-gateways.png new file mode 100644 index 00000000..fb1b0ecb Binary files /dev/null and b/website/static/img/resources/azure/network/on-premises-data-gateways.png differ diff --git a/website/static/img/resources/azure/network/private-endpoint.png b/website/static/img/resources/azure/network/private-endpoint.png new file mode 100644 index 00000000..a7a69915 Binary files /dev/null and b/website/static/img/resources/azure/network/private-endpoint.png differ diff --git a/website/static/img/resources/azure/network/public-ip-addresses.png b/website/static/img/resources/azure/network/public-ip-addresses.png new file mode 100644 index 00000000..2cb57240 Binary files /dev/null and b/website/static/img/resources/azure/network/public-ip-addresses.png differ diff --git a/website/static/img/resources/azure/network/reserved-ip-addresses-classic.png b/website/static/img/resources/azure/network/reserved-ip-addresses-classic.png new file mode 100644 index 00000000..086da895 Binary files /dev/null and b/website/static/img/resources/azure/network/reserved-ip-addresses-classic.png differ diff --git a/website/static/img/resources/azure/network/route-filters.png b/website/static/img/resources/azure/network/route-filters.png new file mode 100644 index 00000000..797b5119 Binary files /dev/null and b/website/static/img/resources/azure/network/route-filters.png differ diff --git a/website/static/img/resources/azure/network/route-tables.png b/website/static/img/resources/azure/network/route-tables.png new file mode 100644 index 00000000..9d7ff779 Binary files /dev/null and b/website/static/img/resources/azure/network/route-tables.png differ diff --git a/website/static/img/resources/azure/network/service-endpoint-policies.png b/website/static/img/resources/azure/network/service-endpoint-policies.png new file mode 100644 index 00000000..e9fa41fe Binary files /dev/null and b/website/static/img/resources/azure/network/service-endpoint-policies.png differ diff --git a/website/static/img/resources/azure/network/subnets.png b/website/static/img/resources/azure/network/subnets.png new file mode 100644 index 00000000..eb4b1f59 Binary files /dev/null and b/website/static/img/resources/azure/network/subnets.png differ diff --git a/website/static/img/resources/azure/network/traffic-manager-profiles.png b/website/static/img/resources/azure/network/traffic-manager-profiles.png new file mode 100644 index 00000000..fa7fa8fe Binary files /dev/null and b/website/static/img/resources/azure/network/traffic-manager-profiles.png differ diff --git a/website/static/img/resources/azure/network/virtual-network-classic.png b/website/static/img/resources/azure/network/virtual-network-classic.png new file mode 100644 index 00000000..58703249 Binary files /dev/null and b/website/static/img/resources/azure/network/virtual-network-classic.png differ diff --git a/website/static/img/resources/azure/network/virtual-network-gateways.png b/website/static/img/resources/azure/network/virtual-network-gateways.png new file mode 100644 index 00000000..5e66c940 Binary files /dev/null and b/website/static/img/resources/azure/network/virtual-network-gateways.png differ diff --git a/website/static/img/resources/azure/network/virtual-networks.png b/website/static/img/resources/azure/network/virtual-networks.png new file mode 100644 index 00000000..d2f947bb Binary files /dev/null and b/website/static/img/resources/azure/network/virtual-networks.png differ diff --git a/website/static/img/resources/azure/network/virtual-wans.png b/website/static/img/resources/azure/network/virtual-wans.png new file mode 100644 index 00000000..58c17293 Binary files /dev/null and b/website/static/img/resources/azure/network/virtual-wans.png differ diff --git a/website/static/img/resources/azure/security/application-security-groups.png b/website/static/img/resources/azure/security/application-security-groups.png new file mode 100644 index 00000000..38066668 Binary files /dev/null and b/website/static/img/resources/azure/security/application-security-groups.png differ diff --git a/website/static/img/resources/azure/security/conditional-access.png b/website/static/img/resources/azure/security/conditional-access.png new file mode 100644 index 00000000..37d5ab17 Binary files /dev/null and b/website/static/img/resources/azure/security/conditional-access.png differ diff --git a/website/static/img/resources/azure/security/defender.png b/website/static/img/resources/azure/security/defender.png new file mode 100644 index 00000000..35ee099b Binary files /dev/null and b/website/static/img/resources/azure/security/defender.png differ diff --git a/website/static/img/resources/azure/security/extended-security-updates.png b/website/static/img/resources/azure/security/extended-security-updates.png new file mode 100644 index 00000000..b77dfda6 Binary files /dev/null and b/website/static/img/resources/azure/security/extended-security-updates.png differ diff --git a/website/static/img/resources/azure/security/key-vaults.png b/website/static/img/resources/azure/security/key-vaults.png new file mode 100644 index 00000000..bc57429f Binary files /dev/null and b/website/static/img/resources/azure/security/key-vaults.png differ diff --git a/website/static/img/resources/azure/security/security-center.png b/website/static/img/resources/azure/security/security-center.png new file mode 100644 index 00000000..2aef4991 Binary files /dev/null and b/website/static/img/resources/azure/security/security-center.png differ diff --git a/website/static/img/resources/azure/security/sentinel.png b/website/static/img/resources/azure/security/sentinel.png new file mode 100644 index 00000000..949a3a63 Binary files /dev/null and b/website/static/img/resources/azure/security/sentinel.png differ diff --git a/website/static/img/resources/azure/storage/archive-storage.png b/website/static/img/resources/azure/storage/archive-storage.png new file mode 100644 index 00000000..f80a1066 Binary files /dev/null and b/website/static/img/resources/azure/storage/archive-storage.png differ diff --git a/website/static/img/resources/azure/storage/azurefxtedgefiler.png b/website/static/img/resources/azure/storage/azurefxtedgefiler.png new file mode 100644 index 00000000..052a8b1d Binary files /dev/null and b/website/static/img/resources/azure/storage/azurefxtedgefiler.png differ diff --git a/website/static/img/resources/azure/storage/blob-storage.png b/website/static/img/resources/azure/storage/blob-storage.png new file mode 100644 index 00000000..e849152a Binary files /dev/null and b/website/static/img/resources/azure/storage/blob-storage.png differ diff --git a/website/static/img/resources/azure/storage/data-box-edge-data-box-gateway.png b/website/static/img/resources/azure/storage/data-box-edge-data-box-gateway.png new file mode 100644 index 00000000..76d55602 Binary files /dev/null and b/website/static/img/resources/azure/storage/data-box-edge-data-box-gateway.png differ diff --git a/website/static/img/resources/azure/storage/data-box.png b/website/static/img/resources/azure/storage/data-box.png new file mode 100644 index 00000000..b316d506 Binary files /dev/null and b/website/static/img/resources/azure/storage/data-box.png differ diff --git a/website/static/img/resources/azure/storage/data-lake-storage.png b/website/static/img/resources/azure/storage/data-lake-storage.png new file mode 100644 index 00000000..8f22588a Binary files /dev/null and b/website/static/img/resources/azure/storage/data-lake-storage.png differ diff --git a/website/static/img/resources/azure/storage/general-storage.png b/website/static/img/resources/azure/storage/general-storage.png new file mode 100644 index 00000000..03955bd2 Binary files /dev/null and b/website/static/img/resources/azure/storage/general-storage.png differ diff --git a/website/static/img/resources/azure/storage/netapp-files.png b/website/static/img/resources/azure/storage/netapp-files.png new file mode 100644 index 00000000..cda140e6 Binary files /dev/null and b/website/static/img/resources/azure/storage/netapp-files.png differ diff --git a/website/static/img/resources/azure/storage/queues-storage.png b/website/static/img/resources/azure/storage/queues-storage.png new file mode 100644 index 00000000..565aba78 Binary files /dev/null and b/website/static/img/resources/azure/storage/queues-storage.png differ diff --git a/website/static/img/resources/azure/storage/storage-accounts-classic.png b/website/static/img/resources/azure/storage/storage-accounts-classic.png new file mode 100644 index 00000000..1379991d Binary files /dev/null and b/website/static/img/resources/azure/storage/storage-accounts-classic.png differ diff --git a/website/static/img/resources/azure/storage/storage-accounts.png b/website/static/img/resources/azure/storage/storage-accounts.png new file mode 100644 index 00000000..61e3dd1c Binary files /dev/null and b/website/static/img/resources/azure/storage/storage-accounts.png differ diff --git a/website/static/img/resources/azure/storage/storage-explorer.png b/website/static/img/resources/azure/storage/storage-explorer.png new file mode 100644 index 00000000..c623801f Binary files /dev/null and b/website/static/img/resources/azure/storage/storage-explorer.png differ diff --git a/website/static/img/resources/azure/storage/storage-sync-services.png b/website/static/img/resources/azure/storage/storage-sync-services.png new file mode 100644 index 00000000..6d22924a Binary files /dev/null and b/website/static/img/resources/azure/storage/storage-sync-services.png differ diff --git a/website/static/img/resources/azure/storage/storsimple-data-managers.png b/website/static/img/resources/azure/storage/storsimple-data-managers.png new file mode 100644 index 00000000..e66b8006 Binary files /dev/null and b/website/static/img/resources/azure/storage/storsimple-data-managers.png differ diff --git a/website/static/img/resources/azure/storage/storsimple-device-managers.png b/website/static/img/resources/azure/storage/storsimple-device-managers.png new file mode 100644 index 00000000..35d26d87 Binary files /dev/null and b/website/static/img/resources/azure/storage/storsimple-device-managers.png differ diff --git a/website/static/img/resources/azure/storage/table-storage.png b/website/static/img/resources/azure/storage/table-storage.png new file mode 100644 index 00000000..7dd762fd Binary files /dev/null and b/website/static/img/resources/azure/storage/table-storage.png differ diff --git a/website/static/img/resources/azure/web/api-connections.png b/website/static/img/resources/azure/web/api-connections.png new file mode 100644 index 00000000..3c0db2e6 Binary files /dev/null and b/website/static/img/resources/azure/web/api-connections.png differ diff --git a/website/static/img/resources/azure/web/app-service-certificates.png b/website/static/img/resources/azure/web/app-service-certificates.png new file mode 100644 index 00000000..1c63f126 Binary files /dev/null and b/website/static/img/resources/azure/web/app-service-certificates.png differ diff --git a/website/static/img/resources/azure/web/app-service-domains.png b/website/static/img/resources/azure/web/app-service-domains.png new file mode 100644 index 00000000..afeea0c0 Binary files /dev/null and b/website/static/img/resources/azure/web/app-service-domains.png differ diff --git a/website/static/img/resources/azure/web/app-service-environments.png b/website/static/img/resources/azure/web/app-service-environments.png new file mode 100644 index 00000000..6f764a28 Binary files /dev/null and b/website/static/img/resources/azure/web/app-service-environments.png differ diff --git a/website/static/img/resources/azure/web/app-service-plans.png b/website/static/img/resources/azure/web/app-service-plans.png new file mode 100644 index 00000000..1be8fe61 Binary files /dev/null and b/website/static/img/resources/azure/web/app-service-plans.png differ diff --git a/website/static/img/resources/azure/web/app-services.png b/website/static/img/resources/azure/web/app-services.png new file mode 100644 index 00000000..f7ca7fb0 Binary files /dev/null and b/website/static/img/resources/azure/web/app-services.png differ diff --git a/website/static/img/resources/azure/web/media-services.png b/website/static/img/resources/azure/web/media-services.png new file mode 100644 index 00000000..f787f0f6 Binary files /dev/null and b/website/static/img/resources/azure/web/media-services.png differ diff --git a/website/static/img/resources/azure/web/notification-hub-namespaces.png b/website/static/img/resources/azure/web/notification-hub-namespaces.png new file mode 100644 index 00000000..ad3129f4 Binary files /dev/null and b/website/static/img/resources/azure/web/notification-hub-namespaces.png differ diff --git a/website/static/img/resources/azure/web/search.png b/website/static/img/resources/azure/web/search.png new file mode 100644 index 00000000..c92d6582 Binary files /dev/null and b/website/static/img/resources/azure/web/search.png differ diff --git a/website/static/img/resources/azure/web/signalr.png b/website/static/img/resources/azure/web/signalr.png new file mode 100644 index 00000000..8596a694 Binary files /dev/null and b/website/static/img/resources/azure/web/signalr.png differ diff --git a/website/static/img/resources/digitalocean/compute/containers.png b/website/static/img/resources/digitalocean/compute/containers.png new file mode 100644 index 00000000..c91c0b5d Binary files /dev/null and b/website/static/img/resources/digitalocean/compute/containers.png differ diff --git a/website/static/img/resources/digitalocean/compute/docker.png b/website/static/img/resources/digitalocean/compute/docker.png new file mode 100644 index 00000000..b9a7d33c Binary files /dev/null and b/website/static/img/resources/digitalocean/compute/docker.png differ diff --git a/website/static/img/resources/digitalocean/compute/droplet-connect.png b/website/static/img/resources/digitalocean/compute/droplet-connect.png new file mode 100644 index 00000000..44c0b869 Binary files /dev/null and b/website/static/img/resources/digitalocean/compute/droplet-connect.png differ diff --git a/website/static/img/resources/digitalocean/compute/droplet-snapshot.png b/website/static/img/resources/digitalocean/compute/droplet-snapshot.png new file mode 100644 index 00000000..5ec9b0d0 Binary files /dev/null and b/website/static/img/resources/digitalocean/compute/droplet-snapshot.png differ diff --git a/website/static/img/resources/digitalocean/compute/droplet.png b/website/static/img/resources/digitalocean/compute/droplet.png new file mode 100644 index 00000000..9010bf10 Binary files /dev/null and b/website/static/img/resources/digitalocean/compute/droplet.png differ diff --git a/website/static/img/resources/digitalocean/compute/k8s-cluster.png b/website/static/img/resources/digitalocean/compute/k8s-cluster.png new file mode 100644 index 00000000..2cdb1485 Binary files /dev/null and b/website/static/img/resources/digitalocean/compute/k8s-cluster.png differ diff --git a/website/static/img/resources/digitalocean/compute/k8s-node-pool.png b/website/static/img/resources/digitalocean/compute/k8s-node-pool.png new file mode 100644 index 00000000..54f08df9 Binary files /dev/null and b/website/static/img/resources/digitalocean/compute/k8s-node-pool.png differ diff --git a/website/static/img/resources/digitalocean/compute/k8s-node.png b/website/static/img/resources/digitalocean/compute/k8s-node.png new file mode 100644 index 00000000..850311fc Binary files /dev/null and b/website/static/img/resources/digitalocean/compute/k8s-node.png differ diff --git a/website/static/img/resources/digitalocean/database/dbaas-primary-standby-more.png b/website/static/img/resources/digitalocean/database/dbaas-primary-standby-more.png new file mode 100644 index 00000000..3903a387 Binary files /dev/null and b/website/static/img/resources/digitalocean/database/dbaas-primary-standby-more.png differ diff --git a/website/static/img/resources/digitalocean/database/dbaas-primary.png b/website/static/img/resources/digitalocean/database/dbaas-primary.png new file mode 100644 index 00000000..204e61cb Binary files /dev/null and b/website/static/img/resources/digitalocean/database/dbaas-primary.png differ diff --git a/website/static/img/resources/digitalocean/database/dbaas-read-only.png b/website/static/img/resources/digitalocean/database/dbaas-read-only.png new file mode 100644 index 00000000..b6747095 Binary files /dev/null and b/website/static/img/resources/digitalocean/database/dbaas-read-only.png differ diff --git a/website/static/img/resources/digitalocean/database/dbaas-standby.png b/website/static/img/resources/digitalocean/database/dbaas-standby.png new file mode 100644 index 00000000..2ed71136 Binary files /dev/null and b/website/static/img/resources/digitalocean/database/dbaas-standby.png differ diff --git a/website/static/img/resources/digitalocean/network/certificate.png b/website/static/img/resources/digitalocean/network/certificate.png new file mode 100644 index 00000000..4552ad4f Binary files /dev/null and b/website/static/img/resources/digitalocean/network/certificate.png differ diff --git a/website/static/img/resources/digitalocean/network/domain-registration.png b/website/static/img/resources/digitalocean/network/domain-registration.png new file mode 100644 index 00000000..bdf0cf99 Binary files /dev/null and b/website/static/img/resources/digitalocean/network/domain-registration.png differ diff --git a/website/static/img/resources/digitalocean/network/domain.png b/website/static/img/resources/digitalocean/network/domain.png new file mode 100644 index 00000000..def4332d Binary files /dev/null and b/website/static/img/resources/digitalocean/network/domain.png differ diff --git a/website/static/img/resources/digitalocean/network/firewall.png b/website/static/img/resources/digitalocean/network/firewall.png new file mode 100644 index 00000000..9157f6ea Binary files /dev/null and b/website/static/img/resources/digitalocean/network/firewall.png differ diff --git a/website/static/img/resources/digitalocean/network/floating-ip.png b/website/static/img/resources/digitalocean/network/floating-ip.png new file mode 100644 index 00000000..20aecc7f Binary files /dev/null and b/website/static/img/resources/digitalocean/network/floating-ip.png differ diff --git a/website/static/img/resources/digitalocean/network/internet-gateway.png b/website/static/img/resources/digitalocean/network/internet-gateway.png new file mode 100644 index 00000000..1203a39e Binary files /dev/null and b/website/static/img/resources/digitalocean/network/internet-gateway.png differ diff --git a/website/static/img/resources/digitalocean/network/load-balancer.png b/website/static/img/resources/digitalocean/network/load-balancer.png new file mode 100644 index 00000000..335a95b2 Binary files /dev/null and b/website/static/img/resources/digitalocean/network/load-balancer.png differ diff --git a/website/static/img/resources/digitalocean/network/managed-vpn.png b/website/static/img/resources/digitalocean/network/managed-vpn.png new file mode 100644 index 00000000..4e0fc4f0 Binary files /dev/null and b/website/static/img/resources/digitalocean/network/managed-vpn.png differ diff --git a/website/static/img/resources/digitalocean/network/vpc.png b/website/static/img/resources/digitalocean/network/vpc.png new file mode 100644 index 00000000..c49baefd Binary files /dev/null and b/website/static/img/resources/digitalocean/network/vpc.png differ diff --git a/website/static/img/resources/digitalocean/storage/folder.png b/website/static/img/resources/digitalocean/storage/folder.png new file mode 100644 index 00000000..cf5e2f89 Binary files /dev/null and b/website/static/img/resources/digitalocean/storage/folder.png differ diff --git a/website/static/img/resources/digitalocean/storage/space.png b/website/static/img/resources/digitalocean/storage/space.png new file mode 100644 index 00000000..f4054c78 Binary files /dev/null and b/website/static/img/resources/digitalocean/storage/space.png differ diff --git a/website/static/img/resources/digitalocean/storage/volume-snapshot.png b/website/static/img/resources/digitalocean/storage/volume-snapshot.png new file mode 100644 index 00000000..0bdab74c Binary files /dev/null and b/website/static/img/resources/digitalocean/storage/volume-snapshot.png differ diff --git a/website/static/img/resources/digitalocean/storage/volume.png b/website/static/img/resources/digitalocean/storage/volume.png new file mode 100644 index 00000000..3d3dc947 Binary files /dev/null and b/website/static/img/resources/digitalocean/storage/volume.png differ diff --git a/website/static/img/resources/elastic/agent/agent.png b/website/static/img/resources/elastic/agent/agent.png new file mode 100644 index 00000000..f2a90e0d Binary files /dev/null and b/website/static/img/resources/elastic/agent/agent.png differ diff --git a/website/static/img/resources/elastic/agent/endpoint.png b/website/static/img/resources/elastic/agent/endpoint.png new file mode 100644 index 00000000..4daf3ca3 Binary files /dev/null and b/website/static/img/resources/elastic/agent/endpoint.png differ diff --git a/website/static/img/resources/elastic/agent/fleet.png b/website/static/img/resources/elastic/agent/fleet.png new file mode 100644 index 00000000..55dd3686 Binary files /dev/null and b/website/static/img/resources/elastic/agent/fleet.png differ diff --git a/website/static/img/resources/elastic/agent/integrations.png b/website/static/img/resources/elastic/agent/integrations.png new file mode 100644 index 00000000..9bd75395 Binary files /dev/null and b/website/static/img/resources/elastic/agent/integrations.png differ diff --git a/website/static/img/resources/elastic/beats/apm.png b/website/static/img/resources/elastic/beats/apm.png new file mode 100644 index 00000000..fdb5796a Binary files /dev/null and b/website/static/img/resources/elastic/beats/apm.png differ diff --git a/website/static/img/resources/elastic/beats/auditbeat.png b/website/static/img/resources/elastic/beats/auditbeat.png new file mode 100644 index 00000000..4e41ae78 Binary files /dev/null and b/website/static/img/resources/elastic/beats/auditbeat.png differ diff --git a/website/static/img/resources/elastic/beats/filebeat.png b/website/static/img/resources/elastic/beats/filebeat.png new file mode 100644 index 00000000..778af3d3 Binary files /dev/null and b/website/static/img/resources/elastic/beats/filebeat.png differ diff --git a/website/static/img/resources/elastic/beats/functionbeat.png b/website/static/img/resources/elastic/beats/functionbeat.png new file mode 100644 index 00000000..080e9f46 Binary files /dev/null and b/website/static/img/resources/elastic/beats/functionbeat.png differ diff --git a/website/static/img/resources/elastic/beats/heartbeat.png b/website/static/img/resources/elastic/beats/heartbeat.png new file mode 100644 index 00000000..975daa7b Binary files /dev/null and b/website/static/img/resources/elastic/beats/heartbeat.png differ diff --git a/website/static/img/resources/elastic/beats/metricbeat.png b/website/static/img/resources/elastic/beats/metricbeat.png new file mode 100644 index 00000000..80082cd4 Binary files /dev/null and b/website/static/img/resources/elastic/beats/metricbeat.png differ diff --git a/website/static/img/resources/elastic/beats/packetbeat.png b/website/static/img/resources/elastic/beats/packetbeat.png new file mode 100644 index 00000000..9ede7e1e Binary files /dev/null and b/website/static/img/resources/elastic/beats/packetbeat.png differ diff --git a/website/static/img/resources/elastic/beats/winlogbeat.png b/website/static/img/resources/elastic/beats/winlogbeat.png new file mode 100644 index 00000000..70f12acb Binary files /dev/null and b/website/static/img/resources/elastic/beats/winlogbeat.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/alerting.png b/website/static/img/resources/elastic/elasticsearch/alerting.png new file mode 100644 index 00000000..eb8c7c71 Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/alerting.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/beats.png b/website/static/img/resources/elastic/elasticsearch/beats.png new file mode 100644 index 00000000..78d80b27 Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/beats.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/elasticsearch.png b/website/static/img/resources/elastic/elasticsearch/elasticsearch.png new file mode 100644 index 00000000..10188c30 Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/elasticsearch.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/kibana.png b/website/static/img/resources/elastic/elasticsearch/kibana.png new file mode 100644 index 00000000..b856e29b Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/kibana.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/logstash-pipeline.png b/website/static/img/resources/elastic/elasticsearch/logstash-pipeline.png new file mode 100644 index 00000000..4a772456 Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/logstash-pipeline.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/logstash.png b/website/static/img/resources/elastic/elasticsearch/logstash.png new file mode 100644 index 00000000..7beca017 Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/logstash.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/machine-learning.png b/website/static/img/resources/elastic/elasticsearch/machine-learning.png new file mode 100644 index 00000000..d69926ce Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/machine-learning.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/map-services.png b/website/static/img/resources/elastic/elasticsearch/map-services.png new file mode 100644 index 00000000..774d0c3c Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/map-services.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/maps.png b/website/static/img/resources/elastic/elasticsearch/maps.png new file mode 100644 index 00000000..5f597a9c Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/maps.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/monitoring.png b/website/static/img/resources/elastic/elasticsearch/monitoring.png new file mode 100644 index 00000000..00c9665c Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/monitoring.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/searchable-snapshots.png b/website/static/img/resources/elastic/elasticsearch/searchable-snapshots.png new file mode 100644 index 00000000..3fdd73d9 Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/searchable-snapshots.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/security-settings.png b/website/static/img/resources/elastic/elasticsearch/security-settings.png new file mode 100644 index 00000000..74a54816 Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/security-settings.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/sql.png b/website/static/img/resources/elastic/elasticsearch/sql.png new file mode 100644 index 00000000..ebb7fc3e Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/sql.png differ diff --git a/website/static/img/resources/elastic/elasticsearch/stack.png b/website/static/img/resources/elastic/elasticsearch/stack.png new file mode 100644 index 00000000..71e6651b Binary files /dev/null and b/website/static/img/resources/elastic/elasticsearch/stack.png differ diff --git a/website/static/img/resources/elastic/enterprisesearch/app-search.png b/website/static/img/resources/elastic/enterprisesearch/app-search.png new file mode 100644 index 00000000..a7217232 Binary files /dev/null and b/website/static/img/resources/elastic/enterprisesearch/app-search.png differ diff --git a/website/static/img/resources/elastic/enterprisesearch/crawler.png b/website/static/img/resources/elastic/enterprisesearch/crawler.png new file mode 100644 index 00000000..555801d0 Binary files /dev/null and b/website/static/img/resources/elastic/enterprisesearch/crawler.png differ diff --git a/website/static/img/resources/elastic/enterprisesearch/enterprise-search.png b/website/static/img/resources/elastic/enterprisesearch/enterprise-search.png new file mode 100644 index 00000000..6354b21c Binary files /dev/null and b/website/static/img/resources/elastic/enterprisesearch/enterprise-search.png differ diff --git a/website/static/img/resources/elastic/enterprisesearch/site-search.png b/website/static/img/resources/elastic/enterprisesearch/site-search.png new file mode 100644 index 00000000..eb41bb9c Binary files /dev/null and b/website/static/img/resources/elastic/enterprisesearch/site-search.png differ diff --git a/website/static/img/resources/elastic/enterprisesearch/workplace-search.png b/website/static/img/resources/elastic/enterprisesearch/workplace-search.png new file mode 100644 index 00000000..5e38b5e6 Binary files /dev/null and b/website/static/img/resources/elastic/enterprisesearch/workplace-search.png differ diff --git a/website/static/img/resources/elastic/observability/apm.png b/website/static/img/resources/elastic/observability/apm.png new file mode 100644 index 00000000..3b1ba284 Binary files /dev/null and b/website/static/img/resources/elastic/observability/apm.png differ diff --git a/website/static/img/resources/elastic/observability/logs.png b/website/static/img/resources/elastic/observability/logs.png new file mode 100644 index 00000000..2976ae21 Binary files /dev/null and b/website/static/img/resources/elastic/observability/logs.png differ diff --git a/website/static/img/resources/elastic/observability/metrics.png b/website/static/img/resources/elastic/observability/metrics.png new file mode 100644 index 00000000..bb354a07 Binary files /dev/null and b/website/static/img/resources/elastic/observability/metrics.png differ diff --git a/website/static/img/resources/elastic/observability/observability.png b/website/static/img/resources/elastic/observability/observability.png new file mode 100644 index 00000000..f4408894 Binary files /dev/null and b/website/static/img/resources/elastic/observability/observability.png differ diff --git a/website/static/img/resources/elastic/observability/uptime.png b/website/static/img/resources/elastic/observability/uptime.png new file mode 100644 index 00000000..f4e2709d Binary files /dev/null and b/website/static/img/resources/elastic/observability/uptime.png differ diff --git a/website/static/img/resources/elastic/orchestration/ece.png b/website/static/img/resources/elastic/orchestration/ece.png new file mode 100644 index 00000000..82629553 Binary files /dev/null and b/website/static/img/resources/elastic/orchestration/ece.png differ diff --git a/website/static/img/resources/elastic/orchestration/eck.png b/website/static/img/resources/elastic/orchestration/eck.png new file mode 100644 index 00000000..b5135efa Binary files /dev/null and b/website/static/img/resources/elastic/orchestration/eck.png differ diff --git a/website/static/img/resources/elastic/saas/cloud.png b/website/static/img/resources/elastic/saas/cloud.png new file mode 100644 index 00000000..92ee1c92 Binary files /dev/null and b/website/static/img/resources/elastic/saas/cloud.png differ diff --git a/website/static/img/resources/elastic/saas/elastic.png b/website/static/img/resources/elastic/saas/elastic.png new file mode 100644 index 00000000..d311d639 Binary files /dev/null and b/website/static/img/resources/elastic/saas/elastic.png differ diff --git a/website/static/img/resources/elastic/security/endpoint.png b/website/static/img/resources/elastic/security/endpoint.png new file mode 100644 index 00000000..91facf99 Binary files /dev/null and b/website/static/img/resources/elastic/security/endpoint.png differ diff --git a/website/static/img/resources/elastic/security/security.png b/website/static/img/resources/elastic/security/security.png new file mode 100644 index 00000000..ebf98d16 Binary files /dev/null and b/website/static/img/resources/elastic/security/security.png differ diff --git a/website/static/img/resources/elastic/security/siem.png b/website/static/img/resources/elastic/security/siem.png new file mode 100644 index 00000000..4024b3c0 Binary files /dev/null and b/website/static/img/resources/elastic/security/siem.png differ diff --git a/website/static/img/resources/elastic/security/xdr.png b/website/static/img/resources/elastic/security/xdr.png new file mode 100644 index 00000000..972f1f16 Binary files /dev/null and b/website/static/img/resources/elastic/security/xdr.png differ diff --git a/website/static/img/resources/firebase/base/firebase.png b/website/static/img/resources/firebase/base/firebase.png new file mode 100644 index 00000000..2cfd1dfe Binary files /dev/null and b/website/static/img/resources/firebase/base/firebase.png differ diff --git a/website/static/img/resources/firebase/develop/authentication.png b/website/static/img/resources/firebase/develop/authentication.png new file mode 100644 index 00000000..c6a47c5d Binary files /dev/null and b/website/static/img/resources/firebase/develop/authentication.png differ diff --git a/website/static/img/resources/firebase/develop/firestore.png b/website/static/img/resources/firebase/develop/firestore.png new file mode 100644 index 00000000..d8d3ab6a Binary files /dev/null and b/website/static/img/resources/firebase/develop/firestore.png differ diff --git a/website/static/img/resources/firebase/develop/functions.png b/website/static/img/resources/firebase/develop/functions.png new file mode 100644 index 00000000..29fa235d Binary files /dev/null and b/website/static/img/resources/firebase/develop/functions.png differ diff --git a/website/static/img/resources/firebase/develop/hosting.png b/website/static/img/resources/firebase/develop/hosting.png new file mode 100644 index 00000000..792bbc05 Binary files /dev/null and b/website/static/img/resources/firebase/develop/hosting.png differ diff --git a/website/static/img/resources/firebase/develop/ml-kit.png b/website/static/img/resources/firebase/develop/ml-kit.png new file mode 100644 index 00000000..b71dda54 Binary files /dev/null and b/website/static/img/resources/firebase/develop/ml-kit.png differ diff --git a/website/static/img/resources/firebase/develop/realtime-database.png b/website/static/img/resources/firebase/develop/realtime-database.png new file mode 100644 index 00000000..b9eb9d59 Binary files /dev/null and b/website/static/img/resources/firebase/develop/realtime-database.png differ diff --git a/website/static/img/resources/firebase/develop/storage.png b/website/static/img/resources/firebase/develop/storage.png new file mode 100644 index 00000000..5e7679aa Binary files /dev/null and b/website/static/img/resources/firebase/develop/storage.png differ diff --git a/website/static/img/resources/firebase/extentions/extensions.png b/website/static/img/resources/firebase/extentions/extensions.png new file mode 100644 index 00000000..4786010e Binary files /dev/null and b/website/static/img/resources/firebase/extentions/extensions.png differ diff --git a/website/static/img/resources/firebase/grow/ab-testing.png b/website/static/img/resources/firebase/grow/ab-testing.png new file mode 100644 index 00000000..19c0b7bc Binary files /dev/null and b/website/static/img/resources/firebase/grow/ab-testing.png differ diff --git a/website/static/img/resources/firebase/grow/app-indexing.png b/website/static/img/resources/firebase/grow/app-indexing.png new file mode 100644 index 00000000..36faa610 Binary files /dev/null and b/website/static/img/resources/firebase/grow/app-indexing.png differ diff --git a/website/static/img/resources/firebase/grow/dynamic-links.png b/website/static/img/resources/firebase/grow/dynamic-links.png new file mode 100644 index 00000000..5d47bff1 Binary files /dev/null and b/website/static/img/resources/firebase/grow/dynamic-links.png differ diff --git a/website/static/img/resources/firebase/grow/in-app-messaging.png b/website/static/img/resources/firebase/grow/in-app-messaging.png new file mode 100644 index 00000000..a76ca8ac Binary files /dev/null and b/website/static/img/resources/firebase/grow/in-app-messaging.png differ diff --git a/website/static/img/resources/firebase/grow/invites.png b/website/static/img/resources/firebase/grow/invites.png new file mode 100644 index 00000000..265352d6 Binary files /dev/null and b/website/static/img/resources/firebase/grow/invites.png differ diff --git a/website/static/img/resources/firebase/grow/messaging.png b/website/static/img/resources/firebase/grow/messaging.png new file mode 100644 index 00000000..a9a9656f Binary files /dev/null and b/website/static/img/resources/firebase/grow/messaging.png differ diff --git a/website/static/img/resources/firebase/grow/predictions.png b/website/static/img/resources/firebase/grow/predictions.png new file mode 100644 index 00000000..21929cb1 Binary files /dev/null and b/website/static/img/resources/firebase/grow/predictions.png differ diff --git a/website/static/img/resources/firebase/grow/remote-config.png b/website/static/img/resources/firebase/grow/remote-config.png new file mode 100644 index 00000000..d6f795ea Binary files /dev/null and b/website/static/img/resources/firebase/grow/remote-config.png differ diff --git a/website/static/img/resources/firebase/quality/app-distribution.png b/website/static/img/resources/firebase/quality/app-distribution.png new file mode 100644 index 00000000..347fa61b Binary files /dev/null and b/website/static/img/resources/firebase/quality/app-distribution.png differ diff --git a/website/static/img/resources/firebase/quality/crash-reporting.png b/website/static/img/resources/firebase/quality/crash-reporting.png new file mode 100644 index 00000000..790f3bd9 Binary files /dev/null and b/website/static/img/resources/firebase/quality/crash-reporting.png differ diff --git a/website/static/img/resources/firebase/quality/crashlytics.png b/website/static/img/resources/firebase/quality/crashlytics.png new file mode 100644 index 00000000..d97b0389 Binary files /dev/null and b/website/static/img/resources/firebase/quality/crashlytics.png differ diff --git a/website/static/img/resources/firebase/quality/performance-monitoring.png b/website/static/img/resources/firebase/quality/performance-monitoring.png new file mode 100644 index 00000000..ebaf85b4 Binary files /dev/null and b/website/static/img/resources/firebase/quality/performance-monitoring.png differ diff --git a/website/static/img/resources/firebase/quality/test-lab.png b/website/static/img/resources/firebase/quality/test-lab.png new file mode 100644 index 00000000..229bdee1 Binary files /dev/null and b/website/static/img/resources/firebase/quality/test-lab.png differ diff --git a/website/static/img/resources/gcp/analytics/bigquery.png b/website/static/img/resources/gcp/analytics/bigquery.png new file mode 100644 index 00000000..d058cf4a Binary files /dev/null and b/website/static/img/resources/gcp/analytics/bigquery.png differ diff --git a/website/static/img/resources/gcp/analytics/composer.png b/website/static/img/resources/gcp/analytics/composer.png new file mode 100644 index 00000000..30f88542 Binary files /dev/null and b/website/static/img/resources/gcp/analytics/composer.png differ diff --git a/website/static/img/resources/gcp/analytics/data-catalog.png b/website/static/img/resources/gcp/analytics/data-catalog.png new file mode 100644 index 00000000..d668f10a Binary files /dev/null and b/website/static/img/resources/gcp/analytics/data-catalog.png differ diff --git a/website/static/img/resources/gcp/analytics/data-fusion.png b/website/static/img/resources/gcp/analytics/data-fusion.png new file mode 100644 index 00000000..7ff73d0c Binary files /dev/null and b/website/static/img/resources/gcp/analytics/data-fusion.png differ diff --git a/website/static/img/resources/gcp/analytics/dataflow.png b/website/static/img/resources/gcp/analytics/dataflow.png new file mode 100644 index 00000000..75361dd4 Binary files /dev/null and b/website/static/img/resources/gcp/analytics/dataflow.png differ diff --git a/website/static/img/resources/gcp/analytics/datalab.png b/website/static/img/resources/gcp/analytics/datalab.png new file mode 100644 index 00000000..3a16a45c Binary files /dev/null and b/website/static/img/resources/gcp/analytics/datalab.png differ diff --git a/website/static/img/resources/gcp/analytics/dataprep.png b/website/static/img/resources/gcp/analytics/dataprep.png new file mode 100644 index 00000000..9ae555d0 Binary files /dev/null and b/website/static/img/resources/gcp/analytics/dataprep.png differ diff --git a/website/static/img/resources/gcp/analytics/dataproc.png b/website/static/img/resources/gcp/analytics/dataproc.png new file mode 100644 index 00000000..38cdf10f Binary files /dev/null and b/website/static/img/resources/gcp/analytics/dataproc.png differ diff --git a/website/static/img/resources/gcp/analytics/genomics.png b/website/static/img/resources/gcp/analytics/genomics.png new file mode 100644 index 00000000..3a7ff933 Binary files /dev/null and b/website/static/img/resources/gcp/analytics/genomics.png differ diff --git a/website/static/img/resources/gcp/analytics/pubsub.png b/website/static/img/resources/gcp/analytics/pubsub.png new file mode 100644 index 00000000..72c3396e Binary files /dev/null and b/website/static/img/resources/gcp/analytics/pubsub.png differ diff --git a/website/static/img/resources/gcp/api/api-gateway.png b/website/static/img/resources/gcp/api/api-gateway.png new file mode 100644 index 00000000..a3ec6f35 Binary files /dev/null and b/website/static/img/resources/gcp/api/api-gateway.png differ diff --git a/website/static/img/resources/gcp/api/apigee.png b/website/static/img/resources/gcp/api/apigee.png new file mode 100644 index 00000000..961c4a72 Binary files /dev/null and b/website/static/img/resources/gcp/api/apigee.png differ diff --git a/website/static/img/resources/gcp/api/endpoints.png b/website/static/img/resources/gcp/api/endpoints.png new file mode 100644 index 00000000..788799cd Binary files /dev/null and b/website/static/img/resources/gcp/api/endpoints.png differ diff --git a/website/static/img/resources/gcp/compute/app-engine.png b/website/static/img/resources/gcp/compute/app-engine.png new file mode 100644 index 00000000..eac63d76 Binary files /dev/null and b/website/static/img/resources/gcp/compute/app-engine.png differ diff --git a/website/static/img/resources/gcp/compute/compute-engine.png b/website/static/img/resources/gcp/compute/compute-engine.png new file mode 100644 index 00000000..36c0b4a1 Binary files /dev/null and b/website/static/img/resources/gcp/compute/compute-engine.png differ diff --git a/website/static/img/resources/gcp/compute/container-optimized-os.png b/website/static/img/resources/gcp/compute/container-optimized-os.png new file mode 100644 index 00000000..f4e70cff Binary files /dev/null and b/website/static/img/resources/gcp/compute/container-optimized-os.png differ diff --git a/website/static/img/resources/gcp/compute/functions.png b/website/static/img/resources/gcp/compute/functions.png new file mode 100644 index 00000000..79f345d8 Binary files /dev/null and b/website/static/img/resources/gcp/compute/functions.png differ diff --git a/website/static/img/resources/gcp/compute/gke-on-prem.png b/website/static/img/resources/gcp/compute/gke-on-prem.png new file mode 100644 index 00000000..bf03d6fc Binary files /dev/null and b/website/static/img/resources/gcp/compute/gke-on-prem.png differ diff --git a/website/static/img/resources/gcp/compute/gpu.png b/website/static/img/resources/gcp/compute/gpu.png new file mode 100644 index 00000000..58f41631 Binary files /dev/null and b/website/static/img/resources/gcp/compute/gpu.png differ diff --git a/website/static/img/resources/gcp/compute/kubernetes-engine.png b/website/static/img/resources/gcp/compute/kubernetes-engine.png new file mode 100644 index 00000000..9f18fa58 Binary files /dev/null and b/website/static/img/resources/gcp/compute/kubernetes-engine.png differ diff --git a/website/static/img/resources/gcp/compute/run.png b/website/static/img/resources/gcp/compute/run.png new file mode 100644 index 00000000..431e64b6 Binary files /dev/null and b/website/static/img/resources/gcp/compute/run.png differ diff --git a/website/static/img/resources/gcp/database/bigtable.png b/website/static/img/resources/gcp/database/bigtable.png new file mode 100644 index 00000000..4e541a01 Binary files /dev/null and b/website/static/img/resources/gcp/database/bigtable.png differ diff --git a/website/static/img/resources/gcp/database/datastore.png b/website/static/img/resources/gcp/database/datastore.png new file mode 100644 index 00000000..efceb403 Binary files /dev/null and b/website/static/img/resources/gcp/database/datastore.png differ diff --git a/website/static/img/resources/gcp/database/firestore.png b/website/static/img/resources/gcp/database/firestore.png new file mode 100644 index 00000000..c7d54745 Binary files /dev/null and b/website/static/img/resources/gcp/database/firestore.png differ diff --git a/website/static/img/resources/gcp/database/memorystore.png b/website/static/img/resources/gcp/database/memorystore.png new file mode 100644 index 00000000..db4ea12b Binary files /dev/null and b/website/static/img/resources/gcp/database/memorystore.png differ diff --git a/website/static/img/resources/gcp/database/spanner.png b/website/static/img/resources/gcp/database/spanner.png new file mode 100644 index 00000000..60c68de2 Binary files /dev/null and b/website/static/img/resources/gcp/database/spanner.png differ diff --git a/website/static/img/resources/gcp/database/sql.png b/website/static/img/resources/gcp/database/sql.png new file mode 100644 index 00000000..b009f553 Binary files /dev/null and b/website/static/img/resources/gcp/database/sql.png differ diff --git a/website/static/img/resources/gcp/devtools/build.png b/website/static/img/resources/gcp/devtools/build.png new file mode 100644 index 00000000..2bebdd1b Binary files /dev/null and b/website/static/img/resources/gcp/devtools/build.png differ diff --git a/website/static/img/resources/gcp/devtools/code-for-intellij.png b/website/static/img/resources/gcp/devtools/code-for-intellij.png new file mode 100644 index 00000000..2c1dee8b Binary files /dev/null and b/website/static/img/resources/gcp/devtools/code-for-intellij.png differ diff --git a/website/static/img/resources/gcp/devtools/code.png b/website/static/img/resources/gcp/devtools/code.png new file mode 100644 index 00000000..f7ea8a19 Binary files /dev/null and b/website/static/img/resources/gcp/devtools/code.png differ diff --git a/website/static/img/resources/gcp/devtools/container-registry.png b/website/static/img/resources/gcp/devtools/container-registry.png new file mode 100644 index 00000000..67d7e3c4 Binary files /dev/null and b/website/static/img/resources/gcp/devtools/container-registry.png differ diff --git a/website/static/img/resources/gcp/devtools/gradle-app-engine-plugin.png b/website/static/img/resources/gcp/devtools/gradle-app-engine-plugin.png new file mode 100644 index 00000000..2c1dee8b Binary files /dev/null and b/website/static/img/resources/gcp/devtools/gradle-app-engine-plugin.png differ diff --git a/website/static/img/resources/gcp/devtools/ide-plugins.png b/website/static/img/resources/gcp/devtools/ide-plugins.png new file mode 100644 index 00000000..5b01a7b8 Binary files /dev/null and b/website/static/img/resources/gcp/devtools/ide-plugins.png differ diff --git a/website/static/img/resources/gcp/devtools/maven-app-engine-plugin.png b/website/static/img/resources/gcp/devtools/maven-app-engine-plugin.png new file mode 100644 index 00000000..2c1dee8b Binary files /dev/null and b/website/static/img/resources/gcp/devtools/maven-app-engine-plugin.png differ diff --git a/website/static/img/resources/gcp/devtools/scheduler.png b/website/static/img/resources/gcp/devtools/scheduler.png new file mode 100644 index 00000000..cfb746b8 Binary files /dev/null and b/website/static/img/resources/gcp/devtools/scheduler.png differ diff --git a/website/static/img/resources/gcp/devtools/sdk.png b/website/static/img/resources/gcp/devtools/sdk.png new file mode 100644 index 00000000..2c1dee8b Binary files /dev/null and b/website/static/img/resources/gcp/devtools/sdk.png differ diff --git a/website/static/img/resources/gcp/devtools/source-repositories.png b/website/static/img/resources/gcp/devtools/source-repositories.png new file mode 100644 index 00000000..2c1dee8b Binary files /dev/null and b/website/static/img/resources/gcp/devtools/source-repositories.png differ diff --git a/website/static/img/resources/gcp/devtools/tasks.png b/website/static/img/resources/gcp/devtools/tasks.png new file mode 100644 index 00000000..c4165e5e Binary files /dev/null and b/website/static/img/resources/gcp/devtools/tasks.png differ diff --git a/website/static/img/resources/gcp/devtools/test-lab.png b/website/static/img/resources/gcp/devtools/test-lab.png new file mode 100644 index 00000000..1f626613 Binary files /dev/null and b/website/static/img/resources/gcp/devtools/test-lab.png differ diff --git a/website/static/img/resources/gcp/devtools/tools-for-eclipse.png b/website/static/img/resources/gcp/devtools/tools-for-eclipse.png new file mode 100644 index 00000000..2c1dee8b Binary files /dev/null and b/website/static/img/resources/gcp/devtools/tools-for-eclipse.png differ diff --git a/website/static/img/resources/gcp/devtools/tools-for-powershell.png b/website/static/img/resources/gcp/devtools/tools-for-powershell.png new file mode 100644 index 00000000..5b01a7b8 Binary files /dev/null and b/website/static/img/resources/gcp/devtools/tools-for-powershell.png differ diff --git a/website/static/img/resources/gcp/devtools/tools-for-visual-studio.png b/website/static/img/resources/gcp/devtools/tools-for-visual-studio.png new file mode 100644 index 00000000..5b01a7b8 Binary files /dev/null and b/website/static/img/resources/gcp/devtools/tools-for-visual-studio.png differ diff --git a/website/static/img/resources/gcp/iot/iot-core.png b/website/static/img/resources/gcp/iot/iot-core.png new file mode 100644 index 00000000..cda82392 Binary files /dev/null and b/website/static/img/resources/gcp/iot/iot-core.png differ diff --git a/website/static/img/resources/gcp/migration/transfer-appliance.png b/website/static/img/resources/gcp/migration/transfer-appliance.png new file mode 100644 index 00000000..e42d0ce4 Binary files /dev/null and b/website/static/img/resources/gcp/migration/transfer-appliance.png differ diff --git a/website/static/img/resources/gcp/ml/advanced-solutions-lab.png b/website/static/img/resources/gcp/ml/advanced-solutions-lab.png new file mode 100644 index 00000000..1da72ca3 Binary files /dev/null and b/website/static/img/resources/gcp/ml/advanced-solutions-lab.png differ diff --git a/website/static/img/resources/gcp/ml/ai-hub.png b/website/static/img/resources/gcp/ml/ai-hub.png new file mode 100644 index 00000000..9662da8c Binary files /dev/null and b/website/static/img/resources/gcp/ml/ai-hub.png differ diff --git a/website/static/img/resources/gcp/ml/ai-platform-data-labeling-service.png b/website/static/img/resources/gcp/ml/ai-platform-data-labeling-service.png new file mode 100644 index 00000000..631720a7 Binary files /dev/null and b/website/static/img/resources/gcp/ml/ai-platform-data-labeling-service.png differ diff --git a/website/static/img/resources/gcp/ml/ai-platform.png b/website/static/img/resources/gcp/ml/ai-platform.png new file mode 100644 index 00000000..92cb26f3 Binary files /dev/null and b/website/static/img/resources/gcp/ml/ai-platform.png differ diff --git a/website/static/img/resources/gcp/ml/automl-natural-language.png b/website/static/img/resources/gcp/ml/automl-natural-language.png new file mode 100644 index 00000000..95ae4314 Binary files /dev/null and b/website/static/img/resources/gcp/ml/automl-natural-language.png differ diff --git a/website/static/img/resources/gcp/ml/automl-tables.png b/website/static/img/resources/gcp/ml/automl-tables.png new file mode 100644 index 00000000..2f794285 Binary files /dev/null and b/website/static/img/resources/gcp/ml/automl-tables.png differ diff --git a/website/static/img/resources/gcp/ml/automl-translation.png b/website/static/img/resources/gcp/ml/automl-translation.png new file mode 100644 index 00000000..b0846062 Binary files /dev/null and b/website/static/img/resources/gcp/ml/automl-translation.png differ diff --git a/website/static/img/resources/gcp/ml/automl-video-intelligence.png b/website/static/img/resources/gcp/ml/automl-video-intelligence.png new file mode 100644 index 00000000..8f2f4b6c Binary files /dev/null and b/website/static/img/resources/gcp/ml/automl-video-intelligence.png differ diff --git a/website/static/img/resources/gcp/ml/automl-vision.png b/website/static/img/resources/gcp/ml/automl-vision.png new file mode 100644 index 00000000..b538f97b Binary files /dev/null and b/website/static/img/resources/gcp/ml/automl-vision.png differ diff --git a/website/static/img/resources/gcp/ml/automl.png b/website/static/img/resources/gcp/ml/automl.png new file mode 100644 index 00000000..1dedbdcf Binary files /dev/null and b/website/static/img/resources/gcp/ml/automl.png differ diff --git a/website/static/img/resources/gcp/ml/dialog-flow-enterprise-edition.png b/website/static/img/resources/gcp/ml/dialog-flow-enterprise-edition.png new file mode 100644 index 00000000..5d93e743 Binary files /dev/null and b/website/static/img/resources/gcp/ml/dialog-flow-enterprise-edition.png differ diff --git a/website/static/img/resources/gcp/ml/inference-api.png b/website/static/img/resources/gcp/ml/inference-api.png new file mode 100644 index 00000000..4b2fd909 Binary files /dev/null and b/website/static/img/resources/gcp/ml/inference-api.png differ diff --git a/website/static/img/resources/gcp/ml/jobs-api.png b/website/static/img/resources/gcp/ml/jobs-api.png new file mode 100644 index 00000000..a28ab6e2 Binary files /dev/null and b/website/static/img/resources/gcp/ml/jobs-api.png differ diff --git a/website/static/img/resources/gcp/ml/natural-language-api.png b/website/static/img/resources/gcp/ml/natural-language-api.png new file mode 100644 index 00000000..681d65aa Binary files /dev/null and b/website/static/img/resources/gcp/ml/natural-language-api.png differ diff --git a/website/static/img/resources/gcp/ml/recommendations-ai.png b/website/static/img/resources/gcp/ml/recommendations-ai.png new file mode 100644 index 00000000..4bdd23a9 Binary files /dev/null and b/website/static/img/resources/gcp/ml/recommendations-ai.png differ diff --git a/website/static/img/resources/gcp/ml/speech-to-text.png b/website/static/img/resources/gcp/ml/speech-to-text.png new file mode 100644 index 00000000..3b96164c Binary files /dev/null and b/website/static/img/resources/gcp/ml/speech-to-text.png differ diff --git a/website/static/img/resources/gcp/ml/text-to-speech.png b/website/static/img/resources/gcp/ml/text-to-speech.png new file mode 100644 index 00000000..9487bf5c Binary files /dev/null and b/website/static/img/resources/gcp/ml/text-to-speech.png differ diff --git a/website/static/img/resources/gcp/ml/tpu.png b/website/static/img/resources/gcp/ml/tpu.png new file mode 100644 index 00000000..14548cff Binary files /dev/null and b/website/static/img/resources/gcp/ml/tpu.png differ diff --git a/website/static/img/resources/gcp/ml/translation-api.png b/website/static/img/resources/gcp/ml/translation-api.png new file mode 100644 index 00000000..be8dfbbd Binary files /dev/null and b/website/static/img/resources/gcp/ml/translation-api.png differ diff --git a/website/static/img/resources/gcp/ml/video-intelligence-api.png b/website/static/img/resources/gcp/ml/video-intelligence-api.png new file mode 100644 index 00000000..f42cdb67 Binary files /dev/null and b/website/static/img/resources/gcp/ml/video-intelligence-api.png differ diff --git a/website/static/img/resources/gcp/ml/vision-api.png b/website/static/img/resources/gcp/ml/vision-api.png new file mode 100644 index 00000000..e98aae2b Binary files /dev/null and b/website/static/img/resources/gcp/ml/vision-api.png differ diff --git a/website/static/img/resources/gcp/network/armor.png b/website/static/img/resources/gcp/network/armor.png new file mode 100644 index 00000000..d6d0c1f4 Binary files /dev/null and b/website/static/img/resources/gcp/network/armor.png differ diff --git a/website/static/img/resources/gcp/network/cdn.png b/website/static/img/resources/gcp/network/cdn.png new file mode 100644 index 00000000..6edecfcb Binary files /dev/null and b/website/static/img/resources/gcp/network/cdn.png differ diff --git a/website/static/img/resources/gcp/network/dedicated-interconnect.png b/website/static/img/resources/gcp/network/dedicated-interconnect.png new file mode 100644 index 00000000..b692f8a0 Binary files /dev/null and b/website/static/img/resources/gcp/network/dedicated-interconnect.png differ diff --git a/website/static/img/resources/gcp/network/dns.png b/website/static/img/resources/gcp/network/dns.png new file mode 100644 index 00000000..8ddbba80 Binary files /dev/null and b/website/static/img/resources/gcp/network/dns.png differ diff --git a/website/static/img/resources/gcp/network/external-ip-addresses.png b/website/static/img/resources/gcp/network/external-ip-addresses.png new file mode 100644 index 00000000..1054f666 Binary files /dev/null and b/website/static/img/resources/gcp/network/external-ip-addresses.png differ diff --git a/website/static/img/resources/gcp/network/firewall-rules.png b/website/static/img/resources/gcp/network/firewall-rules.png new file mode 100644 index 00000000..4a6e59f4 Binary files /dev/null and b/website/static/img/resources/gcp/network/firewall-rules.png differ diff --git a/website/static/img/resources/gcp/network/load-balancing.png b/website/static/img/resources/gcp/network/load-balancing.png new file mode 100644 index 00000000..9c1d9682 Binary files /dev/null and b/website/static/img/resources/gcp/network/load-balancing.png differ diff --git a/website/static/img/resources/gcp/network/nat.png b/website/static/img/resources/gcp/network/nat.png new file mode 100644 index 00000000..7fbae15b Binary files /dev/null and b/website/static/img/resources/gcp/network/nat.png differ diff --git a/website/static/img/resources/gcp/network/network.png b/website/static/img/resources/gcp/network/network.png new file mode 100644 index 00000000..62461f00 Binary files /dev/null and b/website/static/img/resources/gcp/network/network.png differ diff --git a/website/static/img/resources/gcp/network/partner-interconnect.png b/website/static/img/resources/gcp/network/partner-interconnect.png new file mode 100644 index 00000000..440a0a84 Binary files /dev/null and b/website/static/img/resources/gcp/network/partner-interconnect.png differ diff --git a/website/static/img/resources/gcp/network/premium-network-tier.png b/website/static/img/resources/gcp/network/premium-network-tier.png new file mode 100644 index 00000000..eea8e49e Binary files /dev/null and b/website/static/img/resources/gcp/network/premium-network-tier.png differ diff --git a/website/static/img/resources/gcp/network/router.png b/website/static/img/resources/gcp/network/router.png new file mode 100644 index 00000000..8c3873c9 Binary files /dev/null and b/website/static/img/resources/gcp/network/router.png differ diff --git a/website/static/img/resources/gcp/network/routes.png b/website/static/img/resources/gcp/network/routes.png new file mode 100644 index 00000000..d4a6690b Binary files /dev/null and b/website/static/img/resources/gcp/network/routes.png differ diff --git a/website/static/img/resources/gcp/network/standard-network-tier.png b/website/static/img/resources/gcp/network/standard-network-tier.png new file mode 100644 index 00000000..f4d3b1ba Binary files /dev/null and b/website/static/img/resources/gcp/network/standard-network-tier.png differ diff --git a/website/static/img/resources/gcp/network/traffic-director.png b/website/static/img/resources/gcp/network/traffic-director.png new file mode 100644 index 00000000..6657c634 Binary files /dev/null and b/website/static/img/resources/gcp/network/traffic-director.png differ diff --git a/website/static/img/resources/gcp/network/virtual-private-cloud.png b/website/static/img/resources/gcp/network/virtual-private-cloud.png new file mode 100644 index 00000000..f51d3430 Binary files /dev/null and b/website/static/img/resources/gcp/network/virtual-private-cloud.png differ diff --git a/website/static/img/resources/gcp/network/vpn.png b/website/static/img/resources/gcp/network/vpn.png new file mode 100644 index 00000000..aebc9cc9 Binary files /dev/null and b/website/static/img/resources/gcp/network/vpn.png differ diff --git a/website/static/img/resources/gcp/operations/logging.png b/website/static/img/resources/gcp/operations/logging.png new file mode 100644 index 00000000..71a7ceea Binary files /dev/null and b/website/static/img/resources/gcp/operations/logging.png differ diff --git a/website/static/img/resources/gcp/operations/monitoring.png b/website/static/img/resources/gcp/operations/monitoring.png new file mode 100644 index 00000000..63661e8d Binary files /dev/null and b/website/static/img/resources/gcp/operations/monitoring.png differ diff --git a/website/static/img/resources/gcp/security/iam.png b/website/static/img/resources/gcp/security/iam.png new file mode 100644 index 00000000..d6a37dd9 Binary files /dev/null and b/website/static/img/resources/gcp/security/iam.png differ diff --git a/website/static/img/resources/gcp/security/iap.png b/website/static/img/resources/gcp/security/iap.png new file mode 100644 index 00000000..a9df0ec0 Binary files /dev/null and b/website/static/img/resources/gcp/security/iap.png differ diff --git a/website/static/img/resources/gcp/security/key-management-service.png b/website/static/img/resources/gcp/security/key-management-service.png new file mode 100644 index 00000000..bd9039b9 Binary files /dev/null and b/website/static/img/resources/gcp/security/key-management-service.png differ diff --git a/website/static/img/resources/gcp/security/resource-manager.png b/website/static/img/resources/gcp/security/resource-manager.png new file mode 100644 index 00000000..d6a37dd9 Binary files /dev/null and b/website/static/img/resources/gcp/security/resource-manager.png differ diff --git a/website/static/img/resources/gcp/security/security-command-center.png b/website/static/img/resources/gcp/security/security-command-center.png new file mode 100644 index 00000000..e9d2c67b Binary files /dev/null and b/website/static/img/resources/gcp/security/security-command-center.png differ diff --git a/website/static/img/resources/gcp/security/security-scanner.png b/website/static/img/resources/gcp/security/security-scanner.png new file mode 100644 index 00000000..a76780db Binary files /dev/null and b/website/static/img/resources/gcp/security/security-scanner.png differ diff --git a/website/static/img/resources/gcp/storage/filestore.png b/website/static/img/resources/gcp/storage/filestore.png new file mode 100644 index 00000000..a8a23a48 Binary files /dev/null and b/website/static/img/resources/gcp/storage/filestore.png differ diff --git a/website/static/img/resources/gcp/storage/persistent-disk.png b/website/static/img/resources/gcp/storage/persistent-disk.png new file mode 100644 index 00000000..f492bbf7 Binary files /dev/null and b/website/static/img/resources/gcp/storage/persistent-disk.png differ diff --git a/website/static/img/resources/gcp/storage/storage.png b/website/static/img/resources/gcp/storage/storage.png new file mode 100644 index 00000000..a8bc0d91 Binary files /dev/null and b/website/static/img/resources/gcp/storage/storage.png differ diff --git a/website/static/img/resources/generic/blank/blank.png b/website/static/img/resources/generic/blank/blank.png new file mode 100644 index 00000000..98801cae Binary files /dev/null and b/website/static/img/resources/generic/blank/blank.png differ diff --git a/website/static/img/resources/generic/compute/rack.png b/website/static/img/resources/generic/compute/rack.png new file mode 100644 index 00000000..c749fdd2 Binary files /dev/null and b/website/static/img/resources/generic/compute/rack.png differ diff --git a/website/static/img/resources/generic/database/sql.png b/website/static/img/resources/generic/database/sql.png new file mode 100644 index 00000000..19bae99b Binary files /dev/null and b/website/static/img/resources/generic/database/sql.png differ diff --git a/website/static/img/resources/generic/device/mobile.png b/website/static/img/resources/generic/device/mobile.png new file mode 100644 index 00000000..75d942da Binary files /dev/null and b/website/static/img/resources/generic/device/mobile.png differ diff --git a/website/static/img/resources/generic/device/tablet.png b/website/static/img/resources/generic/device/tablet.png new file mode 100644 index 00000000..fd3bff4f Binary files /dev/null and b/website/static/img/resources/generic/device/tablet.png differ diff --git a/website/static/img/resources/generic/network/firewall.png b/website/static/img/resources/generic/network/firewall.png new file mode 100644 index 00000000..e6c21830 Binary files /dev/null and b/website/static/img/resources/generic/network/firewall.png differ diff --git a/website/static/img/resources/generic/network/router.png b/website/static/img/resources/generic/network/router.png new file mode 100644 index 00000000..377e2b55 Binary files /dev/null and b/website/static/img/resources/generic/network/router.png differ diff --git a/website/static/img/resources/generic/network/subnet.png b/website/static/img/resources/generic/network/subnet.png new file mode 100644 index 00000000..2808968e Binary files /dev/null and b/website/static/img/resources/generic/network/subnet.png differ diff --git a/website/static/img/resources/generic/network/switch.png b/website/static/img/resources/generic/network/switch.png new file mode 100644 index 00000000..9699b691 Binary files /dev/null and b/website/static/img/resources/generic/network/switch.png differ diff --git a/website/static/img/resources/generic/network/vpn.png b/website/static/img/resources/generic/network/vpn.png new file mode 100644 index 00000000..009e8437 Binary files /dev/null and b/website/static/img/resources/generic/network/vpn.png differ diff --git a/website/static/img/resources/generic/os/android.png b/website/static/img/resources/generic/os/android.png new file mode 100644 index 00000000..72eab86f Binary files /dev/null and b/website/static/img/resources/generic/os/android.png differ diff --git a/website/static/img/resources/generic/os/centos.png b/website/static/img/resources/generic/os/centos.png new file mode 100644 index 00000000..483eb992 Binary files /dev/null and b/website/static/img/resources/generic/os/centos.png differ diff --git a/website/static/img/resources/generic/os/debian.png b/website/static/img/resources/generic/os/debian.png new file mode 100644 index 00000000..5bd5edc5 Binary files /dev/null and b/website/static/img/resources/generic/os/debian.png differ diff --git a/website/static/img/resources/generic/os/ios.png b/website/static/img/resources/generic/os/ios.png new file mode 100644 index 00000000..f3d4e34e Binary files /dev/null and b/website/static/img/resources/generic/os/ios.png differ diff --git a/website/static/img/resources/generic/os/linux-general.png b/website/static/img/resources/generic/os/linux-general.png new file mode 100644 index 00000000..1e1a874d Binary files /dev/null and b/website/static/img/resources/generic/os/linux-general.png differ diff --git a/website/static/img/resources/generic/os/raspbian.png b/website/static/img/resources/generic/os/raspbian.png new file mode 100644 index 00000000..b93c4c64 Binary files /dev/null and b/website/static/img/resources/generic/os/raspbian.png differ diff --git a/website/static/img/resources/generic/os/red-hat.png b/website/static/img/resources/generic/os/red-hat.png new file mode 100644 index 00000000..48901816 Binary files /dev/null and b/website/static/img/resources/generic/os/red-hat.png differ diff --git a/website/static/img/resources/generic/os/suse.png b/website/static/img/resources/generic/os/suse.png new file mode 100644 index 00000000..3b9553c6 Binary files /dev/null and b/website/static/img/resources/generic/os/suse.png differ diff --git a/website/static/img/resources/generic/os/ubuntu.png b/website/static/img/resources/generic/os/ubuntu.png new file mode 100644 index 00000000..d1caf5ee Binary files /dev/null and b/website/static/img/resources/generic/os/ubuntu.png differ diff --git a/website/static/img/resources/generic/os/windows.png b/website/static/img/resources/generic/os/windows.png new file mode 100644 index 00000000..2ded497d Binary files /dev/null and b/website/static/img/resources/generic/os/windows.png differ diff --git a/website/static/img/resources/generic/place/datacenter.png b/website/static/img/resources/generic/place/datacenter.png new file mode 100644 index 00000000..064eaa8f Binary files /dev/null and b/website/static/img/resources/generic/place/datacenter.png differ diff --git a/website/static/img/resources/generic/storage/storage.png b/website/static/img/resources/generic/storage/storage.png new file mode 100644 index 00000000..3b302729 Binary files /dev/null and b/website/static/img/resources/generic/storage/storage.png differ diff --git a/website/static/img/resources/generic/virtualization/qemu.png b/website/static/img/resources/generic/virtualization/qemu.png new file mode 100644 index 00000000..39cf1f24 Binary files /dev/null and b/website/static/img/resources/generic/virtualization/qemu.png differ diff --git a/website/static/img/resources/generic/virtualization/virtualbox.png b/website/static/img/resources/generic/virtualization/virtualbox.png new file mode 100644 index 00000000..aefdbff0 Binary files /dev/null and b/website/static/img/resources/generic/virtualization/virtualbox.png differ diff --git a/website/static/img/resources/generic/virtualization/vmware.png b/website/static/img/resources/generic/virtualization/vmware.png new file mode 100644 index 00000000..189129c1 Binary files /dev/null and b/website/static/img/resources/generic/virtualization/vmware.png differ diff --git a/website/static/img/resources/generic/virtualization/xen.png b/website/static/img/resources/generic/virtualization/xen.png new file mode 100644 index 00000000..71655e1a Binary files /dev/null and b/website/static/img/resources/generic/virtualization/xen.png differ diff --git a/website/static/img/resources/ibm/analytics/analytics.png b/website/static/img/resources/ibm/analytics/analytics.png new file mode 100644 index 00000000..5a0b024a Binary files /dev/null and b/website/static/img/resources/ibm/analytics/analytics.png differ diff --git a/website/static/img/resources/ibm/analytics/data-integration.png b/website/static/img/resources/ibm/analytics/data-integration.png new file mode 100644 index 00000000..6cba3f02 Binary files /dev/null and b/website/static/img/resources/ibm/analytics/data-integration.png differ diff --git a/website/static/img/resources/ibm/analytics/data-repositories.png b/website/static/img/resources/ibm/analytics/data-repositories.png new file mode 100644 index 00000000..cd511228 Binary files /dev/null and b/website/static/img/resources/ibm/analytics/data-repositories.png differ diff --git a/website/static/img/resources/ibm/analytics/device-analytics.png b/website/static/img/resources/ibm/analytics/device-analytics.png new file mode 100644 index 00000000..1f3109a2 Binary files /dev/null and b/website/static/img/resources/ibm/analytics/device-analytics.png differ diff --git a/website/static/img/resources/ibm/analytics/streaming-computing.png b/website/static/img/resources/ibm/analytics/streaming-computing.png new file mode 100644 index 00000000..4eced106 Binary files /dev/null and b/website/static/img/resources/ibm/analytics/streaming-computing.png differ diff --git a/website/static/img/resources/ibm/applications/actionable-insight.png b/website/static/img/resources/ibm/applications/actionable-insight.png new file mode 100644 index 00000000..6cc05e12 Binary files /dev/null and b/website/static/img/resources/ibm/applications/actionable-insight.png differ diff --git a/website/static/img/resources/ibm/applications/annotate.png b/website/static/img/resources/ibm/applications/annotate.png new file mode 100644 index 00000000..07a7c9ae Binary files /dev/null and b/website/static/img/resources/ibm/applications/annotate.png differ diff --git a/website/static/img/resources/ibm/applications/api-developer-portal.png b/website/static/img/resources/ibm/applications/api-developer-portal.png new file mode 100644 index 00000000..e16d3dd1 Binary files /dev/null and b/website/static/img/resources/ibm/applications/api-developer-portal.png differ diff --git a/website/static/img/resources/ibm/applications/api-polyglot-runtimes.png b/website/static/img/resources/ibm/applications/api-polyglot-runtimes.png new file mode 100644 index 00000000..fc8de117 Binary files /dev/null and b/website/static/img/resources/ibm/applications/api-polyglot-runtimes.png differ diff --git a/website/static/img/resources/ibm/applications/app-server.png b/website/static/img/resources/ibm/applications/app-server.png new file mode 100644 index 00000000..00b43145 Binary files /dev/null and b/website/static/img/resources/ibm/applications/app-server.png differ diff --git a/website/static/img/resources/ibm/applications/application-logic.png b/website/static/img/resources/ibm/applications/application-logic.png new file mode 100644 index 00000000..4d6c19fb Binary files /dev/null and b/website/static/img/resources/ibm/applications/application-logic.png differ diff --git a/website/static/img/resources/ibm/applications/enterprise-applications.png b/website/static/img/resources/ibm/applications/enterprise-applications.png new file mode 100644 index 00000000..e42badea Binary files /dev/null and b/website/static/img/resources/ibm/applications/enterprise-applications.png differ diff --git a/website/static/img/resources/ibm/applications/index.png b/website/static/img/resources/ibm/applications/index.png new file mode 100644 index 00000000..82966910 Binary files /dev/null and b/website/static/img/resources/ibm/applications/index.png differ diff --git a/website/static/img/resources/ibm/applications/iot-application.png b/website/static/img/resources/ibm/applications/iot-application.png new file mode 100644 index 00000000..38a03e67 Binary files /dev/null and b/website/static/img/resources/ibm/applications/iot-application.png differ diff --git a/website/static/img/resources/ibm/applications/microservice.png b/website/static/img/resources/ibm/applications/microservice.png new file mode 100644 index 00000000..e0bbd371 Binary files /dev/null and b/website/static/img/resources/ibm/applications/microservice.png differ diff --git a/website/static/img/resources/ibm/applications/mobile-app.png b/website/static/img/resources/ibm/applications/mobile-app.png new file mode 100644 index 00000000..523aa498 Binary files /dev/null and b/website/static/img/resources/ibm/applications/mobile-app.png differ diff --git a/website/static/img/resources/ibm/applications/ontology.png b/website/static/img/resources/ibm/applications/ontology.png new file mode 100644 index 00000000..5ea679c8 Binary files /dev/null and b/website/static/img/resources/ibm/applications/ontology.png differ diff --git a/website/static/img/resources/ibm/applications/open-source-tools.png b/website/static/img/resources/ibm/applications/open-source-tools.png new file mode 100644 index 00000000..da9e0c05 Binary files /dev/null and b/website/static/img/resources/ibm/applications/open-source-tools.png differ diff --git a/website/static/img/resources/ibm/applications/runtime-services.png b/website/static/img/resources/ibm/applications/runtime-services.png new file mode 100644 index 00000000..c70dbace Binary files /dev/null and b/website/static/img/resources/ibm/applications/runtime-services.png differ diff --git a/website/static/img/resources/ibm/applications/saas-applications.png b/website/static/img/resources/ibm/applications/saas-applications.png new file mode 100644 index 00000000..2250997b Binary files /dev/null and b/website/static/img/resources/ibm/applications/saas-applications.png differ diff --git a/website/static/img/resources/ibm/applications/service-broker.png b/website/static/img/resources/ibm/applications/service-broker.png new file mode 100644 index 00000000..218b3b75 Binary files /dev/null and b/website/static/img/resources/ibm/applications/service-broker.png differ diff --git a/website/static/img/resources/ibm/applications/speech-to-text.png b/website/static/img/resources/ibm/applications/speech-to-text.png new file mode 100644 index 00000000..23988aba Binary files /dev/null and b/website/static/img/resources/ibm/applications/speech-to-text.png differ diff --git a/website/static/img/resources/ibm/applications/visual-recognition.png b/website/static/img/resources/ibm/applications/visual-recognition.png new file mode 100644 index 00000000..44939c5b Binary files /dev/null and b/website/static/img/resources/ibm/applications/visual-recognition.png differ diff --git a/website/static/img/resources/ibm/applications/visualization.png b/website/static/img/resources/ibm/applications/visualization.png new file mode 100644 index 00000000..c0ae690a Binary files /dev/null and b/website/static/img/resources/ibm/applications/visualization.png differ diff --git a/website/static/img/resources/ibm/blockchain/blockchain-developer.png b/website/static/img/resources/ibm/blockchain/blockchain-developer.png new file mode 100644 index 00000000..d535ac19 Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/blockchain-developer.png differ diff --git a/website/static/img/resources/ibm/blockchain/blockchain.png b/website/static/img/resources/ibm/blockchain/blockchain.png new file mode 100644 index 00000000..db0af98c Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/blockchain.png differ diff --git a/website/static/img/resources/ibm/blockchain/certificate-authority.png b/website/static/img/resources/ibm/blockchain/certificate-authority.png new file mode 100644 index 00000000..8d5964a1 Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/certificate-authority.png differ diff --git a/website/static/img/resources/ibm/blockchain/client-application.png b/website/static/img/resources/ibm/blockchain/client-application.png new file mode 100644 index 00000000..07c97036 Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/client-application.png differ diff --git a/website/static/img/resources/ibm/blockchain/communication.png b/website/static/img/resources/ibm/blockchain/communication.png new file mode 100644 index 00000000..a50ed874 Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/communication.png differ diff --git a/website/static/img/resources/ibm/blockchain/consensus.png b/website/static/img/resources/ibm/blockchain/consensus.png new file mode 100644 index 00000000..764baac3 Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/consensus.png differ diff --git a/website/static/img/resources/ibm/blockchain/event-listener.png b/website/static/img/resources/ibm/blockchain/event-listener.png new file mode 100644 index 00000000..9b025810 Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/event-listener.png differ diff --git a/website/static/img/resources/ibm/blockchain/event.png b/website/static/img/resources/ibm/blockchain/event.png new file mode 100644 index 00000000..1b7a39cd Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/event.png differ diff --git a/website/static/img/resources/ibm/blockchain/existing-enterprise-systems.png b/website/static/img/resources/ibm/blockchain/existing-enterprise-systems.png new file mode 100644 index 00000000..41a18046 Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/existing-enterprise-systems.png differ diff --git a/website/static/img/resources/ibm/blockchain/hyperledger-fabric.png b/website/static/img/resources/ibm/blockchain/hyperledger-fabric.png new file mode 100644 index 00000000..916c22fd Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/hyperledger-fabric.png differ diff --git a/website/static/img/resources/ibm/blockchain/key-management.png b/website/static/img/resources/ibm/blockchain/key-management.png new file mode 100644 index 00000000..9b81f431 Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/key-management.png differ diff --git a/website/static/img/resources/ibm/blockchain/ledger.png b/website/static/img/resources/ibm/blockchain/ledger.png new file mode 100644 index 00000000..4bb718b0 Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/ledger.png differ diff --git a/website/static/img/resources/ibm/blockchain/membership-services-provider-api.png b/website/static/img/resources/ibm/blockchain/membership-services-provider-api.png new file mode 100644 index 00000000..790113f4 Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/membership-services-provider-api.png differ diff --git a/website/static/img/resources/ibm/blockchain/membership.png b/website/static/img/resources/ibm/blockchain/membership.png new file mode 100644 index 00000000..c3ad05fb Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/membership.png differ diff --git a/website/static/img/resources/ibm/blockchain/message-bus.png b/website/static/img/resources/ibm/blockchain/message-bus.png new file mode 100644 index 00000000..807a14cf Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/message-bus.png differ diff --git a/website/static/img/resources/ibm/blockchain/node.png b/website/static/img/resources/ibm/blockchain/node.png new file mode 100644 index 00000000..332c881a Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/node.png differ diff --git a/website/static/img/resources/ibm/blockchain/services.png b/website/static/img/resources/ibm/blockchain/services.png new file mode 100644 index 00000000..9797f56e Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/services.png differ diff --git a/website/static/img/resources/ibm/blockchain/smart-contract.png b/website/static/img/resources/ibm/blockchain/smart-contract.png new file mode 100644 index 00000000..55508218 Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/smart-contract.png differ diff --git a/website/static/img/resources/ibm/blockchain/transaction-manager.png b/website/static/img/resources/ibm/blockchain/transaction-manager.png new file mode 100644 index 00000000..bb85a47a Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/transaction-manager.png differ diff --git a/website/static/img/resources/ibm/blockchain/wallet.png b/website/static/img/resources/ibm/blockchain/wallet.png new file mode 100644 index 00000000..772e2c86 Binary files /dev/null and b/website/static/img/resources/ibm/blockchain/wallet.png differ diff --git a/website/static/img/resources/ibm/compute/bare-metal-server.png b/website/static/img/resources/ibm/compute/bare-metal-server.png new file mode 100644 index 00000000..3dd53a05 Binary files /dev/null and b/website/static/img/resources/ibm/compute/bare-metal-server.png differ diff --git a/website/static/img/resources/ibm/compute/image-service.png b/website/static/img/resources/ibm/compute/image-service.png new file mode 100644 index 00000000..c64c97f6 Binary files /dev/null and b/website/static/img/resources/ibm/compute/image-service.png differ diff --git a/website/static/img/resources/ibm/compute/instance.png b/website/static/img/resources/ibm/compute/instance.png new file mode 100644 index 00000000..c606725f Binary files /dev/null and b/website/static/img/resources/ibm/compute/instance.png differ diff --git a/website/static/img/resources/ibm/compute/key.png b/website/static/img/resources/ibm/compute/key.png new file mode 100644 index 00000000..332bd123 Binary files /dev/null and b/website/static/img/resources/ibm/compute/key.png differ diff --git a/website/static/img/resources/ibm/compute/power-instance.png b/website/static/img/resources/ibm/compute/power-instance.png new file mode 100644 index 00000000..2441e6de Binary files /dev/null and b/website/static/img/resources/ibm/compute/power-instance.png differ diff --git a/website/static/img/resources/ibm/data/caches.png b/website/static/img/resources/ibm/data/caches.png new file mode 100644 index 00000000..aef8a63c Binary files /dev/null and b/website/static/img/resources/ibm/data/caches.png differ diff --git a/website/static/img/resources/ibm/data/cloud.png b/website/static/img/resources/ibm/data/cloud.png new file mode 100644 index 00000000..3f97fa1d Binary files /dev/null and b/website/static/img/resources/ibm/data/cloud.png differ diff --git a/website/static/img/resources/ibm/data/conversation-trained-deployed.png b/website/static/img/resources/ibm/data/conversation-trained-deployed.png new file mode 100644 index 00000000..0df3a862 Binary files /dev/null and b/website/static/img/resources/ibm/data/conversation-trained-deployed.png differ diff --git a/website/static/img/resources/ibm/data/data-services.png b/website/static/img/resources/ibm/data/data-services.png new file mode 100644 index 00000000..0969f748 Binary files /dev/null and b/website/static/img/resources/ibm/data/data-services.png differ diff --git a/website/static/img/resources/ibm/data/data-sources.png b/website/static/img/resources/ibm/data/data-sources.png new file mode 100644 index 00000000..93fdfc70 Binary files /dev/null and b/website/static/img/resources/ibm/data/data-sources.png differ diff --git a/website/static/img/resources/ibm/data/device-identity-service.png b/website/static/img/resources/ibm/data/device-identity-service.png new file mode 100644 index 00000000..6e900e69 Binary files /dev/null and b/website/static/img/resources/ibm/data/device-identity-service.png differ diff --git a/website/static/img/resources/ibm/data/device-registry.png b/website/static/img/resources/ibm/data/device-registry.png new file mode 100644 index 00000000..daffdb88 Binary files /dev/null and b/website/static/img/resources/ibm/data/device-registry.png differ diff --git a/website/static/img/resources/ibm/data/enterprise-data.png b/website/static/img/resources/ibm/data/enterprise-data.png new file mode 100644 index 00000000..767c3dde Binary files /dev/null and b/website/static/img/resources/ibm/data/enterprise-data.png differ diff --git a/website/static/img/resources/ibm/data/enterprise-user-directory.png b/website/static/img/resources/ibm/data/enterprise-user-directory.png new file mode 100644 index 00000000..e55d76a6 Binary files /dev/null and b/website/static/img/resources/ibm/data/enterprise-user-directory.png differ diff --git a/website/static/img/resources/ibm/data/file-repository.png b/website/static/img/resources/ibm/data/file-repository.png new file mode 100644 index 00000000..f39e948f Binary files /dev/null and b/website/static/img/resources/ibm/data/file-repository.png differ diff --git a/website/static/img/resources/ibm/data/ground-truth.png b/website/static/img/resources/ibm/data/ground-truth.png new file mode 100644 index 00000000..8dc410f2 Binary files /dev/null and b/website/static/img/resources/ibm/data/ground-truth.png differ diff --git a/website/static/img/resources/ibm/data/model.png b/website/static/img/resources/ibm/data/model.png new file mode 100644 index 00000000..7cc6b8ce Binary files /dev/null and b/website/static/img/resources/ibm/data/model.png differ diff --git a/website/static/img/resources/ibm/data/tms-data-interface.png b/website/static/img/resources/ibm/data/tms-data-interface.png new file mode 100644 index 00000000..b88e20f9 Binary files /dev/null and b/website/static/img/resources/ibm/data/tms-data-interface.png differ diff --git a/website/static/img/resources/ibm/devops/artifact-management.png b/website/static/img/resources/ibm/devops/artifact-management.png new file mode 100644 index 00000000..45be3b10 Binary files /dev/null and b/website/static/img/resources/ibm/devops/artifact-management.png differ diff --git a/website/static/img/resources/ibm/devops/build-test.png b/website/static/img/resources/ibm/devops/build-test.png new file mode 100644 index 00000000..f84ca437 Binary files /dev/null and b/website/static/img/resources/ibm/devops/build-test.png differ diff --git a/website/static/img/resources/ibm/devops/code-editor.png b/website/static/img/resources/ibm/devops/code-editor.png new file mode 100644 index 00000000..e7dabbde Binary files /dev/null and b/website/static/img/resources/ibm/devops/code-editor.png differ diff --git a/website/static/img/resources/ibm/devops/collaborative-development.png b/website/static/img/resources/ibm/devops/collaborative-development.png new file mode 100644 index 00000000..32e68e95 Binary files /dev/null and b/website/static/img/resources/ibm/devops/collaborative-development.png differ diff --git a/website/static/img/resources/ibm/devops/configuration-management.png b/website/static/img/resources/ibm/devops/configuration-management.png new file mode 100644 index 00000000..e80c25e5 Binary files /dev/null and b/website/static/img/resources/ibm/devops/configuration-management.png differ diff --git a/website/static/img/resources/ibm/devops/continuous-deploy.png b/website/static/img/resources/ibm/devops/continuous-deploy.png new file mode 100644 index 00000000..6f10680c Binary files /dev/null and b/website/static/img/resources/ibm/devops/continuous-deploy.png differ diff --git a/website/static/img/resources/ibm/devops/continuous-testing.png b/website/static/img/resources/ibm/devops/continuous-testing.png new file mode 100644 index 00000000..a97fe57c Binary files /dev/null and b/website/static/img/resources/ibm/devops/continuous-testing.png differ diff --git a/website/static/img/resources/ibm/devops/devops.png b/website/static/img/resources/ibm/devops/devops.png new file mode 100644 index 00000000..f6620067 Binary files /dev/null and b/website/static/img/resources/ibm/devops/devops.png differ diff --git a/website/static/img/resources/ibm/devops/provision.png b/website/static/img/resources/ibm/devops/provision.png new file mode 100644 index 00000000..1b6edb84 Binary files /dev/null and b/website/static/img/resources/ibm/devops/provision.png differ diff --git a/website/static/img/resources/ibm/devops/release-management.png b/website/static/img/resources/ibm/devops/release-management.png new file mode 100644 index 00000000..99d8f78d Binary files /dev/null and b/website/static/img/resources/ibm/devops/release-management.png differ diff --git a/website/static/img/resources/ibm/general/cloud-messaging.png b/website/static/img/resources/ibm/general/cloud-messaging.png new file mode 100644 index 00000000..f0d82943 Binary files /dev/null and b/website/static/img/resources/ibm/general/cloud-messaging.png differ diff --git a/website/static/img/resources/ibm/general/cloud-services.png b/website/static/img/resources/ibm/general/cloud-services.png new file mode 100644 index 00000000..01b3fa39 Binary files /dev/null and b/website/static/img/resources/ibm/general/cloud-services.png differ diff --git a/website/static/img/resources/ibm/general/cloudant.png b/website/static/img/resources/ibm/general/cloudant.png new file mode 100644 index 00000000..7b62f807 Binary files /dev/null and b/website/static/img/resources/ibm/general/cloudant.png differ diff --git a/website/static/img/resources/ibm/general/cognitive-services.png b/website/static/img/resources/ibm/general/cognitive-services.png new file mode 100644 index 00000000..51ff39b9 Binary files /dev/null and b/website/static/img/resources/ibm/general/cognitive-services.png differ diff --git a/website/static/img/resources/ibm/general/data-security.png b/website/static/img/resources/ibm/general/data-security.png new file mode 100644 index 00000000..a9471728 Binary files /dev/null and b/website/static/img/resources/ibm/general/data-security.png differ diff --git a/website/static/img/resources/ibm/general/enterprise.png b/website/static/img/resources/ibm/general/enterprise.png new file mode 100644 index 00000000..6cc34790 Binary files /dev/null and b/website/static/img/resources/ibm/general/enterprise.png differ diff --git a/website/static/img/resources/ibm/general/governance-risk-compliance.png b/website/static/img/resources/ibm/general/governance-risk-compliance.png new file mode 100644 index 00000000..af4c2c9c Binary files /dev/null and b/website/static/img/resources/ibm/general/governance-risk-compliance.png differ diff --git a/website/static/img/resources/ibm/general/ibm-containers.png b/website/static/img/resources/ibm/general/ibm-containers.png new file mode 100644 index 00000000..216eae21 Binary files /dev/null and b/website/static/img/resources/ibm/general/ibm-containers.png differ diff --git a/website/static/img/resources/ibm/general/ibm-public-cloud.png b/website/static/img/resources/ibm/general/ibm-public-cloud.png new file mode 100644 index 00000000..ae95534b Binary files /dev/null and b/website/static/img/resources/ibm/general/ibm-public-cloud.png differ diff --git a/website/static/img/resources/ibm/general/identity-access-management.png b/website/static/img/resources/ibm/general/identity-access-management.png new file mode 100644 index 00000000..ed499fe4 Binary files /dev/null and b/website/static/img/resources/ibm/general/identity-access-management.png differ diff --git a/website/static/img/resources/ibm/general/identity-provider.png b/website/static/img/resources/ibm/general/identity-provider.png new file mode 100644 index 00000000..0eca324a Binary files /dev/null and b/website/static/img/resources/ibm/general/identity-provider.png differ diff --git a/website/static/img/resources/ibm/general/infrastructure-security.png b/website/static/img/resources/ibm/general/infrastructure-security.png new file mode 100644 index 00000000..660b93b4 Binary files /dev/null and b/website/static/img/resources/ibm/general/infrastructure-security.png differ diff --git a/website/static/img/resources/ibm/general/internet.png b/website/static/img/resources/ibm/general/internet.png new file mode 100644 index 00000000..91714467 Binary files /dev/null and b/website/static/img/resources/ibm/general/internet.png differ diff --git a/website/static/img/resources/ibm/general/iot-cloud.png b/website/static/img/resources/ibm/general/iot-cloud.png new file mode 100644 index 00000000..990fdc9f Binary files /dev/null and b/website/static/img/resources/ibm/general/iot-cloud.png differ diff --git a/website/static/img/resources/ibm/general/microservices-application.png b/website/static/img/resources/ibm/general/microservices-application.png new file mode 100644 index 00000000..3ddbe108 Binary files /dev/null and b/website/static/img/resources/ibm/general/microservices-application.png differ diff --git a/website/static/img/resources/ibm/general/microservices-mesh.png b/website/static/img/resources/ibm/general/microservices-mesh.png new file mode 100644 index 00000000..0b57d52c Binary files /dev/null and b/website/static/img/resources/ibm/general/microservices-mesh.png differ diff --git a/website/static/img/resources/ibm/general/monitoring-logging.png b/website/static/img/resources/ibm/general/monitoring-logging.png new file mode 100644 index 00000000..33de7743 Binary files /dev/null and b/website/static/img/resources/ibm/general/monitoring-logging.png differ diff --git a/website/static/img/resources/ibm/general/monitoring.png b/website/static/img/resources/ibm/general/monitoring.png new file mode 100644 index 00000000..1c2946d5 Binary files /dev/null and b/website/static/img/resources/ibm/general/monitoring.png differ diff --git a/website/static/img/resources/ibm/general/object-storage.png b/website/static/img/resources/ibm/general/object-storage.png new file mode 100644 index 00000000..ad26d4c4 Binary files /dev/null and b/website/static/img/resources/ibm/general/object-storage.png differ diff --git a/website/static/img/resources/ibm/general/offline-capabilities.png b/website/static/img/resources/ibm/general/offline-capabilities.png new file mode 100644 index 00000000..f36cd2ad Binary files /dev/null and b/website/static/img/resources/ibm/general/offline-capabilities.png differ diff --git a/website/static/img/resources/ibm/general/openwhisk.png b/website/static/img/resources/ibm/general/openwhisk.png new file mode 100644 index 00000000..3eb6c02d Binary files /dev/null and b/website/static/img/resources/ibm/general/openwhisk.png differ diff --git a/website/static/img/resources/ibm/general/peer-cloud.png b/website/static/img/resources/ibm/general/peer-cloud.png new file mode 100644 index 00000000..cf1121cb Binary files /dev/null and b/website/static/img/resources/ibm/general/peer-cloud.png differ diff --git a/website/static/img/resources/ibm/general/retrieve-rank.png b/website/static/img/resources/ibm/general/retrieve-rank.png new file mode 100644 index 00000000..14d8b828 Binary files /dev/null and b/website/static/img/resources/ibm/general/retrieve-rank.png differ diff --git a/website/static/img/resources/ibm/general/scalable.png b/website/static/img/resources/ibm/general/scalable.png new file mode 100644 index 00000000..729b6169 Binary files /dev/null and b/website/static/img/resources/ibm/general/scalable.png differ diff --git a/website/static/img/resources/ibm/general/service-discovery-configuration.png b/website/static/img/resources/ibm/general/service-discovery-configuration.png new file mode 100644 index 00000000..493e20ab Binary files /dev/null and b/website/static/img/resources/ibm/general/service-discovery-configuration.png differ diff --git a/website/static/img/resources/ibm/general/text-to-speech.png b/website/static/img/resources/ibm/general/text-to-speech.png new file mode 100644 index 00000000..f4f2302f Binary files /dev/null and b/website/static/img/resources/ibm/general/text-to-speech.png differ diff --git a/website/static/img/resources/ibm/general/transformation-connectivity.png b/website/static/img/resources/ibm/general/transformation-connectivity.png new file mode 100644 index 00000000..e0afec52 Binary files /dev/null and b/website/static/img/resources/ibm/general/transformation-connectivity.png differ diff --git a/website/static/img/resources/ibm/infrastructure/channels.png b/website/static/img/resources/ibm/infrastructure/channels.png new file mode 100644 index 00000000..62cbd980 Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/channels.png differ diff --git a/website/static/img/resources/ibm/infrastructure/cloud-messaging.png b/website/static/img/resources/ibm/infrastructure/cloud-messaging.png new file mode 100644 index 00000000..2fb1d678 Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/cloud-messaging.png differ diff --git a/website/static/img/resources/ibm/infrastructure/dashboard.png b/website/static/img/resources/ibm/infrastructure/dashboard.png new file mode 100644 index 00000000..1bda27ce Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/dashboard.png differ diff --git a/website/static/img/resources/ibm/infrastructure/diagnostics.png b/website/static/img/resources/ibm/infrastructure/diagnostics.png new file mode 100644 index 00000000..2032935d Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/diagnostics.png differ diff --git a/website/static/img/resources/ibm/infrastructure/edge-services.png b/website/static/img/resources/ibm/infrastructure/edge-services.png new file mode 100644 index 00000000..05a127a0 Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/edge-services.png differ diff --git a/website/static/img/resources/ibm/infrastructure/enterprise-messaging.png b/website/static/img/resources/ibm/infrastructure/enterprise-messaging.png new file mode 100644 index 00000000..04b2f16c Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/enterprise-messaging.png differ diff --git a/website/static/img/resources/ibm/infrastructure/event-feed.png b/website/static/img/resources/ibm/infrastructure/event-feed.png new file mode 100644 index 00000000..bf474412 Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/event-feed.png differ diff --git a/website/static/img/resources/ibm/infrastructure/infrastructure-services.png b/website/static/img/resources/ibm/infrastructure/infrastructure-services.png new file mode 100644 index 00000000..33719df2 Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/infrastructure-services.png differ diff --git a/website/static/img/resources/ibm/infrastructure/interservice-communication.png b/website/static/img/resources/ibm/infrastructure/interservice-communication.png new file mode 100644 index 00000000..9de54733 Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/interservice-communication.png differ diff --git a/website/static/img/resources/ibm/infrastructure/load-balancing-routing.png b/website/static/img/resources/ibm/infrastructure/load-balancing-routing.png new file mode 100644 index 00000000..b6eb6172 Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/load-balancing-routing.png differ diff --git a/website/static/img/resources/ibm/infrastructure/microservices-mesh.png b/website/static/img/resources/ibm/infrastructure/microservices-mesh.png new file mode 100644 index 00000000..c492d17e Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/microservices-mesh.png differ diff --git a/website/static/img/resources/ibm/infrastructure/mobile-backend.png b/website/static/img/resources/ibm/infrastructure/mobile-backend.png new file mode 100644 index 00000000..d6b154e6 Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/mobile-backend.png differ diff --git a/website/static/img/resources/ibm/infrastructure/mobile-provider-network.png b/website/static/img/resources/ibm/infrastructure/mobile-provider-network.png new file mode 100644 index 00000000..9080cda4 Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/mobile-provider-network.png differ diff --git a/website/static/img/resources/ibm/infrastructure/monitoring-logging.png b/website/static/img/resources/ibm/infrastructure/monitoring-logging.png new file mode 100644 index 00000000..7fa17adb Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/monitoring-logging.png differ diff --git a/website/static/img/resources/ibm/infrastructure/monitoring.png b/website/static/img/resources/ibm/infrastructure/monitoring.png new file mode 100644 index 00000000..417153de Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/monitoring.png differ diff --git a/website/static/img/resources/ibm/infrastructure/peer-services.png b/website/static/img/resources/ibm/infrastructure/peer-services.png new file mode 100644 index 00000000..7b1f1c1f Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/peer-services.png differ diff --git a/website/static/img/resources/ibm/infrastructure/service-discovery-configuration.png b/website/static/img/resources/ibm/infrastructure/service-discovery-configuration.png new file mode 100644 index 00000000..c3124dc8 Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/service-discovery-configuration.png differ diff --git a/website/static/img/resources/ibm/infrastructure/transformation-connectivity.png b/website/static/img/resources/ibm/infrastructure/transformation-connectivity.png new file mode 100644 index 00000000..dbe9301d Binary files /dev/null and b/website/static/img/resources/ibm/infrastructure/transformation-connectivity.png differ diff --git a/website/static/img/resources/ibm/management/alert-notification.png b/website/static/img/resources/ibm/management/alert-notification.png new file mode 100644 index 00000000..e2417e46 Binary files /dev/null and b/website/static/img/resources/ibm/management/alert-notification.png differ diff --git a/website/static/img/resources/ibm/management/api-management.png b/website/static/img/resources/ibm/management/api-management.png new file mode 100644 index 00000000..a1ea07f0 Binary files /dev/null and b/website/static/img/resources/ibm/management/api-management.png differ diff --git a/website/static/img/resources/ibm/management/cloud-management.png b/website/static/img/resources/ibm/management/cloud-management.png new file mode 100644 index 00000000..efc561df Binary files /dev/null and b/website/static/img/resources/ibm/management/cloud-management.png differ diff --git a/website/static/img/resources/ibm/management/cluster-management.png b/website/static/img/resources/ibm/management/cluster-management.png new file mode 100644 index 00000000..14c46353 Binary files /dev/null and b/website/static/img/resources/ibm/management/cluster-management.png differ diff --git a/website/static/img/resources/ibm/management/content-management.png b/website/static/img/resources/ibm/management/content-management.png new file mode 100644 index 00000000..de3b5b95 Binary files /dev/null and b/website/static/img/resources/ibm/management/content-management.png differ diff --git a/website/static/img/resources/ibm/management/data-services.png b/website/static/img/resources/ibm/management/data-services.png new file mode 100644 index 00000000..a470a493 Binary files /dev/null and b/website/static/img/resources/ibm/management/data-services.png differ diff --git a/website/static/img/resources/ibm/management/device-management.png b/website/static/img/resources/ibm/management/device-management.png new file mode 100644 index 00000000..ce51b242 Binary files /dev/null and b/website/static/img/resources/ibm/management/device-management.png differ diff --git a/website/static/img/resources/ibm/management/information-governance.png b/website/static/img/resources/ibm/management/information-governance.png new file mode 100644 index 00000000..ed822ea1 Binary files /dev/null and b/website/static/img/resources/ibm/management/information-governance.png differ diff --git a/website/static/img/resources/ibm/management/it-service-management.png b/website/static/img/resources/ibm/management/it-service-management.png new file mode 100644 index 00000000..c15505a7 Binary files /dev/null and b/website/static/img/resources/ibm/management/it-service-management.png differ diff --git a/website/static/img/resources/ibm/management/management.png b/website/static/img/resources/ibm/management/management.png new file mode 100644 index 00000000..6e6c60ba Binary files /dev/null and b/website/static/img/resources/ibm/management/management.png differ diff --git a/website/static/img/resources/ibm/management/monitoring-metrics.png b/website/static/img/resources/ibm/management/monitoring-metrics.png new file mode 100644 index 00000000..d66fa226 Binary files /dev/null and b/website/static/img/resources/ibm/management/monitoring-metrics.png differ diff --git a/website/static/img/resources/ibm/management/process-management.png b/website/static/img/resources/ibm/management/process-management.png new file mode 100644 index 00000000..7932b938 Binary files /dev/null and b/website/static/img/resources/ibm/management/process-management.png differ diff --git a/website/static/img/resources/ibm/management/provider-cloud-portal-service.png b/website/static/img/resources/ibm/management/provider-cloud-portal-service.png new file mode 100644 index 00000000..dfefa7c5 Binary files /dev/null and b/website/static/img/resources/ibm/management/provider-cloud-portal-service.png differ diff --git a/website/static/img/resources/ibm/management/push-notifications.png b/website/static/img/resources/ibm/management/push-notifications.png new file mode 100644 index 00000000..b97e80b4 Binary files /dev/null and b/website/static/img/resources/ibm/management/push-notifications.png differ diff --git a/website/static/img/resources/ibm/management/service-management-tools.png b/website/static/img/resources/ibm/management/service-management-tools.png new file mode 100644 index 00000000..14677bb2 Binary files /dev/null and b/website/static/img/resources/ibm/management/service-management-tools.png differ diff --git a/website/static/img/resources/ibm/network/bridge.png b/website/static/img/resources/ibm/network/bridge.png new file mode 100644 index 00000000..43e3369b Binary files /dev/null and b/website/static/img/resources/ibm/network/bridge.png differ diff --git a/website/static/img/resources/ibm/network/direct-link.png b/website/static/img/resources/ibm/network/direct-link.png new file mode 100644 index 00000000..a4c4de3f Binary files /dev/null and b/website/static/img/resources/ibm/network/direct-link.png differ diff --git a/website/static/img/resources/ibm/network/enterprise.png b/website/static/img/resources/ibm/network/enterprise.png new file mode 100644 index 00000000..c80ee603 Binary files /dev/null and b/website/static/img/resources/ibm/network/enterprise.png differ diff --git a/website/static/img/resources/ibm/network/firewall.png b/website/static/img/resources/ibm/network/firewall.png new file mode 100644 index 00000000..f2405d9f Binary files /dev/null and b/website/static/img/resources/ibm/network/firewall.png differ diff --git a/website/static/img/resources/ibm/network/floating-ip.png b/website/static/img/resources/ibm/network/floating-ip.png new file mode 100644 index 00000000..68a627b2 Binary files /dev/null and b/website/static/img/resources/ibm/network/floating-ip.png differ diff --git a/website/static/img/resources/ibm/network/gateway.png b/website/static/img/resources/ibm/network/gateway.png new file mode 100644 index 00000000..dd640044 Binary files /dev/null and b/website/static/img/resources/ibm/network/gateway.png differ diff --git a/website/static/img/resources/ibm/network/internet-services.png b/website/static/img/resources/ibm/network/internet-services.png new file mode 100644 index 00000000..b8980aa2 Binary files /dev/null and b/website/static/img/resources/ibm/network/internet-services.png differ diff --git a/website/static/img/resources/ibm/network/load-balancer-listener.png b/website/static/img/resources/ibm/network/load-balancer-listener.png new file mode 100644 index 00000000..c0e5f8d4 Binary files /dev/null and b/website/static/img/resources/ibm/network/load-balancer-listener.png differ diff --git a/website/static/img/resources/ibm/network/load-balancer-pool.png b/website/static/img/resources/ibm/network/load-balancer-pool.png new file mode 100644 index 00000000..376eed58 Binary files /dev/null and b/website/static/img/resources/ibm/network/load-balancer-pool.png differ diff --git a/website/static/img/resources/ibm/network/load-balancer.png b/website/static/img/resources/ibm/network/load-balancer.png new file mode 100644 index 00000000..6f53b5c2 Binary files /dev/null and b/website/static/img/resources/ibm/network/load-balancer.png differ diff --git a/website/static/img/resources/ibm/network/load-balancing-routing.png b/website/static/img/resources/ibm/network/load-balancing-routing.png new file mode 100644 index 00000000..9bcf29b2 Binary files /dev/null and b/website/static/img/resources/ibm/network/load-balancing-routing.png differ diff --git a/website/static/img/resources/ibm/network/public-gateway.png b/website/static/img/resources/ibm/network/public-gateway.png new file mode 100644 index 00000000..9bda09fd Binary files /dev/null and b/website/static/img/resources/ibm/network/public-gateway.png differ diff --git a/website/static/img/resources/ibm/network/region.png b/website/static/img/resources/ibm/network/region.png new file mode 100644 index 00000000..92ea7bdf Binary files /dev/null and b/website/static/img/resources/ibm/network/region.png differ diff --git a/website/static/img/resources/ibm/network/router.png b/website/static/img/resources/ibm/network/router.png new file mode 100644 index 00000000..b6fa9966 Binary files /dev/null and b/website/static/img/resources/ibm/network/router.png differ diff --git a/website/static/img/resources/ibm/network/rules.png b/website/static/img/resources/ibm/network/rules.png new file mode 100644 index 00000000..df44b87e Binary files /dev/null and b/website/static/img/resources/ibm/network/rules.png differ diff --git a/website/static/img/resources/ibm/network/subnet.png b/website/static/img/resources/ibm/network/subnet.png new file mode 100644 index 00000000..0f0fc0d1 Binary files /dev/null and b/website/static/img/resources/ibm/network/subnet.png differ diff --git a/website/static/img/resources/ibm/network/transit-gateway.png b/website/static/img/resources/ibm/network/transit-gateway.png new file mode 100644 index 00000000..0d4c4783 Binary files /dev/null and b/website/static/img/resources/ibm/network/transit-gateway.png differ diff --git a/website/static/img/resources/ibm/network/vpc.png b/website/static/img/resources/ibm/network/vpc.png new file mode 100644 index 00000000..eabb6b25 Binary files /dev/null and b/website/static/img/resources/ibm/network/vpc.png differ diff --git a/website/static/img/resources/ibm/network/vpn-connection.png b/website/static/img/resources/ibm/network/vpn-connection.png new file mode 100644 index 00000000..91613596 Binary files /dev/null and b/website/static/img/resources/ibm/network/vpn-connection.png differ diff --git a/website/static/img/resources/ibm/network/vpn-gateway.png b/website/static/img/resources/ibm/network/vpn-gateway.png new file mode 100644 index 00000000..c1613fef Binary files /dev/null and b/website/static/img/resources/ibm/network/vpn-gateway.png differ diff --git a/website/static/img/resources/ibm/network/vpn-policy.png b/website/static/img/resources/ibm/network/vpn-policy.png new file mode 100644 index 00000000..6fec2da6 Binary files /dev/null and b/website/static/img/resources/ibm/network/vpn-policy.png differ diff --git a/website/static/img/resources/ibm/security/api-security.png b/website/static/img/resources/ibm/security/api-security.png new file mode 100644 index 00000000..142d1e90 Binary files /dev/null and b/website/static/img/resources/ibm/security/api-security.png differ diff --git a/website/static/img/resources/ibm/security/blockchain-security-service.png b/website/static/img/resources/ibm/security/blockchain-security-service.png new file mode 100644 index 00000000..90e07afa Binary files /dev/null and b/website/static/img/resources/ibm/security/blockchain-security-service.png differ diff --git a/website/static/img/resources/ibm/security/data-security.png b/website/static/img/resources/ibm/security/data-security.png new file mode 100644 index 00000000..117a1054 Binary files /dev/null and b/website/static/img/resources/ibm/security/data-security.png differ diff --git a/website/static/img/resources/ibm/security/firewall.png b/website/static/img/resources/ibm/security/firewall.png new file mode 100644 index 00000000..55e75709 Binary files /dev/null and b/website/static/img/resources/ibm/security/firewall.png differ diff --git a/website/static/img/resources/ibm/security/gateway.png b/website/static/img/resources/ibm/security/gateway.png new file mode 100644 index 00000000..54d707f9 Binary files /dev/null and b/website/static/img/resources/ibm/security/gateway.png differ diff --git a/website/static/img/resources/ibm/security/governance-risk-compliance.png b/website/static/img/resources/ibm/security/governance-risk-compliance.png new file mode 100644 index 00000000..57626ad2 Binary files /dev/null and b/website/static/img/resources/ibm/security/governance-risk-compliance.png differ diff --git a/website/static/img/resources/ibm/security/identity-access-management.png b/website/static/img/resources/ibm/security/identity-access-management.png new file mode 100644 index 00000000..c98bffd0 Binary files /dev/null and b/website/static/img/resources/ibm/security/identity-access-management.png differ diff --git a/website/static/img/resources/ibm/security/identity-provider.png b/website/static/img/resources/ibm/security/identity-provider.png new file mode 100644 index 00000000..74325f7f Binary files /dev/null and b/website/static/img/resources/ibm/security/identity-provider.png differ diff --git a/website/static/img/resources/ibm/security/infrastructure-security.png b/website/static/img/resources/ibm/security/infrastructure-security.png new file mode 100644 index 00000000..3f7ab383 Binary files /dev/null and b/website/static/img/resources/ibm/security/infrastructure-security.png differ diff --git a/website/static/img/resources/ibm/security/physical-security.png b/website/static/img/resources/ibm/security/physical-security.png new file mode 100644 index 00000000..b7377086 Binary files /dev/null and b/website/static/img/resources/ibm/security/physical-security.png differ diff --git a/website/static/img/resources/ibm/security/security-monitoring-intelligence.png b/website/static/img/resources/ibm/security/security-monitoring-intelligence.png new file mode 100644 index 00000000..a9c2fc96 Binary files /dev/null and b/website/static/img/resources/ibm/security/security-monitoring-intelligence.png differ diff --git a/website/static/img/resources/ibm/security/security-services.png b/website/static/img/resources/ibm/security/security-services.png new file mode 100644 index 00000000..d6a49d68 Binary files /dev/null and b/website/static/img/resources/ibm/security/security-services.png differ diff --git a/website/static/img/resources/ibm/security/trustend-computing.png b/website/static/img/resources/ibm/security/trustend-computing.png new file mode 100644 index 00000000..5c47988b Binary files /dev/null and b/website/static/img/resources/ibm/security/trustend-computing.png differ diff --git a/website/static/img/resources/ibm/security/vpn.png b/website/static/img/resources/ibm/security/vpn.png new file mode 100644 index 00000000..1837c350 Binary files /dev/null and b/website/static/img/resources/ibm/security/vpn.png differ diff --git a/website/static/img/resources/ibm/social/communities.png b/website/static/img/resources/ibm/social/communities.png new file mode 100644 index 00000000..a73892f6 Binary files /dev/null and b/website/static/img/resources/ibm/social/communities.png differ diff --git a/website/static/img/resources/ibm/social/file-sync.png b/website/static/img/resources/ibm/social/file-sync.png new file mode 100644 index 00000000..99d3fe8d Binary files /dev/null and b/website/static/img/resources/ibm/social/file-sync.png differ diff --git a/website/static/img/resources/ibm/social/live-collaboration.png b/website/static/img/resources/ibm/social/live-collaboration.png new file mode 100644 index 00000000..b8e7d602 Binary files /dev/null and b/website/static/img/resources/ibm/social/live-collaboration.png differ diff --git a/website/static/img/resources/ibm/social/messaging.png b/website/static/img/resources/ibm/social/messaging.png new file mode 100644 index 00000000..9307bc5b Binary files /dev/null and b/website/static/img/resources/ibm/social/messaging.png differ diff --git a/website/static/img/resources/ibm/social/networking.png b/website/static/img/resources/ibm/social/networking.png new file mode 100644 index 00000000..e4e55df2 Binary files /dev/null and b/website/static/img/resources/ibm/social/networking.png differ diff --git a/website/static/img/resources/ibm/storage/block-storage.png b/website/static/img/resources/ibm/storage/block-storage.png new file mode 100644 index 00000000..c31bf5fc Binary files /dev/null and b/website/static/img/resources/ibm/storage/block-storage.png differ diff --git a/website/static/img/resources/ibm/storage/object-storage.png b/website/static/img/resources/ibm/storage/object-storage.png new file mode 100644 index 00000000..e239629f Binary files /dev/null and b/website/static/img/resources/ibm/storage/object-storage.png differ diff --git a/website/static/img/resources/ibm/user/browser.png b/website/static/img/resources/ibm/user/browser.png new file mode 100644 index 00000000..12556076 Binary files /dev/null and b/website/static/img/resources/ibm/user/browser.png differ diff --git a/website/static/img/resources/ibm/user/device.png b/website/static/img/resources/ibm/user/device.png new file mode 100644 index 00000000..e637f1b1 Binary files /dev/null and b/website/static/img/resources/ibm/user/device.png differ diff --git a/website/static/img/resources/ibm/user/integrated-digital-experiences.png b/website/static/img/resources/ibm/user/integrated-digital-experiences.png new file mode 100644 index 00000000..933c2a67 Binary files /dev/null and b/website/static/img/resources/ibm/user/integrated-digital-experiences.png differ diff --git a/website/static/img/resources/ibm/user/physical-entity.png b/website/static/img/resources/ibm/user/physical-entity.png new file mode 100644 index 00000000..51304eb6 Binary files /dev/null and b/website/static/img/resources/ibm/user/physical-entity.png differ diff --git a/website/static/img/resources/ibm/user/sensor.png b/website/static/img/resources/ibm/user/sensor.png new file mode 100644 index 00000000..ccbc9505 Binary files /dev/null and b/website/static/img/resources/ibm/user/sensor.png differ diff --git a/website/static/img/resources/ibm/user/user.png b/website/static/img/resources/ibm/user/user.png new file mode 100644 index 00000000..2ac69c61 Binary files /dev/null and b/website/static/img/resources/ibm/user/user.png differ diff --git a/website/static/img/resources/k8s/chaos/chaos-mesh.png b/website/static/img/resources/k8s/chaos/chaos-mesh.png new file mode 100644 index 00000000..f1d373ae Binary files /dev/null and b/website/static/img/resources/k8s/chaos/chaos-mesh.png differ diff --git a/website/static/img/resources/k8s/chaos/litmus-chaos.png b/website/static/img/resources/k8s/chaos/litmus-chaos.png new file mode 100644 index 00000000..243ee9f3 Binary files /dev/null and b/website/static/img/resources/k8s/chaos/litmus-chaos.png differ diff --git a/website/static/img/resources/k8s/clusterconfig/hpa.png b/website/static/img/resources/k8s/clusterconfig/hpa.png new file mode 100644 index 00000000..0caccb53 Binary files /dev/null and b/website/static/img/resources/k8s/clusterconfig/hpa.png differ diff --git a/website/static/img/resources/k8s/clusterconfig/limits.png b/website/static/img/resources/k8s/clusterconfig/limits.png new file mode 100644 index 00000000..2addd0ab Binary files /dev/null and b/website/static/img/resources/k8s/clusterconfig/limits.png differ diff --git a/website/static/img/resources/k8s/clusterconfig/quota.png b/website/static/img/resources/k8s/clusterconfig/quota.png new file mode 100644 index 00000000..a4d4957a Binary files /dev/null and b/website/static/img/resources/k8s/clusterconfig/quota.png differ diff --git a/website/static/img/resources/k8s/compute/cronjob.png b/website/static/img/resources/k8s/compute/cronjob.png new file mode 100644 index 00000000..e70aeddd Binary files /dev/null and b/website/static/img/resources/k8s/compute/cronjob.png differ diff --git a/website/static/img/resources/k8s/compute/deploy.png b/website/static/img/resources/k8s/compute/deploy.png new file mode 100644 index 00000000..c32b6b95 Binary files /dev/null and b/website/static/img/resources/k8s/compute/deploy.png differ diff --git a/website/static/img/resources/k8s/compute/ds.png b/website/static/img/resources/k8s/compute/ds.png new file mode 100644 index 00000000..f327daaa Binary files /dev/null and b/website/static/img/resources/k8s/compute/ds.png differ diff --git a/website/static/img/resources/k8s/compute/job.png b/website/static/img/resources/k8s/compute/job.png new file mode 100644 index 00000000..e6c2a382 Binary files /dev/null and b/website/static/img/resources/k8s/compute/job.png differ diff --git a/website/static/img/resources/k8s/compute/pod.png b/website/static/img/resources/k8s/compute/pod.png new file mode 100644 index 00000000..e498a9af Binary files /dev/null and b/website/static/img/resources/k8s/compute/pod.png differ diff --git a/website/static/img/resources/k8s/compute/rs.png b/website/static/img/resources/k8s/compute/rs.png new file mode 100644 index 00000000..0e7863be Binary files /dev/null and b/website/static/img/resources/k8s/compute/rs.png differ diff --git a/website/static/img/resources/k8s/compute/sts.png b/website/static/img/resources/k8s/compute/sts.png new file mode 100644 index 00000000..71b46b95 Binary files /dev/null and b/website/static/img/resources/k8s/compute/sts.png differ diff --git a/website/static/img/resources/k8s/controlplane/api.png b/website/static/img/resources/k8s/controlplane/api.png new file mode 100644 index 00000000..868ac542 Binary files /dev/null and b/website/static/img/resources/k8s/controlplane/api.png differ diff --git a/website/static/img/resources/k8s/controlplane/c-c-m.png b/website/static/img/resources/k8s/controlplane/c-c-m.png new file mode 100644 index 00000000..5afab251 Binary files /dev/null and b/website/static/img/resources/k8s/controlplane/c-c-m.png differ diff --git a/website/static/img/resources/k8s/controlplane/c-m.png b/website/static/img/resources/k8s/controlplane/c-m.png new file mode 100644 index 00000000..b30692fb Binary files /dev/null and b/website/static/img/resources/k8s/controlplane/c-m.png differ diff --git a/website/static/img/resources/k8s/controlplane/k-proxy.png b/website/static/img/resources/k8s/controlplane/k-proxy.png new file mode 100644 index 00000000..e927817f Binary files /dev/null and b/website/static/img/resources/k8s/controlplane/k-proxy.png differ diff --git a/website/static/img/resources/k8s/controlplane/kubelet.png b/website/static/img/resources/k8s/controlplane/kubelet.png new file mode 100644 index 00000000..462ea49f Binary files /dev/null and b/website/static/img/resources/k8s/controlplane/kubelet.png differ diff --git a/website/static/img/resources/k8s/controlplane/sched.png b/website/static/img/resources/k8s/controlplane/sched.png new file mode 100644 index 00000000..be33ffe6 Binary files /dev/null and b/website/static/img/resources/k8s/controlplane/sched.png differ diff --git a/website/static/img/resources/k8s/ecosystem/external-dns.png b/website/static/img/resources/k8s/ecosystem/external-dns.png new file mode 100644 index 00000000..cc2dff27 Binary files /dev/null and b/website/static/img/resources/k8s/ecosystem/external-dns.png differ diff --git a/website/static/img/resources/k8s/ecosystem/helm.png b/website/static/img/resources/k8s/ecosystem/helm.png new file mode 100644 index 00000000..355f40cf Binary files /dev/null and b/website/static/img/resources/k8s/ecosystem/helm.png differ diff --git a/website/static/img/resources/k8s/ecosystem/krew.png b/website/static/img/resources/k8s/ecosystem/krew.png new file mode 100644 index 00000000..913a24f7 Binary files /dev/null and b/website/static/img/resources/k8s/ecosystem/krew.png differ diff --git a/website/static/img/resources/k8s/ecosystem/kustomize.png b/website/static/img/resources/k8s/ecosystem/kustomize.png new file mode 100644 index 00000000..845c1270 Binary files /dev/null and b/website/static/img/resources/k8s/ecosystem/kustomize.png differ diff --git a/website/static/img/resources/k8s/group/ns.png b/website/static/img/resources/k8s/group/ns.png new file mode 100644 index 00000000..9fafbfca Binary files /dev/null and b/website/static/img/resources/k8s/group/ns.png differ diff --git a/website/static/img/resources/k8s/infra/etcd.png b/website/static/img/resources/k8s/infra/etcd.png new file mode 100644 index 00000000..f514ef53 Binary files /dev/null and b/website/static/img/resources/k8s/infra/etcd.png differ diff --git a/website/static/img/resources/k8s/infra/master.png b/website/static/img/resources/k8s/infra/master.png new file mode 100644 index 00000000..074f54e2 Binary files /dev/null and b/website/static/img/resources/k8s/infra/master.png differ diff --git a/website/static/img/resources/k8s/infra/node.png b/website/static/img/resources/k8s/infra/node.png new file mode 100644 index 00000000..62befbff Binary files /dev/null and b/website/static/img/resources/k8s/infra/node.png differ diff --git a/website/static/img/resources/k8s/network/ep.png b/website/static/img/resources/k8s/network/ep.png new file mode 100644 index 00000000..68fb6731 Binary files /dev/null and b/website/static/img/resources/k8s/network/ep.png differ diff --git a/website/static/img/resources/k8s/network/ing.png b/website/static/img/resources/k8s/network/ing.png new file mode 100644 index 00000000..8fe02178 Binary files /dev/null and b/website/static/img/resources/k8s/network/ing.png differ diff --git a/website/static/img/resources/k8s/network/netpol.png b/website/static/img/resources/k8s/network/netpol.png new file mode 100644 index 00000000..67bd640e Binary files /dev/null and b/website/static/img/resources/k8s/network/netpol.png differ diff --git a/website/static/img/resources/k8s/network/svc.png b/website/static/img/resources/k8s/network/svc.png new file mode 100644 index 00000000..8cca4806 Binary files /dev/null and b/website/static/img/resources/k8s/network/svc.png differ diff --git a/website/static/img/resources/k8s/others/crd.png b/website/static/img/resources/k8s/others/crd.png new file mode 100644 index 00000000..ead4e03f Binary files /dev/null and b/website/static/img/resources/k8s/others/crd.png differ diff --git a/website/static/img/resources/k8s/others/psp.png b/website/static/img/resources/k8s/others/psp.png new file mode 100644 index 00000000..57dce56f Binary files /dev/null and b/website/static/img/resources/k8s/others/psp.png differ diff --git a/website/static/img/resources/k8s/podconfig/cm.png b/website/static/img/resources/k8s/podconfig/cm.png new file mode 100644 index 00000000..4f1c049e Binary files /dev/null and b/website/static/img/resources/k8s/podconfig/cm.png differ diff --git a/website/static/img/resources/k8s/podconfig/secret.png b/website/static/img/resources/k8s/podconfig/secret.png new file mode 100644 index 00000000..e7a8b3ee Binary files /dev/null and b/website/static/img/resources/k8s/podconfig/secret.png differ diff --git a/website/static/img/resources/k8s/rbac/c-role.png b/website/static/img/resources/k8s/rbac/c-role.png new file mode 100644 index 00000000..ebc7bcf8 Binary files /dev/null and b/website/static/img/resources/k8s/rbac/c-role.png differ diff --git a/website/static/img/resources/k8s/rbac/crb.png b/website/static/img/resources/k8s/rbac/crb.png new file mode 100644 index 00000000..c0a51dcc Binary files /dev/null and b/website/static/img/resources/k8s/rbac/crb.png differ diff --git a/website/static/img/resources/k8s/rbac/group.png b/website/static/img/resources/k8s/rbac/group.png new file mode 100644 index 00000000..87ff5965 Binary files /dev/null and b/website/static/img/resources/k8s/rbac/group.png differ diff --git a/website/static/img/resources/k8s/rbac/rb.png b/website/static/img/resources/k8s/rbac/rb.png new file mode 100644 index 00000000..97088231 Binary files /dev/null and b/website/static/img/resources/k8s/rbac/rb.png differ diff --git a/website/static/img/resources/k8s/rbac/role.png b/website/static/img/resources/k8s/rbac/role.png new file mode 100644 index 00000000..df45e459 Binary files /dev/null and b/website/static/img/resources/k8s/rbac/role.png differ diff --git a/website/static/img/resources/k8s/rbac/sa.png b/website/static/img/resources/k8s/rbac/sa.png new file mode 100644 index 00000000..e642f37d Binary files /dev/null and b/website/static/img/resources/k8s/rbac/sa.png differ diff --git a/website/static/img/resources/k8s/rbac/user.png b/website/static/img/resources/k8s/rbac/user.png new file mode 100644 index 00000000..e7886054 Binary files /dev/null and b/website/static/img/resources/k8s/rbac/user.png differ diff --git a/website/static/img/resources/k8s/storage/pv.png b/website/static/img/resources/k8s/storage/pv.png new file mode 100644 index 00000000..9a0bbaf5 Binary files /dev/null and b/website/static/img/resources/k8s/storage/pv.png differ diff --git a/website/static/img/resources/k8s/storage/pvc.png b/website/static/img/resources/k8s/storage/pvc.png new file mode 100644 index 00000000..de66402a Binary files /dev/null and b/website/static/img/resources/k8s/storage/pvc.png differ diff --git a/website/static/img/resources/k8s/storage/sc.png b/website/static/img/resources/k8s/storage/sc.png new file mode 100644 index 00000000..63f85180 Binary files /dev/null and b/website/static/img/resources/k8s/storage/sc.png differ diff --git a/website/static/img/resources/k8s/storage/vol.png b/website/static/img/resources/k8s/storage/vol.png new file mode 100644 index 00000000..c47cc2d2 Binary files /dev/null and b/website/static/img/resources/k8s/storage/vol.png differ diff --git a/website/static/img/resources/oci/compute/autoscale-white.png b/website/static/img/resources/oci/compute/autoscale-white.png new file mode 100644 index 00000000..dc64d11b Binary files /dev/null and b/website/static/img/resources/oci/compute/autoscale-white.png differ diff --git a/website/static/img/resources/oci/compute/autoscale.png b/website/static/img/resources/oci/compute/autoscale.png new file mode 100644 index 00000000..f5374d3a Binary files /dev/null and b/website/static/img/resources/oci/compute/autoscale.png differ diff --git a/website/static/img/resources/oci/compute/bm-white.png b/website/static/img/resources/oci/compute/bm-white.png new file mode 100644 index 00000000..c33833d7 Binary files /dev/null and b/website/static/img/resources/oci/compute/bm-white.png differ diff --git a/website/static/img/resources/oci/compute/bm.png b/website/static/img/resources/oci/compute/bm.png new file mode 100644 index 00000000..e9d50b0a Binary files /dev/null and b/website/static/img/resources/oci/compute/bm.png differ diff --git a/website/static/img/resources/oci/compute/container-white.png b/website/static/img/resources/oci/compute/container-white.png new file mode 100644 index 00000000..ba6b09a0 Binary files /dev/null and b/website/static/img/resources/oci/compute/container-white.png differ diff --git a/website/static/img/resources/oci/compute/container.png b/website/static/img/resources/oci/compute/container.png new file mode 100644 index 00000000..949b46bd Binary files /dev/null and b/website/static/img/resources/oci/compute/container.png differ diff --git a/website/static/img/resources/oci/compute/functions-white.png b/website/static/img/resources/oci/compute/functions-white.png new file mode 100644 index 00000000..6296e39b Binary files /dev/null and b/website/static/img/resources/oci/compute/functions-white.png differ diff --git a/website/static/img/resources/oci/compute/functions.png b/website/static/img/resources/oci/compute/functions.png new file mode 100644 index 00000000..ec13a2dc Binary files /dev/null and b/website/static/img/resources/oci/compute/functions.png differ diff --git a/website/static/img/resources/oci/compute/instance-pools-white.png b/website/static/img/resources/oci/compute/instance-pools-white.png new file mode 100644 index 00000000..397bc276 Binary files /dev/null and b/website/static/img/resources/oci/compute/instance-pools-white.png differ diff --git a/website/static/img/resources/oci/compute/instance-pools.png b/website/static/img/resources/oci/compute/instance-pools.png new file mode 100644 index 00000000..d1eacf12 Binary files /dev/null and b/website/static/img/resources/oci/compute/instance-pools.png differ diff --git a/website/static/img/resources/oci/compute/ocir-white.png b/website/static/img/resources/oci/compute/ocir-white.png new file mode 100644 index 00000000..55105058 Binary files /dev/null and b/website/static/img/resources/oci/compute/ocir-white.png differ diff --git a/website/static/img/resources/oci/compute/ocir.png b/website/static/img/resources/oci/compute/ocir.png new file mode 100644 index 00000000..4f6d9ee2 Binary files /dev/null and b/website/static/img/resources/oci/compute/ocir.png differ diff --git a/website/static/img/resources/oci/compute/oke-white.png b/website/static/img/resources/oci/compute/oke-white.png new file mode 100644 index 00000000..64517535 Binary files /dev/null and b/website/static/img/resources/oci/compute/oke-white.png differ diff --git a/website/static/img/resources/oci/compute/oke.png b/website/static/img/resources/oci/compute/oke.png new file mode 100644 index 00000000..61dcd839 Binary files /dev/null and b/website/static/img/resources/oci/compute/oke.png differ diff --git a/website/static/img/resources/oci/compute/vm-white.png b/website/static/img/resources/oci/compute/vm-white.png new file mode 100644 index 00000000..1af7e0e7 Binary files /dev/null and b/website/static/img/resources/oci/compute/vm-white.png differ diff --git a/website/static/img/resources/oci/compute/vm.png b/website/static/img/resources/oci/compute/vm.png new file mode 100644 index 00000000..1b680b63 Binary files /dev/null and b/website/static/img/resources/oci/compute/vm.png differ diff --git a/website/static/img/resources/oci/connectivity/backbone-white.png b/website/static/img/resources/oci/connectivity/backbone-white.png new file mode 100644 index 00000000..bfe31e80 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/backbone-white.png differ diff --git a/website/static/img/resources/oci/connectivity/backbone.png b/website/static/img/resources/oci/connectivity/backbone.png new file mode 100644 index 00000000..106b1594 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/backbone.png differ diff --git a/website/static/img/resources/oci/connectivity/cdn-white.png b/website/static/img/resources/oci/connectivity/cdn-white.png new file mode 100644 index 00000000..605b695c Binary files /dev/null and b/website/static/img/resources/oci/connectivity/cdn-white.png differ diff --git a/website/static/img/resources/oci/connectivity/cdn.png b/website/static/img/resources/oci/connectivity/cdn.png new file mode 100644 index 00000000..839012b7 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/cdn.png differ diff --git a/website/static/img/resources/oci/connectivity/customer-datacenter.png b/website/static/img/resources/oci/connectivity/customer-datacenter.png new file mode 100644 index 00000000..8937f7d4 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/customer-datacenter.png differ diff --git a/website/static/img/resources/oci/connectivity/customer-datacntr-white.png b/website/static/img/resources/oci/connectivity/customer-datacntr-white.png new file mode 100644 index 00000000..70b7c8d5 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/customer-datacntr-white.png differ diff --git a/website/static/img/resources/oci/connectivity/customer-premise-white.png b/website/static/img/resources/oci/connectivity/customer-premise-white.png new file mode 100644 index 00000000..d557206c Binary files /dev/null and b/website/static/img/resources/oci/connectivity/customer-premise-white.png differ diff --git a/website/static/img/resources/oci/connectivity/customer-premise.png b/website/static/img/resources/oci/connectivity/customer-premise.png new file mode 100644 index 00000000..59dbaf93 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/customer-premise.png differ diff --git a/website/static/img/resources/oci/connectivity/disconnected-regions-white.png b/website/static/img/resources/oci/connectivity/disconnected-regions-white.png new file mode 100644 index 00000000..329d2956 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/disconnected-regions-white.png differ diff --git a/website/static/img/resources/oci/connectivity/disconnected-regions.png b/website/static/img/resources/oci/connectivity/disconnected-regions.png new file mode 100644 index 00000000..59f6df90 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/disconnected-regions.png differ diff --git a/website/static/img/resources/oci/connectivity/dns-white.png b/website/static/img/resources/oci/connectivity/dns-white.png new file mode 100644 index 00000000..831f6628 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/dns-white.png differ diff --git a/website/static/img/resources/oci/connectivity/dns.png b/website/static/img/resources/oci/connectivity/dns.png new file mode 100644 index 00000000..374c1bb5 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/dns.png differ diff --git a/website/static/img/resources/oci/connectivity/fast-connect-white.png b/website/static/img/resources/oci/connectivity/fast-connect-white.png new file mode 100644 index 00000000..57827bb9 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/fast-connect-white.png differ diff --git a/website/static/img/resources/oci/connectivity/fast-connect.png b/website/static/img/resources/oci/connectivity/fast-connect.png new file mode 100644 index 00000000..9fb1a532 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/fast-connect.png differ diff --git a/website/static/img/resources/oci/connectivity/nat-gateway-white.png b/website/static/img/resources/oci/connectivity/nat-gateway-white.png new file mode 100644 index 00000000..2c4d84ba Binary files /dev/null and b/website/static/img/resources/oci/connectivity/nat-gateway-white.png differ diff --git a/website/static/img/resources/oci/connectivity/nat-gateway.png b/website/static/img/resources/oci/connectivity/nat-gateway.png new file mode 100644 index 00000000..b472878c Binary files /dev/null and b/website/static/img/resources/oci/connectivity/nat-gateway.png differ diff --git a/website/static/img/resources/oci/connectivity/vpn-white.png b/website/static/img/resources/oci/connectivity/vpn-white.png new file mode 100644 index 00000000..be80a991 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/vpn-white.png differ diff --git a/website/static/img/resources/oci/connectivity/vpn.png b/website/static/img/resources/oci/connectivity/vpn.png new file mode 100644 index 00000000..03374859 Binary files /dev/null and b/website/static/img/resources/oci/connectivity/vpn.png differ diff --git a/website/static/img/resources/oci/database/autonomous-white.png b/website/static/img/resources/oci/database/autonomous-white.png new file mode 100644 index 00000000..69395109 Binary files /dev/null and b/website/static/img/resources/oci/database/autonomous-white.png differ diff --git a/website/static/img/resources/oci/database/autonomous.png b/website/static/img/resources/oci/database/autonomous.png new file mode 100644 index 00000000..e9859e2d Binary files /dev/null and b/website/static/img/resources/oci/database/autonomous.png differ diff --git a/website/static/img/resources/oci/database/bigdata-service-white.png b/website/static/img/resources/oci/database/bigdata-service-white.png new file mode 100644 index 00000000..76b26db4 Binary files /dev/null and b/website/static/img/resources/oci/database/bigdata-service-white.png differ diff --git a/website/static/img/resources/oci/database/bigdata-service.png b/website/static/img/resources/oci/database/bigdata-service.png new file mode 100644 index 00000000..ebb395da Binary files /dev/null and b/website/static/img/resources/oci/database/bigdata-service.png differ diff --git a/website/static/img/resources/oci/database/database-service-white.png b/website/static/img/resources/oci/database/database-service-white.png new file mode 100644 index 00000000..552c56c7 Binary files /dev/null and b/website/static/img/resources/oci/database/database-service-white.png differ diff --git a/website/static/img/resources/oci/database/database-service.png b/website/static/img/resources/oci/database/database-service.png new file mode 100644 index 00000000..5442cecd Binary files /dev/null and b/website/static/img/resources/oci/database/database-service.png differ diff --git a/website/static/img/resources/oci/database/dataflow-apache-white.png b/website/static/img/resources/oci/database/dataflow-apache-white.png new file mode 100644 index 00000000..cf69c3b5 Binary files /dev/null and b/website/static/img/resources/oci/database/dataflow-apache-white.png differ diff --git a/website/static/img/resources/oci/database/dataflow-apache.png b/website/static/img/resources/oci/database/dataflow-apache.png new file mode 100644 index 00000000..c04b65ba Binary files /dev/null and b/website/static/img/resources/oci/database/dataflow-apache.png differ diff --git a/website/static/img/resources/oci/database/dcat-white.png b/website/static/img/resources/oci/database/dcat-white.png new file mode 100644 index 00000000..dbff953e Binary files /dev/null and b/website/static/img/resources/oci/database/dcat-white.png differ diff --git a/website/static/img/resources/oci/database/dcat.png b/website/static/img/resources/oci/database/dcat.png new file mode 100644 index 00000000..c1bc05b1 Binary files /dev/null and b/website/static/img/resources/oci/database/dcat.png differ diff --git a/website/static/img/resources/oci/database/dis-white.png b/website/static/img/resources/oci/database/dis-white.png new file mode 100644 index 00000000..63ab6638 Binary files /dev/null and b/website/static/img/resources/oci/database/dis-white.png differ diff --git a/website/static/img/resources/oci/database/dis.png b/website/static/img/resources/oci/database/dis.png new file mode 100644 index 00000000..1e0dcfe4 Binary files /dev/null and b/website/static/img/resources/oci/database/dis.png differ diff --git a/website/static/img/resources/oci/database/dms-white.png b/website/static/img/resources/oci/database/dms-white.png new file mode 100644 index 00000000..4fcf1fe7 Binary files /dev/null and b/website/static/img/resources/oci/database/dms-white.png differ diff --git a/website/static/img/resources/oci/database/dms.png b/website/static/img/resources/oci/database/dms.png new file mode 100644 index 00000000..dd76cb20 Binary files /dev/null and b/website/static/img/resources/oci/database/dms.png differ diff --git a/website/static/img/resources/oci/database/science-white.png b/website/static/img/resources/oci/database/science-white.png new file mode 100644 index 00000000..99d8d203 Binary files /dev/null and b/website/static/img/resources/oci/database/science-white.png differ diff --git a/website/static/img/resources/oci/database/science.png b/website/static/img/resources/oci/database/science.png new file mode 100644 index 00000000..c720667c Binary files /dev/null and b/website/static/img/resources/oci/database/science.png differ diff --git a/website/static/img/resources/oci/database/stream-white.png b/website/static/img/resources/oci/database/stream-white.png new file mode 100644 index 00000000..1406b306 Binary files /dev/null and b/website/static/img/resources/oci/database/stream-white.png differ diff --git a/website/static/img/resources/oci/database/stream.png b/website/static/img/resources/oci/database/stream.png new file mode 100644 index 00000000..5624c168 Binary files /dev/null and b/website/static/img/resources/oci/database/stream.png differ diff --git a/website/static/img/resources/oci/devops/api-gateway-white.png b/website/static/img/resources/oci/devops/api-gateway-white.png new file mode 100644 index 00000000..767a98ff Binary files /dev/null and b/website/static/img/resources/oci/devops/api-gateway-white.png differ diff --git a/website/static/img/resources/oci/devops/api-gateway.png b/website/static/img/resources/oci/devops/api-gateway.png new file mode 100644 index 00000000..d244cabf Binary files /dev/null and b/website/static/img/resources/oci/devops/api-gateway.png differ diff --git a/website/static/img/resources/oci/devops/api-service-white.png b/website/static/img/resources/oci/devops/api-service-white.png new file mode 100644 index 00000000..ab50a5d6 Binary files /dev/null and b/website/static/img/resources/oci/devops/api-service-white.png differ diff --git a/website/static/img/resources/oci/devops/api-service.png b/website/static/img/resources/oci/devops/api-service.png new file mode 100644 index 00000000..208047b9 Binary files /dev/null and b/website/static/img/resources/oci/devops/api-service.png differ diff --git a/website/static/img/resources/oci/devops/resource-mgmt-white.png b/website/static/img/resources/oci/devops/resource-mgmt-white.png new file mode 100644 index 00000000..ccf19009 Binary files /dev/null and b/website/static/img/resources/oci/devops/resource-mgmt-white.png differ diff --git a/website/static/img/resources/oci/devops/resource-mgmt.png b/website/static/img/resources/oci/devops/resource-mgmt.png new file mode 100644 index 00000000..97cc3975 Binary files /dev/null and b/website/static/img/resources/oci/devops/resource-mgmt.png differ diff --git a/website/static/img/resources/oci/governance/audit-white.png b/website/static/img/resources/oci/governance/audit-white.png new file mode 100644 index 00000000..dc861eb5 Binary files /dev/null and b/website/static/img/resources/oci/governance/audit-white.png differ diff --git a/website/static/img/resources/oci/governance/audit.png b/website/static/img/resources/oci/governance/audit.png new file mode 100644 index 00000000..d5d7b617 Binary files /dev/null and b/website/static/img/resources/oci/governance/audit.png differ diff --git a/website/static/img/resources/oci/governance/compartments-white.png b/website/static/img/resources/oci/governance/compartments-white.png new file mode 100644 index 00000000..c4271c34 Binary files /dev/null and b/website/static/img/resources/oci/governance/compartments-white.png differ diff --git a/website/static/img/resources/oci/governance/compartments.png b/website/static/img/resources/oci/governance/compartments.png new file mode 100644 index 00000000..8b9a9de6 Binary files /dev/null and b/website/static/img/resources/oci/governance/compartments.png differ diff --git a/website/static/img/resources/oci/governance/groups-white.png b/website/static/img/resources/oci/governance/groups-white.png new file mode 100644 index 00000000..3052cef6 Binary files /dev/null and b/website/static/img/resources/oci/governance/groups-white.png differ diff --git a/website/static/img/resources/oci/governance/groups.png b/website/static/img/resources/oci/governance/groups.png new file mode 100644 index 00000000..34f1064b Binary files /dev/null and b/website/static/img/resources/oci/governance/groups.png differ diff --git a/website/static/img/resources/oci/governance/logging-white.png b/website/static/img/resources/oci/governance/logging-white.png new file mode 100644 index 00000000..99b5db2d Binary files /dev/null and b/website/static/img/resources/oci/governance/logging-white.png differ diff --git a/website/static/img/resources/oci/governance/logging.png b/website/static/img/resources/oci/governance/logging.png new file mode 100644 index 00000000..50e6836a Binary files /dev/null and b/website/static/img/resources/oci/governance/logging.png differ diff --git a/website/static/img/resources/oci/governance/ocid-white.png b/website/static/img/resources/oci/governance/ocid-white.png new file mode 100644 index 00000000..a69576ae Binary files /dev/null and b/website/static/img/resources/oci/governance/ocid-white.png differ diff --git a/website/static/img/resources/oci/governance/ocid.png b/website/static/img/resources/oci/governance/ocid.png new file mode 100644 index 00000000..c5200b34 Binary files /dev/null and b/website/static/img/resources/oci/governance/ocid.png differ diff --git a/website/static/img/resources/oci/governance/policies-white.png b/website/static/img/resources/oci/governance/policies-white.png new file mode 100644 index 00000000..936271cb Binary files /dev/null and b/website/static/img/resources/oci/governance/policies-white.png differ diff --git a/website/static/img/resources/oci/governance/policies.png b/website/static/img/resources/oci/governance/policies.png new file mode 100644 index 00000000..988efa23 Binary files /dev/null and b/website/static/img/resources/oci/governance/policies.png differ diff --git a/website/static/img/resources/oci/governance/tagging-white.png b/website/static/img/resources/oci/governance/tagging-white.png new file mode 100644 index 00000000..1d27cc47 Binary files /dev/null and b/website/static/img/resources/oci/governance/tagging-white.png differ diff --git a/website/static/img/resources/oci/governance/tagging.png b/website/static/img/resources/oci/governance/tagging.png new file mode 100644 index 00000000..d8bfb7eb Binary files /dev/null and b/website/static/img/resources/oci/governance/tagging.png differ diff --git a/website/static/img/resources/oci/monitoring/alarm-white.png b/website/static/img/resources/oci/monitoring/alarm-white.png new file mode 100644 index 00000000..e91831b2 Binary files /dev/null and b/website/static/img/resources/oci/monitoring/alarm-white.png differ diff --git a/website/static/img/resources/oci/monitoring/alarm.png b/website/static/img/resources/oci/monitoring/alarm.png new file mode 100644 index 00000000..372e3590 Binary files /dev/null and b/website/static/img/resources/oci/monitoring/alarm.png differ diff --git a/website/static/img/resources/oci/monitoring/email-white.png b/website/static/img/resources/oci/monitoring/email-white.png new file mode 100644 index 00000000..a9201a7a Binary files /dev/null and b/website/static/img/resources/oci/monitoring/email-white.png differ diff --git a/website/static/img/resources/oci/monitoring/email.png b/website/static/img/resources/oci/monitoring/email.png new file mode 100644 index 00000000..f8d843c8 Binary files /dev/null and b/website/static/img/resources/oci/monitoring/email.png differ diff --git a/website/static/img/resources/oci/monitoring/events-white.png b/website/static/img/resources/oci/monitoring/events-white.png new file mode 100644 index 00000000..6445a224 Binary files /dev/null and b/website/static/img/resources/oci/monitoring/events-white.png differ diff --git a/website/static/img/resources/oci/monitoring/events.png b/website/static/img/resources/oci/monitoring/events.png new file mode 100644 index 00000000..465be4b6 Binary files /dev/null and b/website/static/img/resources/oci/monitoring/events.png differ diff --git a/website/static/img/resources/oci/monitoring/health-check-white.png b/website/static/img/resources/oci/monitoring/health-check-white.png new file mode 100644 index 00000000..4b1dea4e Binary files /dev/null and b/website/static/img/resources/oci/monitoring/health-check-white.png differ diff --git a/website/static/img/resources/oci/monitoring/health-check.png b/website/static/img/resources/oci/monitoring/health-check.png new file mode 100644 index 00000000..96794e87 Binary files /dev/null and b/website/static/img/resources/oci/monitoring/health-check.png differ diff --git a/website/static/img/resources/oci/monitoring/notifications-white.png b/website/static/img/resources/oci/monitoring/notifications-white.png new file mode 100644 index 00000000..bf74ef70 Binary files /dev/null and b/website/static/img/resources/oci/monitoring/notifications-white.png differ diff --git a/website/static/img/resources/oci/monitoring/notifications.png b/website/static/img/resources/oci/monitoring/notifications.png new file mode 100644 index 00000000..059ca8f5 Binary files /dev/null and b/website/static/img/resources/oci/monitoring/notifications.png differ diff --git a/website/static/img/resources/oci/monitoring/queue-white.png b/website/static/img/resources/oci/monitoring/queue-white.png new file mode 100644 index 00000000..9f8751dd Binary files /dev/null and b/website/static/img/resources/oci/monitoring/queue-white.png differ diff --git a/website/static/img/resources/oci/monitoring/queue.png b/website/static/img/resources/oci/monitoring/queue.png new file mode 100644 index 00000000..38da334b Binary files /dev/null and b/website/static/img/resources/oci/monitoring/queue.png differ diff --git a/website/static/img/resources/oci/monitoring/search-white.png b/website/static/img/resources/oci/monitoring/search-white.png new file mode 100644 index 00000000..44f6f7cc Binary files /dev/null and b/website/static/img/resources/oci/monitoring/search-white.png differ diff --git a/website/static/img/resources/oci/monitoring/search.png b/website/static/img/resources/oci/monitoring/search.png new file mode 100644 index 00000000..af5f951d Binary files /dev/null and b/website/static/img/resources/oci/monitoring/search.png differ diff --git a/website/static/img/resources/oci/monitoring/telemetry-white.png b/website/static/img/resources/oci/monitoring/telemetry-white.png new file mode 100644 index 00000000..9421c90b Binary files /dev/null and b/website/static/img/resources/oci/monitoring/telemetry-white.png differ diff --git a/website/static/img/resources/oci/monitoring/telemetry.png b/website/static/img/resources/oci/monitoring/telemetry.png new file mode 100644 index 00000000..a5d4931a Binary files /dev/null and b/website/static/img/resources/oci/monitoring/telemetry.png differ diff --git a/website/static/img/resources/oci/monitoring/workflow-white.png b/website/static/img/resources/oci/monitoring/workflow-white.png new file mode 100644 index 00000000..0971ed5e Binary files /dev/null and b/website/static/img/resources/oci/monitoring/workflow-white.png differ diff --git a/website/static/img/resources/oci/monitoring/workflow.png b/website/static/img/resources/oci/monitoring/workflow.png new file mode 100644 index 00000000..9ce2300e Binary files /dev/null and b/website/static/img/resources/oci/monitoring/workflow.png differ diff --git a/website/static/img/resources/oci/network/drg-white.png b/website/static/img/resources/oci/network/drg-white.png new file mode 100644 index 00000000..34848977 Binary files /dev/null and b/website/static/img/resources/oci/network/drg-white.png differ diff --git a/website/static/img/resources/oci/network/drg.png b/website/static/img/resources/oci/network/drg.png new file mode 100644 index 00000000..b1aaba9b Binary files /dev/null and b/website/static/img/resources/oci/network/drg.png differ diff --git a/website/static/img/resources/oci/network/firewall-white.png b/website/static/img/resources/oci/network/firewall-white.png new file mode 100644 index 00000000..40f6631e Binary files /dev/null and b/website/static/img/resources/oci/network/firewall-white.png differ diff --git a/website/static/img/resources/oci/network/firewall.png b/website/static/img/resources/oci/network/firewall.png new file mode 100644 index 00000000..6c572b43 Binary files /dev/null and b/website/static/img/resources/oci/network/firewall.png differ diff --git a/website/static/img/resources/oci/network/internet-gateway-white.png b/website/static/img/resources/oci/network/internet-gateway-white.png new file mode 100644 index 00000000..b7a8a01e Binary files /dev/null and b/website/static/img/resources/oci/network/internet-gateway-white.png differ diff --git a/website/static/img/resources/oci/network/internet-gateway.png b/website/static/img/resources/oci/network/internet-gateway.png new file mode 100644 index 00000000..1762239a Binary files /dev/null and b/website/static/img/resources/oci/network/internet-gateway.png differ diff --git a/website/static/img/resources/oci/network/load-balancer-white.png b/website/static/img/resources/oci/network/load-balancer-white.png new file mode 100644 index 00000000..12a3d33c Binary files /dev/null and b/website/static/img/resources/oci/network/load-balancer-white.png differ diff --git a/website/static/img/resources/oci/network/load-balancer.png b/website/static/img/resources/oci/network/load-balancer.png new file mode 100644 index 00000000..504a5acd Binary files /dev/null and b/website/static/img/resources/oci/network/load-balancer.png differ diff --git a/website/static/img/resources/oci/network/route-table-white.png b/website/static/img/resources/oci/network/route-table-white.png new file mode 100644 index 00000000..0826ba4d Binary files /dev/null and b/website/static/img/resources/oci/network/route-table-white.png differ diff --git a/website/static/img/resources/oci/network/route-table.png b/website/static/img/resources/oci/network/route-table.png new file mode 100644 index 00000000..3733e06b Binary files /dev/null and b/website/static/img/resources/oci/network/route-table.png differ diff --git a/website/static/img/resources/oci/network/security-lists-white.png b/website/static/img/resources/oci/network/security-lists-white.png new file mode 100644 index 00000000..6151b8b2 Binary files /dev/null and b/website/static/img/resources/oci/network/security-lists-white.png differ diff --git a/website/static/img/resources/oci/network/security-lists.png b/website/static/img/resources/oci/network/security-lists.png new file mode 100644 index 00000000..8bcc72fe Binary files /dev/null and b/website/static/img/resources/oci/network/security-lists.png differ diff --git a/website/static/img/resources/oci/network/service-gateway-white.png b/website/static/img/resources/oci/network/service-gateway-white.png new file mode 100644 index 00000000..b0d820d3 Binary files /dev/null and b/website/static/img/resources/oci/network/service-gateway-white.png differ diff --git a/website/static/img/resources/oci/network/service-gateway.png b/website/static/img/resources/oci/network/service-gateway.png new file mode 100644 index 00000000..548c87af Binary files /dev/null and b/website/static/img/resources/oci/network/service-gateway.png differ diff --git a/website/static/img/resources/oci/network/vcn-white.png b/website/static/img/resources/oci/network/vcn-white.png new file mode 100644 index 00000000..e217effe Binary files /dev/null and b/website/static/img/resources/oci/network/vcn-white.png differ diff --git a/website/static/img/resources/oci/network/vcn.png b/website/static/img/resources/oci/network/vcn.png new file mode 100644 index 00000000..aefa7004 Binary files /dev/null and b/website/static/img/resources/oci/network/vcn.png differ diff --git a/website/static/img/resources/oci/security/cloud-guard-white.png b/website/static/img/resources/oci/security/cloud-guard-white.png new file mode 100644 index 00000000..db4a78d1 Binary files /dev/null and b/website/static/img/resources/oci/security/cloud-guard-white.png differ diff --git a/website/static/img/resources/oci/security/cloud-guard.png b/website/static/img/resources/oci/security/cloud-guard.png new file mode 100644 index 00000000..8c7c8a5e Binary files /dev/null and b/website/static/img/resources/oci/security/cloud-guard.png differ diff --git a/website/static/img/resources/oci/security/ddos-white.png b/website/static/img/resources/oci/security/ddos-white.png new file mode 100644 index 00000000..6657c0b9 Binary files /dev/null and b/website/static/img/resources/oci/security/ddos-white.png differ diff --git a/website/static/img/resources/oci/security/ddos.png b/website/static/img/resources/oci/security/ddos.png new file mode 100644 index 00000000..e2fafae4 Binary files /dev/null and b/website/static/img/resources/oci/security/ddos.png differ diff --git a/website/static/img/resources/oci/security/encryption-white.png b/website/static/img/resources/oci/security/encryption-white.png new file mode 100644 index 00000000..f85f3577 Binary files /dev/null and b/website/static/img/resources/oci/security/encryption-white.png differ diff --git a/website/static/img/resources/oci/security/encryption.png b/website/static/img/resources/oci/security/encryption.png new file mode 100644 index 00000000..16c1b125 Binary files /dev/null and b/website/static/img/resources/oci/security/encryption.png differ diff --git a/website/static/img/resources/oci/security/id-access-white.png b/website/static/img/resources/oci/security/id-access-white.png new file mode 100644 index 00000000..597db448 Binary files /dev/null and b/website/static/img/resources/oci/security/id-access-white.png differ diff --git a/website/static/img/resources/oci/security/id-access.png b/website/static/img/resources/oci/security/id-access.png new file mode 100644 index 00000000..0beebb1b Binary files /dev/null and b/website/static/img/resources/oci/security/id-access.png differ diff --git a/website/static/img/resources/oci/security/key-management-white.png b/website/static/img/resources/oci/security/key-management-white.png new file mode 100644 index 00000000..26cdeeae Binary files /dev/null and b/website/static/img/resources/oci/security/key-management-white.png differ diff --git a/website/static/img/resources/oci/security/key-management.png b/website/static/img/resources/oci/security/key-management.png new file mode 100644 index 00000000..83e43330 Binary files /dev/null and b/website/static/img/resources/oci/security/key-management.png differ diff --git a/website/static/img/resources/oci/security/max-security-zone-white.png b/website/static/img/resources/oci/security/max-security-zone-white.png new file mode 100644 index 00000000..27da254a Binary files /dev/null and b/website/static/img/resources/oci/security/max-security-zone-white.png differ diff --git a/website/static/img/resources/oci/security/max-security-zone.png b/website/static/img/resources/oci/security/max-security-zone.png new file mode 100644 index 00000000..71f98d52 Binary files /dev/null and b/website/static/img/resources/oci/security/max-security-zone.png differ diff --git a/website/static/img/resources/oci/security/vault-white.png b/website/static/img/resources/oci/security/vault-white.png new file mode 100644 index 00000000..74c18ff8 Binary files /dev/null and b/website/static/img/resources/oci/security/vault-white.png differ diff --git a/website/static/img/resources/oci/security/vault.png b/website/static/img/resources/oci/security/vault.png new file mode 100644 index 00000000..68789b9c Binary files /dev/null and b/website/static/img/resources/oci/security/vault.png differ diff --git a/website/static/img/resources/oci/security/waf-white.png b/website/static/img/resources/oci/security/waf-white.png new file mode 100644 index 00000000..c938ec28 Binary files /dev/null and b/website/static/img/resources/oci/security/waf-white.png differ diff --git a/website/static/img/resources/oci/security/waf.png b/website/static/img/resources/oci/security/waf.png new file mode 100644 index 00000000..e268c965 Binary files /dev/null and b/website/static/img/resources/oci/security/waf.png differ diff --git a/website/static/img/resources/oci/storage/backup-restore-white.png b/website/static/img/resources/oci/storage/backup-restore-white.png new file mode 100644 index 00000000..e322b6aa Binary files /dev/null and b/website/static/img/resources/oci/storage/backup-restore-white.png differ diff --git a/website/static/img/resources/oci/storage/backup-restore.png b/website/static/img/resources/oci/storage/backup-restore.png new file mode 100644 index 00000000..5d9c3415 Binary files /dev/null and b/website/static/img/resources/oci/storage/backup-restore.png differ diff --git a/website/static/img/resources/oci/storage/block-storage-clone-white.png b/website/static/img/resources/oci/storage/block-storage-clone-white.png new file mode 100644 index 00000000..a372e484 Binary files /dev/null and b/website/static/img/resources/oci/storage/block-storage-clone-white.png differ diff --git a/website/static/img/resources/oci/storage/block-storage-clone.png b/website/static/img/resources/oci/storage/block-storage-clone.png new file mode 100644 index 00000000..f97b3da8 Binary files /dev/null and b/website/static/img/resources/oci/storage/block-storage-clone.png differ diff --git a/website/static/img/resources/oci/storage/block-storage-white.png b/website/static/img/resources/oci/storage/block-storage-white.png new file mode 100644 index 00000000..d78a1aaa Binary files /dev/null and b/website/static/img/resources/oci/storage/block-storage-white.png differ diff --git a/website/static/img/resources/oci/storage/block-storage.png b/website/static/img/resources/oci/storage/block-storage.png new file mode 100644 index 00000000..c2408c4e Binary files /dev/null and b/website/static/img/resources/oci/storage/block-storage.png differ diff --git a/website/static/img/resources/oci/storage/buckets-white.png b/website/static/img/resources/oci/storage/buckets-white.png new file mode 100644 index 00000000..2607e45f Binary files /dev/null and b/website/static/img/resources/oci/storage/buckets-white.png differ diff --git a/website/static/img/resources/oci/storage/buckets.png b/website/static/img/resources/oci/storage/buckets.png new file mode 100644 index 00000000..c93e6910 Binary files /dev/null and b/website/static/img/resources/oci/storage/buckets.png differ diff --git a/website/static/img/resources/oci/storage/data-transfer-white.png b/website/static/img/resources/oci/storage/data-transfer-white.png new file mode 100644 index 00000000..06e72e0c Binary files /dev/null and b/website/static/img/resources/oci/storage/data-transfer-white.png differ diff --git a/website/static/img/resources/oci/storage/data-transfer.png b/website/static/img/resources/oci/storage/data-transfer.png new file mode 100644 index 00000000..ebdfe816 Binary files /dev/null and b/website/static/img/resources/oci/storage/data-transfer.png differ diff --git a/website/static/img/resources/oci/storage/elastic-performance-white.png b/website/static/img/resources/oci/storage/elastic-performance-white.png new file mode 100644 index 00000000..ce8116f9 Binary files /dev/null and b/website/static/img/resources/oci/storage/elastic-performance-white.png differ diff --git a/website/static/img/resources/oci/storage/elastic-performance.png b/website/static/img/resources/oci/storage/elastic-performance.png new file mode 100644 index 00000000..627e2397 Binary files /dev/null and b/website/static/img/resources/oci/storage/elastic-performance.png differ diff --git a/website/static/img/resources/oci/storage/file-storage-white.png b/website/static/img/resources/oci/storage/file-storage-white.png new file mode 100644 index 00000000..0380d32b Binary files /dev/null and b/website/static/img/resources/oci/storage/file-storage-white.png differ diff --git a/website/static/img/resources/oci/storage/file-storage.png b/website/static/img/resources/oci/storage/file-storage.png new file mode 100644 index 00000000..c3cb4d9b Binary files /dev/null and b/website/static/img/resources/oci/storage/file-storage.png differ diff --git a/website/static/img/resources/oci/storage/object-storage-white.png b/website/static/img/resources/oci/storage/object-storage-white.png new file mode 100644 index 00000000..838b5353 Binary files /dev/null and b/website/static/img/resources/oci/storage/object-storage-white.png differ diff --git a/website/static/img/resources/oci/storage/object-storage.png b/website/static/img/resources/oci/storage/object-storage.png new file mode 100644 index 00000000..6bba0aa6 Binary files /dev/null and b/website/static/img/resources/oci/storage/object-storage.png differ diff --git a/website/static/img/resources/oci/storage/storage-gateway-white.png b/website/static/img/resources/oci/storage/storage-gateway-white.png new file mode 100644 index 00000000..8b5dad4f Binary files /dev/null and b/website/static/img/resources/oci/storage/storage-gateway-white.png differ diff --git a/website/static/img/resources/oci/storage/storage-gateway.png b/website/static/img/resources/oci/storage/storage-gateway.png new file mode 100644 index 00000000..642e47af Binary files /dev/null and b/website/static/img/resources/oci/storage/storage-gateway.png differ diff --git a/website/static/img/resources/onprem/aggregator/fluentd.png b/website/static/img/resources/onprem/aggregator/fluentd.png new file mode 100644 index 00000000..03c70262 Binary files /dev/null and b/website/static/img/resources/onprem/aggregator/fluentd.png differ diff --git a/website/static/img/resources/onprem/aggregator/vector.png b/website/static/img/resources/onprem/aggregator/vector.png new file mode 100644 index 00000000..a1ea5a44 Binary files /dev/null and b/website/static/img/resources/onprem/aggregator/vector.png differ diff --git a/website/static/img/resources/onprem/analytics/beam.png b/website/static/img/resources/onprem/analytics/beam.png new file mode 100644 index 00000000..c0306b42 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/beam.png differ diff --git a/website/static/img/resources/onprem/analytics/databricks.png b/website/static/img/resources/onprem/analytics/databricks.png new file mode 100644 index 00000000..5842e283 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/databricks.png differ diff --git a/website/static/img/resources/onprem/analytics/dbt.png b/website/static/img/resources/onprem/analytics/dbt.png new file mode 100644 index 00000000..5e221ab2 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/dbt.png differ diff --git a/website/static/img/resources/onprem/analytics/dremio.png b/website/static/img/resources/onprem/analytics/dremio.png new file mode 100644 index 00000000..ba4c8b1d Binary files /dev/null and b/website/static/img/resources/onprem/analytics/dremio.png differ diff --git a/website/static/img/resources/onprem/analytics/flink.png b/website/static/img/resources/onprem/analytics/flink.png new file mode 100644 index 00000000..92bec0d2 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/flink.png differ diff --git a/website/static/img/resources/onprem/analytics/hadoop.png b/website/static/img/resources/onprem/analytics/hadoop.png new file mode 100644 index 00000000..cd16a839 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/hadoop.png differ diff --git a/website/static/img/resources/onprem/analytics/hive.png b/website/static/img/resources/onprem/analytics/hive.png new file mode 100644 index 00000000..1fb30364 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/hive.png differ diff --git a/website/static/img/resources/onprem/analytics/metabase.png b/website/static/img/resources/onprem/analytics/metabase.png new file mode 100644 index 00000000..37ee8cf8 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/metabase.png differ diff --git a/website/static/img/resources/onprem/analytics/norikra.png b/website/static/img/resources/onprem/analytics/norikra.png new file mode 100644 index 00000000..8505cfba Binary files /dev/null and b/website/static/img/resources/onprem/analytics/norikra.png differ diff --git a/website/static/img/resources/onprem/analytics/powerbi.png b/website/static/img/resources/onprem/analytics/powerbi.png new file mode 100644 index 00000000..9783fc94 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/powerbi.png differ diff --git a/website/static/img/resources/onprem/analytics/presto.png b/website/static/img/resources/onprem/analytics/presto.png new file mode 100644 index 00000000..7d975196 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/presto.png differ diff --git a/website/static/img/resources/onprem/analytics/singer.png b/website/static/img/resources/onprem/analytics/singer.png new file mode 100644 index 00000000..4577d249 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/singer.png differ diff --git a/website/static/img/resources/onprem/analytics/spark.png b/website/static/img/resources/onprem/analytics/spark.png new file mode 100644 index 00000000..8bd42f31 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/spark.png differ diff --git a/website/static/img/resources/onprem/analytics/storm.png b/website/static/img/resources/onprem/analytics/storm.png new file mode 100644 index 00000000..5134e18d Binary files /dev/null and b/website/static/img/resources/onprem/analytics/storm.png differ diff --git a/website/static/img/resources/onprem/analytics/superset.png b/website/static/img/resources/onprem/analytics/superset.png new file mode 100644 index 00000000..e5272ac7 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/superset.png differ diff --git a/website/static/img/resources/onprem/analytics/tableau.png b/website/static/img/resources/onprem/analytics/tableau.png new file mode 100644 index 00000000..65ab0d91 Binary files /dev/null and b/website/static/img/resources/onprem/analytics/tableau.png differ diff --git a/website/static/img/resources/onprem/analytics/trino.png b/website/static/img/resources/onprem/analytics/trino.png new file mode 100644 index 00000000..57de0e6c Binary files /dev/null and b/website/static/img/resources/onprem/analytics/trino.png differ diff --git a/website/static/img/resources/onprem/auth/boundary.png b/website/static/img/resources/onprem/auth/boundary.png new file mode 100644 index 00000000..d5751ae4 Binary files /dev/null and b/website/static/img/resources/onprem/auth/boundary.png differ diff --git a/website/static/img/resources/onprem/auth/buzzfeed-sso.png b/website/static/img/resources/onprem/auth/buzzfeed-sso.png new file mode 100644 index 00000000..e135d398 Binary files /dev/null and b/website/static/img/resources/onprem/auth/buzzfeed-sso.png differ diff --git a/website/static/img/resources/onprem/auth/oauth2-proxy.png b/website/static/img/resources/onprem/auth/oauth2-proxy.png new file mode 100644 index 00000000..87b32c4c Binary files /dev/null and b/website/static/img/resources/onprem/auth/oauth2-proxy.png differ diff --git a/website/static/img/resources/onprem/cd/spinnaker.png b/website/static/img/resources/onprem/cd/spinnaker.png new file mode 100644 index 00000000..d9ffbe91 Binary files /dev/null and b/website/static/img/resources/onprem/cd/spinnaker.png differ diff --git a/website/static/img/resources/onprem/cd/tekton-cli.png b/website/static/img/resources/onprem/cd/tekton-cli.png new file mode 100644 index 00000000..9adcb0ae Binary files /dev/null and b/website/static/img/resources/onprem/cd/tekton-cli.png differ diff --git a/website/static/img/resources/onprem/cd/tekton.png b/website/static/img/resources/onprem/cd/tekton.png new file mode 100644 index 00000000..6f52a6a5 Binary files /dev/null and b/website/static/img/resources/onprem/cd/tekton.png differ diff --git a/website/static/img/resources/onprem/certificates/cert-manager.png b/website/static/img/resources/onprem/certificates/cert-manager.png new file mode 100644 index 00000000..72bd2754 Binary files /dev/null and b/website/static/img/resources/onprem/certificates/cert-manager.png differ diff --git a/website/static/img/resources/onprem/certificates/lets-encrypt.png b/website/static/img/resources/onprem/certificates/lets-encrypt.png new file mode 100644 index 00000000..9963960f Binary files /dev/null and b/website/static/img/resources/onprem/certificates/lets-encrypt.png differ diff --git a/website/static/img/resources/onprem/ci/circleci.png b/website/static/img/resources/onprem/ci/circleci.png new file mode 100644 index 00000000..fd5426cf Binary files /dev/null and b/website/static/img/resources/onprem/ci/circleci.png differ diff --git a/website/static/img/resources/onprem/ci/concourseci.png b/website/static/img/resources/onprem/ci/concourseci.png new file mode 100644 index 00000000..0cb0e346 Binary files /dev/null and b/website/static/img/resources/onprem/ci/concourseci.png differ diff --git a/website/static/img/resources/onprem/ci/droneci.png b/website/static/img/resources/onprem/ci/droneci.png new file mode 100644 index 00000000..d40613f6 Binary files /dev/null and b/website/static/img/resources/onprem/ci/droneci.png differ diff --git a/website/static/img/resources/onprem/ci/github-actions.png b/website/static/img/resources/onprem/ci/github-actions.png new file mode 100644 index 00000000..b077f3bd Binary files /dev/null and b/website/static/img/resources/onprem/ci/github-actions.png differ diff --git a/website/static/img/resources/onprem/ci/gitlabci.png b/website/static/img/resources/onprem/ci/gitlabci.png new file mode 100644 index 00000000..5cc42cda Binary files /dev/null and b/website/static/img/resources/onprem/ci/gitlabci.png differ diff --git a/website/static/img/resources/onprem/ci/jenkins.png b/website/static/img/resources/onprem/ci/jenkins.png new file mode 100644 index 00000000..29f6b94a Binary files /dev/null and b/website/static/img/resources/onprem/ci/jenkins.png differ diff --git a/website/static/img/resources/onprem/ci/teamcity.png b/website/static/img/resources/onprem/ci/teamcity.png new file mode 100644 index 00000000..54e922d1 Binary files /dev/null and b/website/static/img/resources/onprem/ci/teamcity.png differ diff --git a/website/static/img/resources/onprem/ci/travisci.png b/website/static/img/resources/onprem/ci/travisci.png new file mode 100644 index 00000000..3d52d167 Binary files /dev/null and b/website/static/img/resources/onprem/ci/travisci.png differ diff --git a/website/static/img/resources/onprem/ci/zuulci.png b/website/static/img/resources/onprem/ci/zuulci.png new file mode 100644 index 00000000..40c0f2fa Binary files /dev/null and b/website/static/img/resources/onprem/ci/zuulci.png differ diff --git a/website/static/img/resources/onprem/client/client.png b/website/static/img/resources/onprem/client/client.png new file mode 100644 index 00000000..2d9a8f76 Binary files /dev/null and b/website/static/img/resources/onprem/client/client.png differ diff --git a/website/static/img/resources/onprem/client/user.png b/website/static/img/resources/onprem/client/user.png new file mode 100644 index 00000000..fb91f742 Binary files /dev/null and b/website/static/img/resources/onprem/client/user.png differ diff --git a/website/static/img/resources/onprem/client/users.png b/website/static/img/resources/onprem/client/users.png new file mode 100644 index 00000000..5cb409b7 Binary files /dev/null and b/website/static/img/resources/onprem/client/users.png differ diff --git a/website/static/img/resources/onprem/compute/nomad.png b/website/static/img/resources/onprem/compute/nomad.png new file mode 100644 index 00000000..b937933b Binary files /dev/null and b/website/static/img/resources/onprem/compute/nomad.png differ diff --git a/website/static/img/resources/onprem/compute/server.png b/website/static/img/resources/onprem/compute/server.png new file mode 100644 index 00000000..6230344b Binary files /dev/null and b/website/static/img/resources/onprem/compute/server.png differ diff --git a/website/static/img/resources/onprem/container/containerd.png b/website/static/img/resources/onprem/container/containerd.png new file mode 100644 index 00000000..40032b6d Binary files /dev/null and b/website/static/img/resources/onprem/container/containerd.png differ diff --git a/website/static/img/resources/onprem/container/crio.png b/website/static/img/resources/onprem/container/crio.png new file mode 100644 index 00000000..dab25ba1 Binary files /dev/null and b/website/static/img/resources/onprem/container/crio.png differ diff --git a/website/static/img/resources/onprem/container/docker.png b/website/static/img/resources/onprem/container/docker.png new file mode 100644 index 00000000..5b7e067d Binary files /dev/null and b/website/static/img/resources/onprem/container/docker.png differ diff --git a/website/static/img/resources/onprem/container/firecracker.png b/website/static/img/resources/onprem/container/firecracker.png new file mode 100644 index 00000000..522ffa3e Binary files /dev/null and b/website/static/img/resources/onprem/container/firecracker.png differ diff --git a/website/static/img/resources/onprem/container/gvisor.png b/website/static/img/resources/onprem/container/gvisor.png new file mode 100644 index 00000000..258ce7a1 Binary files /dev/null and b/website/static/img/resources/onprem/container/gvisor.png differ diff --git a/website/static/img/resources/onprem/container/k3s.png b/website/static/img/resources/onprem/container/k3s.png new file mode 100644 index 00000000..eb9330c5 Binary files /dev/null and b/website/static/img/resources/onprem/container/k3s.png differ diff --git a/website/static/img/resources/onprem/container/lxc.png b/website/static/img/resources/onprem/container/lxc.png new file mode 100644 index 00000000..66182e6c Binary files /dev/null and b/website/static/img/resources/onprem/container/lxc.png differ diff --git a/website/static/img/resources/onprem/container/rkt.png b/website/static/img/resources/onprem/container/rkt.png new file mode 100644 index 00000000..b244f500 Binary files /dev/null and b/website/static/img/resources/onprem/container/rkt.png differ diff --git a/website/static/img/resources/onprem/database/cassandra.png b/website/static/img/resources/onprem/database/cassandra.png new file mode 100644 index 00000000..42ca73f3 Binary files /dev/null and b/website/static/img/resources/onprem/database/cassandra.png differ diff --git a/website/static/img/resources/onprem/database/clickhouse.png b/website/static/img/resources/onprem/database/clickhouse.png new file mode 100644 index 00000000..55263779 Binary files /dev/null and b/website/static/img/resources/onprem/database/clickhouse.png differ diff --git a/website/static/img/resources/onprem/database/cockroachdb.png b/website/static/img/resources/onprem/database/cockroachdb.png new file mode 100644 index 00000000..d34cbad0 Binary files /dev/null and b/website/static/img/resources/onprem/database/cockroachdb.png differ diff --git a/website/static/img/resources/onprem/database/couchbase.png b/website/static/img/resources/onprem/database/couchbase.png new file mode 100644 index 00000000..6144f54b Binary files /dev/null and b/website/static/img/resources/onprem/database/couchbase.png differ diff --git a/website/static/img/resources/onprem/database/couchdb.png b/website/static/img/resources/onprem/database/couchdb.png new file mode 100644 index 00000000..42ddf374 Binary files /dev/null and b/website/static/img/resources/onprem/database/couchdb.png differ diff --git a/website/static/img/resources/onprem/database/dgraph.png b/website/static/img/resources/onprem/database/dgraph.png new file mode 100644 index 00000000..26c0c207 Binary files /dev/null and b/website/static/img/resources/onprem/database/dgraph.png differ diff --git a/website/static/img/resources/onprem/database/druid.png b/website/static/img/resources/onprem/database/druid.png new file mode 100644 index 00000000..de8a6302 Binary files /dev/null and b/website/static/img/resources/onprem/database/druid.png differ diff --git a/website/static/img/resources/onprem/database/hbase.png b/website/static/img/resources/onprem/database/hbase.png new file mode 100644 index 00000000..a72745e5 Binary files /dev/null and b/website/static/img/resources/onprem/database/hbase.png differ diff --git a/website/static/img/resources/onprem/database/influxdb.png b/website/static/img/resources/onprem/database/influxdb.png new file mode 100644 index 00000000..c86e1b56 Binary files /dev/null and b/website/static/img/resources/onprem/database/influxdb.png differ diff --git a/website/static/img/resources/onprem/database/janusgraph.png b/website/static/img/resources/onprem/database/janusgraph.png new file mode 100644 index 00000000..4779808c Binary files /dev/null and b/website/static/img/resources/onprem/database/janusgraph.png differ diff --git a/website/static/img/resources/onprem/database/mariadb.png b/website/static/img/resources/onprem/database/mariadb.png new file mode 100644 index 00000000..adeecd3a Binary files /dev/null and b/website/static/img/resources/onprem/database/mariadb.png differ diff --git a/website/static/img/resources/onprem/database/mongodb.png b/website/static/img/resources/onprem/database/mongodb.png new file mode 100644 index 00000000..af529904 Binary files /dev/null and b/website/static/img/resources/onprem/database/mongodb.png differ diff --git a/website/static/img/resources/onprem/database/mssql.png b/website/static/img/resources/onprem/database/mssql.png new file mode 100644 index 00000000..57c8c944 Binary files /dev/null and b/website/static/img/resources/onprem/database/mssql.png differ diff --git a/website/static/img/resources/onprem/database/mysql.png b/website/static/img/resources/onprem/database/mysql.png new file mode 100644 index 00000000..d8a2b930 Binary files /dev/null and b/website/static/img/resources/onprem/database/mysql.png differ diff --git a/website/static/img/resources/onprem/database/neo4j.png b/website/static/img/resources/onprem/database/neo4j.png new file mode 100644 index 00000000..5c6a2f15 Binary files /dev/null and b/website/static/img/resources/onprem/database/neo4j.png differ diff --git a/website/static/img/resources/onprem/database/oracle.png b/website/static/img/resources/onprem/database/oracle.png new file mode 100644 index 00000000..d673ce3c Binary files /dev/null and b/website/static/img/resources/onprem/database/oracle.png differ diff --git a/website/static/img/resources/onprem/database/postgresql.png b/website/static/img/resources/onprem/database/postgresql.png new file mode 100644 index 00000000..0381b341 Binary files /dev/null and b/website/static/img/resources/onprem/database/postgresql.png differ diff --git a/website/static/img/resources/onprem/database/scylla.png b/website/static/img/resources/onprem/database/scylla.png new file mode 100644 index 00000000..5d16eac2 Binary files /dev/null and b/website/static/img/resources/onprem/database/scylla.png differ diff --git a/website/static/img/resources/onprem/dns/coredns.png b/website/static/img/resources/onprem/dns/coredns.png new file mode 100644 index 00000000..3e10191a Binary files /dev/null and b/website/static/img/resources/onprem/dns/coredns.png differ diff --git a/website/static/img/resources/onprem/dns/powerdns.png b/website/static/img/resources/onprem/dns/powerdns.png new file mode 100644 index 00000000..62bca8bf Binary files /dev/null and b/website/static/img/resources/onprem/dns/powerdns.png differ diff --git a/website/static/img/resources/onprem/etl/embulk.png b/website/static/img/resources/onprem/etl/embulk.png new file mode 100644 index 00000000..5701a7dc Binary files /dev/null and b/website/static/img/resources/onprem/etl/embulk.png differ diff --git a/website/static/img/resources/onprem/gitops/argocd.png b/website/static/img/resources/onprem/gitops/argocd.png new file mode 100644 index 00000000..5351a12e Binary files /dev/null and b/website/static/img/resources/onprem/gitops/argocd.png differ diff --git a/website/static/img/resources/onprem/gitops/flagger.png b/website/static/img/resources/onprem/gitops/flagger.png new file mode 100644 index 00000000..de8835df Binary files /dev/null and b/website/static/img/resources/onprem/gitops/flagger.png differ diff --git a/website/static/img/resources/onprem/gitops/flux.png b/website/static/img/resources/onprem/gitops/flux.png new file mode 100644 index 00000000..057b6361 Binary files /dev/null and b/website/static/img/resources/onprem/gitops/flux.png differ diff --git a/website/static/img/resources/onprem/groupware/nextcloud.png b/website/static/img/resources/onprem/groupware/nextcloud.png new file mode 100644 index 00000000..813d01f6 Binary files /dev/null and b/website/static/img/resources/onprem/groupware/nextcloud.png differ diff --git a/website/static/img/resources/onprem/iac/ansible.png b/website/static/img/resources/onprem/iac/ansible.png new file mode 100644 index 00000000..39d77aa6 Binary files /dev/null and b/website/static/img/resources/onprem/iac/ansible.png differ diff --git a/website/static/img/resources/onprem/iac/atlantis.png b/website/static/img/resources/onprem/iac/atlantis.png new file mode 100644 index 00000000..88079025 Binary files /dev/null and b/website/static/img/resources/onprem/iac/atlantis.png differ diff --git a/website/static/img/resources/onprem/iac/awx.png b/website/static/img/resources/onprem/iac/awx.png new file mode 100644 index 00000000..975da780 Binary files /dev/null and b/website/static/img/resources/onprem/iac/awx.png differ diff --git a/website/static/img/resources/onprem/iac/puppet.png b/website/static/img/resources/onprem/iac/puppet.png new file mode 100644 index 00000000..5b402365 Binary files /dev/null and b/website/static/img/resources/onprem/iac/puppet.png differ diff --git a/website/static/img/resources/onprem/iac/terraform.png b/website/static/img/resources/onprem/iac/terraform.png new file mode 100644 index 00000000..92dc7306 Binary files /dev/null and b/website/static/img/resources/onprem/iac/terraform.png differ diff --git a/website/static/img/resources/onprem/identity/dex.png b/website/static/img/resources/onprem/identity/dex.png new file mode 100644 index 00000000..6b467591 Binary files /dev/null and b/website/static/img/resources/onprem/identity/dex.png differ diff --git a/website/static/img/resources/onprem/inmemory/aerospike.png b/website/static/img/resources/onprem/inmemory/aerospike.png new file mode 100644 index 00000000..d9944e02 Binary files /dev/null and b/website/static/img/resources/onprem/inmemory/aerospike.png differ diff --git a/website/static/img/resources/onprem/inmemory/hazelcast.png b/website/static/img/resources/onprem/inmemory/hazelcast.png new file mode 100644 index 00000000..564456a8 Binary files /dev/null and b/website/static/img/resources/onprem/inmemory/hazelcast.png differ diff --git a/website/static/img/resources/onprem/inmemory/memcached.png b/website/static/img/resources/onprem/inmemory/memcached.png new file mode 100644 index 00000000..ffc15715 Binary files /dev/null and b/website/static/img/resources/onprem/inmemory/memcached.png differ diff --git a/website/static/img/resources/onprem/inmemory/redis.png b/website/static/img/resources/onprem/inmemory/redis.png new file mode 100644 index 00000000..79ecb236 Binary files /dev/null and b/website/static/img/resources/onprem/inmemory/redis.png differ diff --git a/website/static/img/resources/onprem/logging/fluentbit.png b/website/static/img/resources/onprem/logging/fluentbit.png new file mode 100644 index 00000000..465e7fbc Binary files /dev/null and b/website/static/img/resources/onprem/logging/fluentbit.png differ diff --git a/website/static/img/resources/onprem/logging/graylog.png b/website/static/img/resources/onprem/logging/graylog.png new file mode 100644 index 00000000..f321113a Binary files /dev/null and b/website/static/img/resources/onprem/logging/graylog.png differ diff --git a/website/static/img/resources/onprem/logging/loki.png b/website/static/img/resources/onprem/logging/loki.png new file mode 100644 index 00000000..3029249b Binary files /dev/null and b/website/static/img/resources/onprem/logging/loki.png differ diff --git a/website/static/img/resources/onprem/logging/rsyslog.png b/website/static/img/resources/onprem/logging/rsyslog.png new file mode 100644 index 00000000..01aad3bf Binary files /dev/null and b/website/static/img/resources/onprem/logging/rsyslog.png differ diff --git a/website/static/img/resources/onprem/logging/syslog-ng.png b/website/static/img/resources/onprem/logging/syslog-ng.png new file mode 100644 index 00000000..df2d00bf Binary files /dev/null and b/website/static/img/resources/onprem/logging/syslog-ng.png differ diff --git a/website/static/img/resources/onprem/messaging/centrifugo.png b/website/static/img/resources/onprem/messaging/centrifugo.png new file mode 100644 index 00000000..0821cba9 Binary files /dev/null and b/website/static/img/resources/onprem/messaging/centrifugo.png differ diff --git a/website/static/img/resources/onprem/mlops/mlflow.png b/website/static/img/resources/onprem/mlops/mlflow.png new file mode 100644 index 00000000..3af24ab7 Binary files /dev/null and b/website/static/img/resources/onprem/mlops/mlflow.png differ diff --git a/website/static/img/resources/onprem/mlops/polyaxon.png b/website/static/img/resources/onprem/mlops/polyaxon.png new file mode 100644 index 00000000..328bbd66 Binary files /dev/null and b/website/static/img/resources/onprem/mlops/polyaxon.png differ diff --git a/website/static/img/resources/onprem/monitoring/cortex.png b/website/static/img/resources/onprem/monitoring/cortex.png new file mode 100644 index 00000000..c241cef3 Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/cortex.png differ diff --git a/website/static/img/resources/onprem/monitoring/datadog.png b/website/static/img/resources/onprem/monitoring/datadog.png new file mode 100644 index 00000000..403446c9 Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/datadog.png differ diff --git a/website/static/img/resources/onprem/monitoring/dynatrace.png b/website/static/img/resources/onprem/monitoring/dynatrace.png new file mode 100644 index 00000000..4d6abfa8 Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/dynatrace.png differ diff --git a/website/static/img/resources/onprem/monitoring/grafana.png b/website/static/img/resources/onprem/monitoring/grafana.png new file mode 100644 index 00000000..6110a967 Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/grafana.png differ diff --git a/website/static/img/resources/onprem/monitoring/humio.png b/website/static/img/resources/onprem/monitoring/humio.png new file mode 100644 index 00000000..bd36be10 Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/humio.png differ diff --git a/website/static/img/resources/onprem/monitoring/mimir.png b/website/static/img/resources/onprem/monitoring/mimir.png new file mode 100644 index 00000000..fd1661d1 Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/mimir.png differ diff --git a/website/static/img/resources/onprem/monitoring/nagios.png b/website/static/img/resources/onprem/monitoring/nagios.png new file mode 100644 index 00000000..a4e40c42 Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/nagios.png differ diff --git a/website/static/img/resources/onprem/monitoring/newrelic.png b/website/static/img/resources/onprem/monitoring/newrelic.png new file mode 100644 index 00000000..908ccd08 Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/newrelic.png differ diff --git a/website/static/img/resources/onprem/monitoring/prometheus-operator.png b/website/static/img/resources/onprem/monitoring/prometheus-operator.png new file mode 100644 index 00000000..105adbc2 Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/prometheus-operator.png differ diff --git a/website/static/img/resources/onprem/monitoring/prometheus.png b/website/static/img/resources/onprem/monitoring/prometheus.png new file mode 100644 index 00000000..10ff865b Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/prometheus.png differ diff --git a/website/static/img/resources/onprem/monitoring/sentry.png b/website/static/img/resources/onprem/monitoring/sentry.png new file mode 100644 index 00000000..b30290da Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/sentry.png differ diff --git a/website/static/img/resources/onprem/monitoring/splunk.png b/website/static/img/resources/onprem/monitoring/splunk.png new file mode 100644 index 00000000..3b2c43fe Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/splunk.png differ diff --git a/website/static/img/resources/onprem/monitoring/thanos.png b/website/static/img/resources/onprem/monitoring/thanos.png new file mode 100644 index 00000000..3d895305 Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/thanos.png differ diff --git a/website/static/img/resources/onprem/monitoring/zabbix.png b/website/static/img/resources/onprem/monitoring/zabbix.png new file mode 100644 index 00000000..cab7014f Binary files /dev/null and b/website/static/img/resources/onprem/monitoring/zabbix.png differ diff --git a/website/static/img/resources/onprem/network/ambassador.png b/website/static/img/resources/onprem/network/ambassador.png new file mode 100644 index 00000000..671e02fd Binary files /dev/null and b/website/static/img/resources/onprem/network/ambassador.png differ diff --git a/website/static/img/resources/onprem/network/apache.png b/website/static/img/resources/onprem/network/apache.png new file mode 100644 index 00000000..930019a9 Binary files /dev/null and b/website/static/img/resources/onprem/network/apache.png differ diff --git a/website/static/img/resources/onprem/network/bind-9.png b/website/static/img/resources/onprem/network/bind-9.png new file mode 100644 index 00000000..ea842c93 Binary files /dev/null and b/website/static/img/resources/onprem/network/bind-9.png differ diff --git a/website/static/img/resources/onprem/network/caddy.png b/website/static/img/resources/onprem/network/caddy.png new file mode 100644 index 00000000..c806ce7b Binary files /dev/null and b/website/static/img/resources/onprem/network/caddy.png differ diff --git a/website/static/img/resources/onprem/network/consul.png b/website/static/img/resources/onprem/network/consul.png new file mode 100644 index 00000000..c070944a Binary files /dev/null and b/website/static/img/resources/onprem/network/consul.png differ diff --git a/website/static/img/resources/onprem/network/envoy.png b/website/static/img/resources/onprem/network/envoy.png new file mode 100644 index 00000000..a9df2cf2 Binary files /dev/null and b/website/static/img/resources/onprem/network/envoy.png differ diff --git a/website/static/img/resources/onprem/network/etcd.png b/website/static/img/resources/onprem/network/etcd.png new file mode 100644 index 00000000..85557b89 Binary files /dev/null and b/website/static/img/resources/onprem/network/etcd.png differ diff --git a/website/static/img/resources/onprem/network/glassfish.png b/website/static/img/resources/onprem/network/glassfish.png new file mode 100644 index 00000000..a8d2d777 Binary files /dev/null and b/website/static/img/resources/onprem/network/glassfish.png differ diff --git a/website/static/img/resources/onprem/network/gunicorn.png b/website/static/img/resources/onprem/network/gunicorn.png new file mode 100644 index 00000000..1af455e2 Binary files /dev/null and b/website/static/img/resources/onprem/network/gunicorn.png differ diff --git a/website/static/img/resources/onprem/network/haproxy.png b/website/static/img/resources/onprem/network/haproxy.png new file mode 100644 index 00000000..49d87db4 Binary files /dev/null and b/website/static/img/resources/onprem/network/haproxy.png differ diff --git a/website/static/img/resources/onprem/network/internet.png b/website/static/img/resources/onprem/network/internet.png new file mode 100644 index 00000000..9c7c20f2 Binary files /dev/null and b/website/static/img/resources/onprem/network/internet.png differ diff --git a/website/static/img/resources/onprem/network/istio.png b/website/static/img/resources/onprem/network/istio.png new file mode 100644 index 00000000..73ddabac Binary files /dev/null and b/website/static/img/resources/onprem/network/istio.png differ diff --git a/website/static/img/resources/onprem/network/jbossas.png b/website/static/img/resources/onprem/network/jbossas.png new file mode 100644 index 00000000..c1618358 Binary files /dev/null and b/website/static/img/resources/onprem/network/jbossas.png differ diff --git a/website/static/img/resources/onprem/network/jetty.png b/website/static/img/resources/onprem/network/jetty.png new file mode 100644 index 00000000..c00c2697 Binary files /dev/null and b/website/static/img/resources/onprem/network/jetty.png differ diff --git a/website/static/img/resources/onprem/network/kong.png b/website/static/img/resources/onprem/network/kong.png new file mode 100644 index 00000000..dcd34740 Binary files /dev/null and b/website/static/img/resources/onprem/network/kong.png differ diff --git a/website/static/img/resources/onprem/network/linkerd.png b/website/static/img/resources/onprem/network/linkerd.png new file mode 100644 index 00000000..d66a1728 Binary files /dev/null and b/website/static/img/resources/onprem/network/linkerd.png differ diff --git a/website/static/img/resources/onprem/network/mikrotik.png b/website/static/img/resources/onprem/network/mikrotik.png new file mode 100644 index 00000000..515b685e Binary files /dev/null and b/website/static/img/resources/onprem/network/mikrotik.png differ diff --git a/website/static/img/resources/onprem/network/nginx.png b/website/static/img/resources/onprem/network/nginx.png new file mode 100644 index 00000000..8c387681 Binary files /dev/null and b/website/static/img/resources/onprem/network/nginx.png differ diff --git a/website/static/img/resources/onprem/network/ocelot.png b/website/static/img/resources/onprem/network/ocelot.png new file mode 100644 index 00000000..99943164 Binary files /dev/null and b/website/static/img/resources/onprem/network/ocelot.png differ diff --git a/website/static/img/resources/onprem/network/open-service-mesh.png b/website/static/img/resources/onprem/network/open-service-mesh.png new file mode 100644 index 00000000..d56d5083 Binary files /dev/null and b/website/static/img/resources/onprem/network/open-service-mesh.png differ diff --git a/website/static/img/resources/onprem/network/opnsense.png b/website/static/img/resources/onprem/network/opnsense.png new file mode 100644 index 00000000..952102b6 Binary files /dev/null and b/website/static/img/resources/onprem/network/opnsense.png differ diff --git a/website/static/img/resources/onprem/network/pfsense.png b/website/static/img/resources/onprem/network/pfsense.png new file mode 100644 index 00000000..e5cf58d0 Binary files /dev/null and b/website/static/img/resources/onprem/network/pfsense.png differ diff --git a/website/static/img/resources/onprem/network/pomerium.png b/website/static/img/resources/onprem/network/pomerium.png new file mode 100644 index 00000000..1bf2da51 Binary files /dev/null and b/website/static/img/resources/onprem/network/pomerium.png differ diff --git a/website/static/img/resources/onprem/network/powerdns.png b/website/static/img/resources/onprem/network/powerdns.png new file mode 100644 index 00000000..5c177701 Binary files /dev/null and b/website/static/img/resources/onprem/network/powerdns.png differ diff --git a/website/static/img/resources/onprem/network/tomcat.png b/website/static/img/resources/onprem/network/tomcat.png new file mode 100644 index 00000000..2481672b Binary files /dev/null and b/website/static/img/resources/onprem/network/tomcat.png differ diff --git a/website/static/img/resources/onprem/network/traefik.png b/website/static/img/resources/onprem/network/traefik.png new file mode 100644 index 00000000..17b8cffd Binary files /dev/null and b/website/static/img/resources/onprem/network/traefik.png differ diff --git a/website/static/img/resources/onprem/network/tyk.png b/website/static/img/resources/onprem/network/tyk.png new file mode 100644 index 00000000..3fc4cfb4 Binary files /dev/null and b/website/static/img/resources/onprem/network/tyk.png differ diff --git a/website/static/img/resources/onprem/network/vyos.png b/website/static/img/resources/onprem/network/vyos.png new file mode 100644 index 00000000..fa59be8a Binary files /dev/null and b/website/static/img/resources/onprem/network/vyos.png differ diff --git a/website/static/img/resources/onprem/network/wildfly.png b/website/static/img/resources/onprem/network/wildfly.png new file mode 100644 index 00000000..95edc66f Binary files /dev/null and b/website/static/img/resources/onprem/network/wildfly.png differ diff --git a/website/static/img/resources/onprem/network/yarp.png b/website/static/img/resources/onprem/network/yarp.png new file mode 100644 index 00000000..4078dd5c Binary files /dev/null and b/website/static/img/resources/onprem/network/yarp.png differ diff --git a/website/static/img/resources/onprem/network/zookeeper.png b/website/static/img/resources/onprem/network/zookeeper.png new file mode 100644 index 00000000..16e0604a Binary files /dev/null and b/website/static/img/resources/onprem/network/zookeeper.png differ diff --git a/website/static/img/resources/onprem/proxmox/pve.png b/website/static/img/resources/onprem/proxmox/pve.png new file mode 100644 index 00000000..631f2716 Binary files /dev/null and b/website/static/img/resources/onprem/proxmox/pve.png differ diff --git a/website/static/img/resources/onprem/queue/activemq.png b/website/static/img/resources/onprem/queue/activemq.png new file mode 100644 index 00000000..b4ea0338 Binary files /dev/null and b/website/static/img/resources/onprem/queue/activemq.png differ diff --git a/website/static/img/resources/onprem/queue/celery.png b/website/static/img/resources/onprem/queue/celery.png new file mode 100644 index 00000000..fa71572b Binary files /dev/null and b/website/static/img/resources/onprem/queue/celery.png differ diff --git a/website/static/img/resources/onprem/queue/emqx.png b/website/static/img/resources/onprem/queue/emqx.png new file mode 100644 index 00000000..b2776cfa Binary files /dev/null and b/website/static/img/resources/onprem/queue/emqx.png differ diff --git a/website/static/img/resources/onprem/queue/kafka.png b/website/static/img/resources/onprem/queue/kafka.png new file mode 100644 index 00000000..f384d441 Binary files /dev/null and b/website/static/img/resources/onprem/queue/kafka.png differ diff --git a/website/static/img/resources/onprem/queue/nats.png b/website/static/img/resources/onprem/queue/nats.png new file mode 100644 index 00000000..446b4072 Binary files /dev/null and b/website/static/img/resources/onprem/queue/nats.png differ diff --git a/website/static/img/resources/onprem/queue/rabbitmq.png b/website/static/img/resources/onprem/queue/rabbitmq.png new file mode 100644 index 00000000..32cfdc33 Binary files /dev/null and b/website/static/img/resources/onprem/queue/rabbitmq.png differ diff --git a/website/static/img/resources/onprem/queue/zeromq.png b/website/static/img/resources/onprem/queue/zeromq.png new file mode 100644 index 00000000..32a5d993 Binary files /dev/null and b/website/static/img/resources/onprem/queue/zeromq.png differ diff --git a/website/static/img/resources/onprem/registry/harbor.png b/website/static/img/resources/onprem/registry/harbor.png new file mode 100644 index 00000000..4f2c9095 Binary files /dev/null and b/website/static/img/resources/onprem/registry/harbor.png differ diff --git a/website/static/img/resources/onprem/registry/jfrog.png b/website/static/img/resources/onprem/registry/jfrog.png new file mode 100644 index 00000000..931bfd81 Binary files /dev/null and b/website/static/img/resources/onprem/registry/jfrog.png differ diff --git a/website/static/img/resources/onprem/search/solr.png b/website/static/img/resources/onprem/search/solr.png new file mode 100644 index 00000000..c495957a Binary files /dev/null and b/website/static/img/resources/onprem/search/solr.png differ diff --git a/website/static/img/resources/onprem/security/bitwarden.png b/website/static/img/resources/onprem/security/bitwarden.png new file mode 100644 index 00000000..adb75cbb Binary files /dev/null and b/website/static/img/resources/onprem/security/bitwarden.png differ diff --git a/website/static/img/resources/onprem/security/trivy.png b/website/static/img/resources/onprem/security/trivy.png new file mode 100644 index 00000000..81087a8d Binary files /dev/null and b/website/static/img/resources/onprem/security/trivy.png differ diff --git a/website/static/img/resources/onprem/security/vault.png b/website/static/img/resources/onprem/security/vault.png new file mode 100644 index 00000000..cd36e58e Binary files /dev/null and b/website/static/img/resources/onprem/security/vault.png differ diff --git a/website/static/img/resources/onprem/storage/ceph-osd.png b/website/static/img/resources/onprem/storage/ceph-osd.png new file mode 100644 index 00000000..46007b34 Binary files /dev/null and b/website/static/img/resources/onprem/storage/ceph-osd.png differ diff --git a/website/static/img/resources/onprem/storage/ceph.png b/website/static/img/resources/onprem/storage/ceph.png new file mode 100644 index 00000000..1c294675 Binary files /dev/null and b/website/static/img/resources/onprem/storage/ceph.png differ diff --git a/website/static/img/resources/onprem/storage/glusterfs.png b/website/static/img/resources/onprem/storage/glusterfs.png new file mode 100644 index 00000000..2b46ca6e Binary files /dev/null and b/website/static/img/resources/onprem/storage/glusterfs.png differ diff --git a/website/static/img/resources/onprem/storage/portworx.png b/website/static/img/resources/onprem/storage/portworx.png new file mode 100644 index 00000000..7464ed04 Binary files /dev/null and b/website/static/img/resources/onprem/storage/portworx.png differ diff --git a/website/static/img/resources/onprem/tracing/jaeger.png b/website/static/img/resources/onprem/tracing/jaeger.png new file mode 100644 index 00000000..4af0b7aa Binary files /dev/null and b/website/static/img/resources/onprem/tracing/jaeger.png differ diff --git a/website/static/img/resources/onprem/tracing/tempo.png b/website/static/img/resources/onprem/tracing/tempo.png new file mode 100644 index 00000000..d0f519d0 Binary files /dev/null and b/website/static/img/resources/onprem/tracing/tempo.png differ diff --git a/website/static/img/resources/onprem/vcs/git.png b/website/static/img/resources/onprem/vcs/git.png new file mode 100644 index 00000000..e4d71805 Binary files /dev/null and b/website/static/img/resources/onprem/vcs/git.png differ diff --git a/website/static/img/resources/onprem/vcs/gitea.png b/website/static/img/resources/onprem/vcs/gitea.png new file mode 100644 index 00000000..8f2e3467 Binary files /dev/null and b/website/static/img/resources/onprem/vcs/gitea.png differ diff --git a/website/static/img/resources/onprem/vcs/github.png b/website/static/img/resources/onprem/vcs/github.png new file mode 100644 index 00000000..1916642f Binary files /dev/null and b/website/static/img/resources/onprem/vcs/github.png differ diff --git a/website/static/img/resources/onprem/vcs/gitlab.png b/website/static/img/resources/onprem/vcs/gitlab.png new file mode 100644 index 00000000..89eb25c9 Binary files /dev/null and b/website/static/img/resources/onprem/vcs/gitlab.png differ diff --git a/website/static/img/resources/onprem/vcs/svn.png b/website/static/img/resources/onprem/vcs/svn.png new file mode 100644 index 00000000..bb1ff09a Binary files /dev/null and b/website/static/img/resources/onprem/vcs/svn.png differ diff --git a/website/static/img/resources/onprem/workflow/airflow.png b/website/static/img/resources/onprem/workflow/airflow.png new file mode 100644 index 00000000..736c75df Binary files /dev/null and b/website/static/img/resources/onprem/workflow/airflow.png differ diff --git a/website/static/img/resources/onprem/workflow/digdag.png b/website/static/img/resources/onprem/workflow/digdag.png new file mode 100644 index 00000000..f6bb6315 Binary files /dev/null and b/website/static/img/resources/onprem/workflow/digdag.png differ diff --git a/website/static/img/resources/onprem/workflow/kubeflow.png b/website/static/img/resources/onprem/workflow/kubeflow.png new file mode 100644 index 00000000..8e8fe5d4 Binary files /dev/null and b/website/static/img/resources/onprem/workflow/kubeflow.png differ diff --git a/website/static/img/resources/onprem/workflow/nifi.png b/website/static/img/resources/onprem/workflow/nifi.png new file mode 100644 index 00000000..b64a92f9 Binary files /dev/null and b/website/static/img/resources/onprem/workflow/nifi.png differ diff --git a/website/static/img/resources/openstack/apiproxies/ec2api.png b/website/static/img/resources/openstack/apiproxies/ec2api.png new file mode 100644 index 00000000..d31079cc Binary files /dev/null and b/website/static/img/resources/openstack/apiproxies/ec2api.png differ diff --git a/website/static/img/resources/openstack/applicationlifecycle/freezer.png b/website/static/img/resources/openstack/applicationlifecycle/freezer.png new file mode 100644 index 00000000..3be90606 Binary files /dev/null and b/website/static/img/resources/openstack/applicationlifecycle/freezer.png differ diff --git a/website/static/img/resources/openstack/applicationlifecycle/masakari.png b/website/static/img/resources/openstack/applicationlifecycle/masakari.png new file mode 100644 index 00000000..ee244205 Binary files /dev/null and b/website/static/img/resources/openstack/applicationlifecycle/masakari.png differ diff --git a/website/static/img/resources/openstack/applicationlifecycle/murano.png b/website/static/img/resources/openstack/applicationlifecycle/murano.png new file mode 100644 index 00000000..7b49b0dc Binary files /dev/null and b/website/static/img/resources/openstack/applicationlifecycle/murano.png differ diff --git a/website/static/img/resources/openstack/applicationlifecycle/solum.png b/website/static/img/resources/openstack/applicationlifecycle/solum.png new file mode 100644 index 00000000..39539e42 Binary files /dev/null and b/website/static/img/resources/openstack/applicationlifecycle/solum.png differ diff --git a/website/static/img/resources/openstack/baremetal/cyborg.png b/website/static/img/resources/openstack/baremetal/cyborg.png new file mode 100644 index 00000000..d833e3fa Binary files /dev/null and b/website/static/img/resources/openstack/baremetal/cyborg.png differ diff --git a/website/static/img/resources/openstack/baremetal/ironic.png b/website/static/img/resources/openstack/baremetal/ironic.png new file mode 100644 index 00000000..036012b1 Binary files /dev/null and b/website/static/img/resources/openstack/baremetal/ironic.png differ diff --git a/website/static/img/resources/openstack/billing/cloudkitty.png b/website/static/img/resources/openstack/billing/cloudkitty.png new file mode 100644 index 00000000..984d3087 Binary files /dev/null and b/website/static/img/resources/openstack/billing/cloudkitty.png differ diff --git a/website/static/img/resources/openstack/compute/nova.png b/website/static/img/resources/openstack/compute/nova.png new file mode 100644 index 00000000..e894c117 Binary files /dev/null and b/website/static/img/resources/openstack/compute/nova.png differ diff --git a/website/static/img/resources/openstack/compute/qinling.png b/website/static/img/resources/openstack/compute/qinling.png new file mode 100644 index 00000000..b09928ec Binary files /dev/null and b/website/static/img/resources/openstack/compute/qinling.png differ diff --git a/website/static/img/resources/openstack/compute/zun.png b/website/static/img/resources/openstack/compute/zun.png new file mode 100644 index 00000000..e4cbdc22 Binary files /dev/null and b/website/static/img/resources/openstack/compute/zun.png differ diff --git a/website/static/img/resources/openstack/containerservices/kuryr.png b/website/static/img/resources/openstack/containerservices/kuryr.png new file mode 100644 index 00000000..608e64ca Binary files /dev/null and b/website/static/img/resources/openstack/containerservices/kuryr.png differ diff --git a/website/static/img/resources/openstack/deployment/ansible.png b/website/static/img/resources/openstack/deployment/ansible.png new file mode 100644 index 00000000..2803e98f Binary files /dev/null and b/website/static/img/resources/openstack/deployment/ansible.png differ diff --git a/website/static/img/resources/openstack/deployment/charms.png b/website/static/img/resources/openstack/deployment/charms.png new file mode 100644 index 00000000..dd040c00 Binary files /dev/null and b/website/static/img/resources/openstack/deployment/charms.png differ diff --git a/website/static/img/resources/openstack/deployment/chef.png b/website/static/img/resources/openstack/deployment/chef.png new file mode 100644 index 00000000..1e47dc93 Binary files /dev/null and b/website/static/img/resources/openstack/deployment/chef.png differ diff --git a/website/static/img/resources/openstack/deployment/helm.png b/website/static/img/resources/openstack/deployment/helm.png new file mode 100644 index 00000000..35bb4eab Binary files /dev/null and b/website/static/img/resources/openstack/deployment/helm.png differ diff --git a/website/static/img/resources/openstack/deployment/kolla.png b/website/static/img/resources/openstack/deployment/kolla.png new file mode 100644 index 00000000..9f74c917 Binary files /dev/null and b/website/static/img/resources/openstack/deployment/kolla.png differ diff --git a/website/static/img/resources/openstack/deployment/tripleo.png b/website/static/img/resources/openstack/deployment/tripleo.png new file mode 100644 index 00000000..21afc5b2 Binary files /dev/null and b/website/static/img/resources/openstack/deployment/tripleo.png differ diff --git a/website/static/img/resources/openstack/frontend/horizon.png b/website/static/img/resources/openstack/frontend/horizon.png new file mode 100644 index 00000000..569377de Binary files /dev/null and b/website/static/img/resources/openstack/frontend/horizon.png differ diff --git a/website/static/img/resources/openstack/monitoring/monasca.png b/website/static/img/resources/openstack/monitoring/monasca.png new file mode 100644 index 00000000..c9bc3771 Binary files /dev/null and b/website/static/img/resources/openstack/monitoring/monasca.png differ diff --git a/website/static/img/resources/openstack/monitoring/telemetry.png b/website/static/img/resources/openstack/monitoring/telemetry.png new file mode 100644 index 00000000..59f83aa6 Binary files /dev/null and b/website/static/img/resources/openstack/monitoring/telemetry.png differ diff --git a/website/static/img/resources/openstack/multiregion/tricircle.png b/website/static/img/resources/openstack/multiregion/tricircle.png new file mode 100644 index 00000000..4931aebe Binary files /dev/null and b/website/static/img/resources/openstack/multiregion/tricircle.png differ diff --git a/website/static/img/resources/openstack/networking/designate.png b/website/static/img/resources/openstack/networking/designate.png new file mode 100644 index 00000000..940aee7b Binary files /dev/null and b/website/static/img/resources/openstack/networking/designate.png differ diff --git a/website/static/img/resources/openstack/networking/neutron.png b/website/static/img/resources/openstack/networking/neutron.png new file mode 100644 index 00000000..7d2b1fbf Binary files /dev/null and b/website/static/img/resources/openstack/networking/neutron.png differ diff --git a/website/static/img/resources/openstack/networking/octavia.png b/website/static/img/resources/openstack/networking/octavia.png new file mode 100644 index 00000000..69a87048 Binary files /dev/null and b/website/static/img/resources/openstack/networking/octavia.png differ diff --git a/website/static/img/resources/openstack/nfv/tacker.png b/website/static/img/resources/openstack/nfv/tacker.png new file mode 100644 index 00000000..15a5424c Binary files /dev/null and b/website/static/img/resources/openstack/nfv/tacker.png differ diff --git a/website/static/img/resources/openstack/openstack.png b/website/static/img/resources/openstack/openstack.png new file mode 100644 index 00000000..75152a7c Binary files /dev/null and b/website/static/img/resources/openstack/openstack.png differ diff --git a/website/static/img/resources/openstack/optimization/congress.png b/website/static/img/resources/openstack/optimization/congress.png new file mode 100644 index 00000000..1b16e149 Binary files /dev/null and b/website/static/img/resources/openstack/optimization/congress.png differ diff --git a/website/static/img/resources/openstack/optimization/rally.png b/website/static/img/resources/openstack/optimization/rally.png new file mode 100644 index 00000000..2eec8b65 Binary files /dev/null and b/website/static/img/resources/openstack/optimization/rally.png differ diff --git a/website/static/img/resources/openstack/optimization/vitrage.png b/website/static/img/resources/openstack/optimization/vitrage.png new file mode 100644 index 00000000..89bbdbe6 Binary files /dev/null and b/website/static/img/resources/openstack/optimization/vitrage.png differ diff --git a/website/static/img/resources/openstack/optimization/watcher.png b/website/static/img/resources/openstack/optimization/watcher.png new file mode 100644 index 00000000..8fdbb6d9 Binary files /dev/null and b/website/static/img/resources/openstack/optimization/watcher.png differ diff --git a/website/static/img/resources/openstack/orchestration/blazar.png b/website/static/img/resources/openstack/orchestration/blazar.png new file mode 100644 index 00000000..c0a39b99 Binary files /dev/null and b/website/static/img/resources/openstack/orchestration/blazar.png differ diff --git a/website/static/img/resources/openstack/orchestration/heat.png b/website/static/img/resources/openstack/orchestration/heat.png new file mode 100644 index 00000000..d7291328 Binary files /dev/null and b/website/static/img/resources/openstack/orchestration/heat.png differ diff --git a/website/static/img/resources/openstack/orchestration/mistral.png b/website/static/img/resources/openstack/orchestration/mistral.png new file mode 100644 index 00000000..96bb25f0 Binary files /dev/null and b/website/static/img/resources/openstack/orchestration/mistral.png differ diff --git a/website/static/img/resources/openstack/orchestration/senlin.png b/website/static/img/resources/openstack/orchestration/senlin.png new file mode 100644 index 00000000..2c5c2c60 Binary files /dev/null and b/website/static/img/resources/openstack/orchestration/senlin.png differ diff --git a/website/static/img/resources/openstack/orchestration/zaqar.png b/website/static/img/resources/openstack/orchestration/zaqar.png new file mode 100644 index 00000000..ac9947fa Binary files /dev/null and b/website/static/img/resources/openstack/orchestration/zaqar.png differ diff --git a/website/static/img/resources/openstack/packaging/loci.png b/website/static/img/resources/openstack/packaging/loci.png new file mode 100644 index 00000000..5f277a4d Binary files /dev/null and b/website/static/img/resources/openstack/packaging/loci.png differ diff --git a/website/static/img/resources/openstack/packaging/puppet.png b/website/static/img/resources/openstack/packaging/puppet.png new file mode 100644 index 00000000..78e80bff Binary files /dev/null and b/website/static/img/resources/openstack/packaging/puppet.png differ diff --git a/website/static/img/resources/openstack/packaging/rpm.png b/website/static/img/resources/openstack/packaging/rpm.png new file mode 100644 index 00000000..ad93fc5c Binary files /dev/null and b/website/static/img/resources/openstack/packaging/rpm.png differ diff --git a/website/static/img/resources/openstack/sharedservices/barbican.png b/website/static/img/resources/openstack/sharedservices/barbican.png new file mode 100644 index 00000000..b5292c55 Binary files /dev/null and b/website/static/img/resources/openstack/sharedservices/barbican.png differ diff --git a/website/static/img/resources/openstack/sharedservices/glance.png b/website/static/img/resources/openstack/sharedservices/glance.png new file mode 100644 index 00000000..cc1fe21c Binary files /dev/null and b/website/static/img/resources/openstack/sharedservices/glance.png differ diff --git a/website/static/img/resources/openstack/sharedservices/karbor.png b/website/static/img/resources/openstack/sharedservices/karbor.png new file mode 100644 index 00000000..74b8bd3e Binary files /dev/null and b/website/static/img/resources/openstack/sharedservices/karbor.png differ diff --git a/website/static/img/resources/openstack/sharedservices/keystone.png b/website/static/img/resources/openstack/sharedservices/keystone.png new file mode 100644 index 00000000..3617cc45 Binary files /dev/null and b/website/static/img/resources/openstack/sharedservices/keystone.png differ diff --git a/website/static/img/resources/openstack/sharedservices/searchlight.png b/website/static/img/resources/openstack/sharedservices/searchlight.png new file mode 100644 index 00000000..e0f47405 Binary files /dev/null and b/website/static/img/resources/openstack/sharedservices/searchlight.png differ diff --git a/website/static/img/resources/openstack/storage/cinder.png b/website/static/img/resources/openstack/storage/cinder.png new file mode 100644 index 00000000..3d9304d3 Binary files /dev/null and b/website/static/img/resources/openstack/storage/cinder.png differ diff --git a/website/static/img/resources/openstack/storage/manila.png b/website/static/img/resources/openstack/storage/manila.png new file mode 100644 index 00000000..eebbe511 Binary files /dev/null and b/website/static/img/resources/openstack/storage/manila.png differ diff --git a/website/static/img/resources/openstack/storage/swift.png b/website/static/img/resources/openstack/storage/swift.png new file mode 100644 index 00000000..5ac0fd52 Binary files /dev/null and b/website/static/img/resources/openstack/storage/swift.png differ diff --git a/website/static/img/resources/openstack/user/openstackclient.png b/website/static/img/resources/openstack/user/openstackclient.png new file mode 100644 index 00000000..f4611b06 Binary files /dev/null and b/website/static/img/resources/openstack/user/openstackclient.png differ diff --git a/website/static/img/resources/openstack/workloadprovisioning/magnum.png b/website/static/img/resources/openstack/workloadprovisioning/magnum.png new file mode 100644 index 00000000..118ba40b Binary files /dev/null and b/website/static/img/resources/openstack/workloadprovisioning/magnum.png differ diff --git a/website/static/img/resources/openstack/workloadprovisioning/sahara.png b/website/static/img/resources/openstack/workloadprovisioning/sahara.png new file mode 100644 index 00000000..34a066b8 Binary files /dev/null and b/website/static/img/resources/openstack/workloadprovisioning/sahara.png differ diff --git a/website/static/img/resources/openstack/workloadprovisioning/trove.png b/website/static/img/resources/openstack/workloadprovisioning/trove.png new file mode 100644 index 00000000..3cad74cc Binary files /dev/null and b/website/static/img/resources/openstack/workloadprovisioning/trove.png differ diff --git a/website/static/img/resources/outscale/compute/compute.png b/website/static/img/resources/outscale/compute/compute.png new file mode 100644 index 00000000..2c74f942 Binary files /dev/null and b/website/static/img/resources/outscale/compute/compute.png differ diff --git a/website/static/img/resources/outscale/compute/direct-connect.png b/website/static/img/resources/outscale/compute/direct-connect.png new file mode 100644 index 00000000..530bbb54 Binary files /dev/null and b/website/static/img/resources/outscale/compute/direct-connect.png differ diff --git a/website/static/img/resources/outscale/network/client-vpn.png b/website/static/img/resources/outscale/network/client-vpn.png new file mode 100644 index 00000000..5c45772e Binary files /dev/null and b/website/static/img/resources/outscale/network/client-vpn.png differ diff --git a/website/static/img/resources/outscale/network/internet-service.png b/website/static/img/resources/outscale/network/internet-service.png new file mode 100644 index 00000000..6033552f Binary files /dev/null and b/website/static/img/resources/outscale/network/internet-service.png differ diff --git a/website/static/img/resources/outscale/network/load-balancer.png b/website/static/img/resources/outscale/network/load-balancer.png new file mode 100644 index 00000000..d31ea0bb Binary files /dev/null and b/website/static/img/resources/outscale/network/load-balancer.png differ diff --git a/website/static/img/resources/outscale/network/nat-service.png b/website/static/img/resources/outscale/network/nat-service.png new file mode 100644 index 00000000..c0ff3d23 Binary files /dev/null and b/website/static/img/resources/outscale/network/nat-service.png differ diff --git a/website/static/img/resources/outscale/network/net.png b/website/static/img/resources/outscale/network/net.png new file mode 100644 index 00000000..211dda04 Binary files /dev/null and b/website/static/img/resources/outscale/network/net.png differ diff --git a/website/static/img/resources/outscale/network/site-to-site-vpng.png b/website/static/img/resources/outscale/network/site-to-site-vpng.png new file mode 100644 index 00000000..e3789c40 Binary files /dev/null and b/website/static/img/resources/outscale/network/site-to-site-vpng.png differ diff --git a/website/static/img/resources/outscale/security/firewall.png b/website/static/img/resources/outscale/security/firewall.png new file mode 100644 index 00000000..7ba23881 Binary files /dev/null and b/website/static/img/resources/outscale/security/firewall.png differ diff --git a/website/static/img/resources/outscale/security/identity-and-access-management.png b/website/static/img/resources/outscale/security/identity-and-access-management.png new file mode 100644 index 00000000..e9bd67ed Binary files /dev/null and b/website/static/img/resources/outscale/security/identity-and-access-management.png differ diff --git a/website/static/img/resources/outscale/storage/simple-storage-service.png b/website/static/img/resources/outscale/storage/simple-storage-service.png new file mode 100644 index 00000000..dcb291cb Binary files /dev/null and b/website/static/img/resources/outscale/storage/simple-storage-service.png differ diff --git a/website/static/img/resources/outscale/storage/storage.png b/website/static/img/resources/outscale/storage/storage.png new file mode 100644 index 00000000..55d931f1 Binary files /dev/null and b/website/static/img/resources/outscale/storage/storage.png differ diff --git a/website/static/img/resources/programming/flowchart/action.png b/website/static/img/resources/programming/flowchart/action.png new file mode 100644 index 00000000..28205f4b Binary files /dev/null and b/website/static/img/resources/programming/flowchart/action.png differ diff --git a/website/static/img/resources/programming/flowchart/collate.png b/website/static/img/resources/programming/flowchart/collate.png new file mode 100644 index 00000000..2d5be1c8 Binary files /dev/null and b/website/static/img/resources/programming/flowchart/collate.png differ diff --git a/website/static/img/resources/programming/flowchart/database.png b/website/static/img/resources/programming/flowchart/database.png new file mode 100644 index 00000000..78eb1718 Binary files /dev/null and b/website/static/img/resources/programming/flowchart/database.png differ diff --git a/website/static/img/resources/programming/flowchart/decision.png b/website/static/img/resources/programming/flowchart/decision.png new file mode 100644 index 00000000..40b9293d Binary files /dev/null and b/website/static/img/resources/programming/flowchart/decision.png differ diff --git a/website/static/img/resources/programming/flowchart/delay.png b/website/static/img/resources/programming/flowchart/delay.png new file mode 100644 index 00000000..b859d173 Binary files /dev/null and b/website/static/img/resources/programming/flowchart/delay.png differ diff --git a/website/static/img/resources/programming/flowchart/display.png b/website/static/img/resources/programming/flowchart/display.png new file mode 100644 index 00000000..1d50abfc Binary files /dev/null and b/website/static/img/resources/programming/flowchart/display.png differ diff --git a/website/static/img/resources/programming/flowchart/document.png b/website/static/img/resources/programming/flowchart/document.png new file mode 100644 index 00000000..02bb83c8 Binary files /dev/null and b/website/static/img/resources/programming/flowchart/document.png differ diff --git a/website/static/img/resources/programming/flowchart/input-output.png b/website/static/img/resources/programming/flowchart/input-output.png new file mode 100644 index 00000000..4211d0a7 Binary files /dev/null and b/website/static/img/resources/programming/flowchart/input-output.png differ diff --git a/website/static/img/resources/programming/flowchart/inspection.png b/website/static/img/resources/programming/flowchart/inspection.png new file mode 100644 index 00000000..64fbdc0d Binary files /dev/null and b/website/static/img/resources/programming/flowchart/inspection.png differ diff --git a/website/static/img/resources/programming/flowchart/internal-storage.png b/website/static/img/resources/programming/flowchart/internal-storage.png new file mode 100644 index 00000000..65baf6ef Binary files /dev/null and b/website/static/img/resources/programming/flowchart/internal-storage.png differ diff --git a/website/static/img/resources/programming/flowchart/loop-limit.png b/website/static/img/resources/programming/flowchart/loop-limit.png new file mode 100644 index 00000000..29813f99 Binary files /dev/null and b/website/static/img/resources/programming/flowchart/loop-limit.png differ diff --git a/website/static/img/resources/programming/flowchart/manual-input.png b/website/static/img/resources/programming/flowchart/manual-input.png new file mode 100644 index 00000000..517786ac Binary files /dev/null and b/website/static/img/resources/programming/flowchart/manual-input.png differ diff --git a/website/static/img/resources/programming/flowchart/manual-loop.png b/website/static/img/resources/programming/flowchart/manual-loop.png new file mode 100644 index 00000000..13d1e9f0 Binary files /dev/null and b/website/static/img/resources/programming/flowchart/manual-loop.png differ diff --git a/website/static/img/resources/programming/flowchart/merge.png b/website/static/img/resources/programming/flowchart/merge.png new file mode 100644 index 00000000..d6a5851b Binary files /dev/null and b/website/static/img/resources/programming/flowchart/merge.png differ diff --git a/website/static/img/resources/programming/flowchart/multiple-documents.png b/website/static/img/resources/programming/flowchart/multiple-documents.png new file mode 100644 index 00000000..ed376aac Binary files /dev/null and b/website/static/img/resources/programming/flowchart/multiple-documents.png differ diff --git a/website/static/img/resources/programming/flowchart/off-page-connector-left.png b/website/static/img/resources/programming/flowchart/off-page-connector-left.png new file mode 100644 index 00000000..afc8d5bb Binary files /dev/null and b/website/static/img/resources/programming/flowchart/off-page-connector-left.png differ diff --git a/website/static/img/resources/programming/flowchart/off-page-connector-right.png b/website/static/img/resources/programming/flowchart/off-page-connector-right.png new file mode 100644 index 00000000..a1282501 Binary files /dev/null and b/website/static/img/resources/programming/flowchart/off-page-connector-right.png differ diff --git a/website/static/img/resources/programming/flowchart/or.png b/website/static/img/resources/programming/flowchart/or.png new file mode 100644 index 00000000..2cb2402f Binary files /dev/null and b/website/static/img/resources/programming/flowchart/or.png differ diff --git a/website/static/img/resources/programming/flowchart/predefined-process.png b/website/static/img/resources/programming/flowchart/predefined-process.png new file mode 100644 index 00000000..f052d7bf Binary files /dev/null and b/website/static/img/resources/programming/flowchart/predefined-process.png differ diff --git a/website/static/img/resources/programming/flowchart/preparation.png b/website/static/img/resources/programming/flowchart/preparation.png new file mode 100644 index 00000000..50aab196 Binary files /dev/null and b/website/static/img/resources/programming/flowchart/preparation.png differ diff --git a/website/static/img/resources/programming/flowchart/sort.png b/website/static/img/resources/programming/flowchart/sort.png new file mode 100644 index 00000000..08718b4a Binary files /dev/null and b/website/static/img/resources/programming/flowchart/sort.png differ diff --git a/website/static/img/resources/programming/flowchart/start-end.png b/website/static/img/resources/programming/flowchart/start-end.png new file mode 100644 index 00000000..4772c367 Binary files /dev/null and b/website/static/img/resources/programming/flowchart/start-end.png differ diff --git a/website/static/img/resources/programming/flowchart/stored-data.png b/website/static/img/resources/programming/flowchart/stored-data.png new file mode 100644 index 00000000..972e5609 Binary files /dev/null and b/website/static/img/resources/programming/flowchart/stored-data.png differ diff --git a/website/static/img/resources/programming/flowchart/summing-junction.png b/website/static/img/resources/programming/flowchart/summing-junction.png new file mode 100644 index 00000000..47e876b3 Binary files /dev/null and b/website/static/img/resources/programming/flowchart/summing-junction.png differ diff --git a/website/static/img/resources/programming/framework/angular.png b/website/static/img/resources/programming/framework/angular.png new file mode 100644 index 00000000..a3c90671 Binary files /dev/null and b/website/static/img/resources/programming/framework/angular.png differ diff --git a/website/static/img/resources/programming/framework/backbone.png b/website/static/img/resources/programming/framework/backbone.png new file mode 100644 index 00000000..b0b80d9a Binary files /dev/null and b/website/static/img/resources/programming/framework/backbone.png differ diff --git a/website/static/img/resources/programming/framework/camel.png b/website/static/img/resources/programming/framework/camel.png new file mode 100644 index 00000000..f71ba159 Binary files /dev/null and b/website/static/img/resources/programming/framework/camel.png differ diff --git a/website/static/img/resources/programming/framework/django.png b/website/static/img/resources/programming/framework/django.png new file mode 100644 index 00000000..13fdc7ae Binary files /dev/null and b/website/static/img/resources/programming/framework/django.png differ diff --git a/website/static/img/resources/programming/framework/dotnet.png b/website/static/img/resources/programming/framework/dotnet.png new file mode 100644 index 00000000..851e1b76 Binary files /dev/null and b/website/static/img/resources/programming/framework/dotnet.png differ diff --git a/website/static/img/resources/programming/framework/ember.png b/website/static/img/resources/programming/framework/ember.png new file mode 100644 index 00000000..88d0c89b Binary files /dev/null and b/website/static/img/resources/programming/framework/ember.png differ diff --git a/website/static/img/resources/programming/framework/fastapi.png b/website/static/img/resources/programming/framework/fastapi.png new file mode 100644 index 00000000..d79d51bf Binary files /dev/null and b/website/static/img/resources/programming/framework/fastapi.png differ diff --git a/website/static/img/resources/programming/framework/flask.png b/website/static/img/resources/programming/framework/flask.png new file mode 100644 index 00000000..18c396a6 Binary files /dev/null and b/website/static/img/resources/programming/framework/flask.png differ diff --git a/website/static/img/resources/programming/framework/flutter.png b/website/static/img/resources/programming/framework/flutter.png new file mode 100644 index 00000000..409896d4 Binary files /dev/null and b/website/static/img/resources/programming/framework/flutter.png differ diff --git a/website/static/img/resources/programming/framework/graphql.png b/website/static/img/resources/programming/framework/graphql.png new file mode 100644 index 00000000..fe9e52d5 Binary files /dev/null and b/website/static/img/resources/programming/framework/graphql.png differ diff --git a/website/static/img/resources/programming/framework/hibernate.png b/website/static/img/resources/programming/framework/hibernate.png new file mode 100644 index 00000000..35a60287 Binary files /dev/null and b/website/static/img/resources/programming/framework/hibernate.png differ diff --git a/website/static/img/resources/programming/framework/jhipster.png b/website/static/img/resources/programming/framework/jhipster.png new file mode 100644 index 00000000..cde8aa9c Binary files /dev/null and b/website/static/img/resources/programming/framework/jhipster.png differ diff --git a/website/static/img/resources/programming/framework/laravel.png b/website/static/img/resources/programming/framework/laravel.png new file mode 100644 index 00000000..46d44da6 Binary files /dev/null and b/website/static/img/resources/programming/framework/laravel.png differ diff --git a/website/static/img/resources/programming/framework/micronaut.png b/website/static/img/resources/programming/framework/micronaut.png new file mode 100644 index 00000000..9bdc9780 Binary files /dev/null and b/website/static/img/resources/programming/framework/micronaut.png differ diff --git a/website/static/img/resources/programming/framework/nextjs.png b/website/static/img/resources/programming/framework/nextjs.png new file mode 100644 index 00000000..3306955a Binary files /dev/null and b/website/static/img/resources/programming/framework/nextjs.png differ diff --git a/website/static/img/resources/programming/framework/quarkus.png b/website/static/img/resources/programming/framework/quarkus.png new file mode 100644 index 00000000..4a90d922 Binary files /dev/null and b/website/static/img/resources/programming/framework/quarkus.png differ diff --git a/website/static/img/resources/programming/framework/rails.png b/website/static/img/resources/programming/framework/rails.png new file mode 100644 index 00000000..a989a826 Binary files /dev/null and b/website/static/img/resources/programming/framework/rails.png differ diff --git a/website/static/img/resources/programming/framework/react.png b/website/static/img/resources/programming/framework/react.png new file mode 100644 index 00000000..cc28869b Binary files /dev/null and b/website/static/img/resources/programming/framework/react.png differ diff --git a/website/static/img/resources/programming/framework/spring.png b/website/static/img/resources/programming/framework/spring.png new file mode 100644 index 00000000..575a8a03 Binary files /dev/null and b/website/static/img/resources/programming/framework/spring.png differ diff --git a/website/static/img/resources/programming/framework/starlette.png b/website/static/img/resources/programming/framework/starlette.png new file mode 100644 index 00000000..b04720c9 Binary files /dev/null and b/website/static/img/resources/programming/framework/starlette.png differ diff --git a/website/static/img/resources/programming/framework/svelte.png b/website/static/img/resources/programming/framework/svelte.png new file mode 100644 index 00000000..463cc473 Binary files /dev/null and b/website/static/img/resources/programming/framework/svelte.png differ diff --git a/website/static/img/resources/programming/framework/vercel.png b/website/static/img/resources/programming/framework/vercel.png new file mode 100644 index 00000000..6277be3f Binary files /dev/null and b/website/static/img/resources/programming/framework/vercel.png differ diff --git a/website/static/img/resources/programming/framework/vue.png b/website/static/img/resources/programming/framework/vue.png new file mode 100644 index 00000000..69d44b09 Binary files /dev/null and b/website/static/img/resources/programming/framework/vue.png differ diff --git a/website/static/img/resources/programming/language/bash.png b/website/static/img/resources/programming/language/bash.png new file mode 100644 index 00000000..e817fcd4 Binary files /dev/null and b/website/static/img/resources/programming/language/bash.png differ diff --git a/website/static/img/resources/programming/language/c.png b/website/static/img/resources/programming/language/c.png new file mode 100644 index 00000000..7aeaf3ae Binary files /dev/null and b/website/static/img/resources/programming/language/c.png differ diff --git a/website/static/img/resources/programming/language/cpp.png b/website/static/img/resources/programming/language/cpp.png new file mode 100644 index 00000000..9843cd56 Binary files /dev/null and b/website/static/img/resources/programming/language/cpp.png differ diff --git a/website/static/img/resources/programming/language/csharp.png b/website/static/img/resources/programming/language/csharp.png new file mode 100644 index 00000000..01d9b7a4 Binary files /dev/null and b/website/static/img/resources/programming/language/csharp.png differ diff --git a/website/static/img/resources/programming/language/dart.png b/website/static/img/resources/programming/language/dart.png new file mode 100644 index 00000000..265af165 Binary files /dev/null and b/website/static/img/resources/programming/language/dart.png differ diff --git a/website/static/img/resources/programming/language/elixir.png b/website/static/img/resources/programming/language/elixir.png new file mode 100644 index 00000000..2ef4cafa Binary files /dev/null and b/website/static/img/resources/programming/language/elixir.png differ diff --git a/website/static/img/resources/programming/language/erlang.png b/website/static/img/resources/programming/language/erlang.png new file mode 100644 index 00000000..389d5186 Binary files /dev/null and b/website/static/img/resources/programming/language/erlang.png differ diff --git a/website/static/img/resources/programming/language/go.png b/website/static/img/resources/programming/language/go.png new file mode 100644 index 00000000..cf6aa866 Binary files /dev/null and b/website/static/img/resources/programming/language/go.png differ diff --git a/website/static/img/resources/programming/language/java.png b/website/static/img/resources/programming/language/java.png new file mode 100644 index 00000000..366793d3 Binary files /dev/null and b/website/static/img/resources/programming/language/java.png differ diff --git a/website/static/img/resources/programming/language/javascript.png b/website/static/img/resources/programming/language/javascript.png new file mode 100644 index 00000000..954077d8 Binary files /dev/null and b/website/static/img/resources/programming/language/javascript.png differ diff --git a/website/static/img/resources/programming/language/kotlin.png b/website/static/img/resources/programming/language/kotlin.png new file mode 100644 index 00000000..f9c6f90b Binary files /dev/null and b/website/static/img/resources/programming/language/kotlin.png differ diff --git a/website/static/img/resources/programming/language/latex.png b/website/static/img/resources/programming/language/latex.png new file mode 100644 index 00000000..c2243e7a Binary files /dev/null and b/website/static/img/resources/programming/language/latex.png differ diff --git a/website/static/img/resources/programming/language/matlab.png b/website/static/img/resources/programming/language/matlab.png new file mode 100644 index 00000000..2b4b82a2 Binary files /dev/null and b/website/static/img/resources/programming/language/matlab.png differ diff --git a/website/static/img/resources/programming/language/nodejs.png b/website/static/img/resources/programming/language/nodejs.png new file mode 100644 index 00000000..42c22b0b Binary files /dev/null and b/website/static/img/resources/programming/language/nodejs.png differ diff --git a/website/static/img/resources/programming/language/php.png b/website/static/img/resources/programming/language/php.png new file mode 100644 index 00000000..3e494672 Binary files /dev/null and b/website/static/img/resources/programming/language/php.png differ diff --git a/website/static/img/resources/programming/language/python.png b/website/static/img/resources/programming/language/python.png new file mode 100644 index 00000000..6b7e76de Binary files /dev/null and b/website/static/img/resources/programming/language/python.png differ diff --git a/website/static/img/resources/programming/language/r.png b/website/static/img/resources/programming/language/r.png new file mode 100644 index 00000000..1771a5de Binary files /dev/null and b/website/static/img/resources/programming/language/r.png differ diff --git a/website/static/img/resources/programming/language/ruby.png b/website/static/img/resources/programming/language/ruby.png new file mode 100644 index 00000000..1253ae70 Binary files /dev/null and b/website/static/img/resources/programming/language/ruby.png differ diff --git a/website/static/img/resources/programming/language/rust.png b/website/static/img/resources/programming/language/rust.png new file mode 100644 index 00000000..a9f7fa15 Binary files /dev/null and b/website/static/img/resources/programming/language/rust.png differ diff --git a/website/static/img/resources/programming/language/scala.png b/website/static/img/resources/programming/language/scala.png new file mode 100644 index 00000000..b77d7231 Binary files /dev/null and b/website/static/img/resources/programming/language/scala.png differ diff --git a/website/static/img/resources/programming/language/swift.png b/website/static/img/resources/programming/language/swift.png new file mode 100644 index 00000000..f1f79dfc Binary files /dev/null and b/website/static/img/resources/programming/language/swift.png differ diff --git a/website/static/img/resources/programming/language/typescript.png b/website/static/img/resources/programming/language/typescript.png new file mode 100644 index 00000000..8ad64799 Binary files /dev/null and b/website/static/img/resources/programming/language/typescript.png differ diff --git a/website/static/img/resources/programming/runtime/dapr.png b/website/static/img/resources/programming/runtime/dapr.png new file mode 100644 index 00000000..7c5f1cff Binary files /dev/null and b/website/static/img/resources/programming/runtime/dapr.png differ diff --git a/website/static/img/resources/saas/alerting/newrelic.png b/website/static/img/resources/saas/alerting/newrelic.png new file mode 100644 index 00000000..908ccd08 Binary files /dev/null and b/website/static/img/resources/saas/alerting/newrelic.png differ diff --git a/website/static/img/resources/saas/alerting/opsgenie.png b/website/static/img/resources/saas/alerting/opsgenie.png new file mode 100644 index 00000000..f67e6fc6 Binary files /dev/null and b/website/static/img/resources/saas/alerting/opsgenie.png differ diff --git a/website/static/img/resources/saas/alerting/pagerduty.png b/website/static/img/resources/saas/alerting/pagerduty.png new file mode 100644 index 00000000..4e369e30 Binary files /dev/null and b/website/static/img/resources/saas/alerting/pagerduty.png differ diff --git a/website/static/img/resources/saas/alerting/pushover.png b/website/static/img/resources/saas/alerting/pushover.png new file mode 100644 index 00000000..fa22a98b Binary files /dev/null and b/website/static/img/resources/saas/alerting/pushover.png differ diff --git a/website/static/img/resources/saas/alerting/xmatters.png b/website/static/img/resources/saas/alerting/xmatters.png new file mode 100644 index 00000000..60363c39 Binary files /dev/null and b/website/static/img/resources/saas/alerting/xmatters.png differ diff --git a/website/static/img/resources/saas/analytics/dataform.png b/website/static/img/resources/saas/analytics/dataform.png new file mode 100644 index 00000000..c41f16fa Binary files /dev/null and b/website/static/img/resources/saas/analytics/dataform.png differ diff --git a/website/static/img/resources/saas/analytics/snowflake.png b/website/static/img/resources/saas/analytics/snowflake.png new file mode 100644 index 00000000..b033c494 Binary files /dev/null and b/website/static/img/resources/saas/analytics/snowflake.png differ diff --git a/website/static/img/resources/saas/analytics/stitch.png b/website/static/img/resources/saas/analytics/stitch.png new file mode 100644 index 00000000..7c9e6578 Binary files /dev/null and b/website/static/img/resources/saas/analytics/stitch.png differ diff --git a/website/static/img/resources/saas/cdn/akamai.png b/website/static/img/resources/saas/cdn/akamai.png new file mode 100644 index 00000000..2c008ed2 Binary files /dev/null and b/website/static/img/resources/saas/cdn/akamai.png differ diff --git a/website/static/img/resources/saas/cdn/cloudflare.png b/website/static/img/resources/saas/cdn/cloudflare.png new file mode 100644 index 00000000..6b4122d0 Binary files /dev/null and b/website/static/img/resources/saas/cdn/cloudflare.png differ diff --git a/website/static/img/resources/saas/cdn/fastly.png b/website/static/img/resources/saas/cdn/fastly.png new file mode 100644 index 00000000..6fffd670 Binary files /dev/null and b/website/static/img/resources/saas/cdn/fastly.png differ diff --git a/website/static/img/resources/saas/chat/discord.png b/website/static/img/resources/saas/chat/discord.png new file mode 100644 index 00000000..db0e70d5 Binary files /dev/null and b/website/static/img/resources/saas/chat/discord.png differ diff --git a/website/static/img/resources/saas/chat/line.png b/website/static/img/resources/saas/chat/line.png new file mode 100644 index 00000000..ef77de1b Binary files /dev/null and b/website/static/img/resources/saas/chat/line.png differ diff --git a/website/static/img/resources/saas/chat/mattermost.png b/website/static/img/resources/saas/chat/mattermost.png new file mode 100644 index 00000000..a308a648 Binary files /dev/null and b/website/static/img/resources/saas/chat/mattermost.png differ diff --git a/website/static/img/resources/saas/chat/messenger.png b/website/static/img/resources/saas/chat/messenger.png new file mode 100644 index 00000000..0dd9e89e Binary files /dev/null and b/website/static/img/resources/saas/chat/messenger.png differ diff --git a/website/static/img/resources/saas/chat/rocket-chat.png b/website/static/img/resources/saas/chat/rocket-chat.png new file mode 100644 index 00000000..0d86cd34 Binary files /dev/null and b/website/static/img/resources/saas/chat/rocket-chat.png differ diff --git a/website/static/img/resources/saas/chat/slack.png b/website/static/img/resources/saas/chat/slack.png new file mode 100644 index 00000000..b2cf219e Binary files /dev/null and b/website/static/img/resources/saas/chat/slack.png differ diff --git a/website/static/img/resources/saas/chat/teams.png b/website/static/img/resources/saas/chat/teams.png new file mode 100644 index 00000000..1819cbe1 Binary files /dev/null and b/website/static/img/resources/saas/chat/teams.png differ diff --git a/website/static/img/resources/saas/chat/telegram.png b/website/static/img/resources/saas/chat/telegram.png new file mode 100644 index 00000000..d52b904c Binary files /dev/null and b/website/static/img/resources/saas/chat/telegram.png differ diff --git a/website/static/img/resources/saas/communication/twilio.png b/website/static/img/resources/saas/communication/twilio.png new file mode 100644 index 00000000..86cbbf53 Binary files /dev/null and b/website/static/img/resources/saas/communication/twilio.png differ diff --git a/website/static/img/resources/saas/filesharing/nextcloud.png b/website/static/img/resources/saas/filesharing/nextcloud.png new file mode 100644 index 00000000..4370ddfe Binary files /dev/null and b/website/static/img/resources/saas/filesharing/nextcloud.png differ diff --git a/website/static/img/resources/saas/identity/auth0.png b/website/static/img/resources/saas/identity/auth0.png new file mode 100644 index 00000000..41a4d540 Binary files /dev/null and b/website/static/img/resources/saas/identity/auth0.png differ diff --git a/website/static/img/resources/saas/identity/okta.png b/website/static/img/resources/saas/identity/okta.png new file mode 100644 index 00000000..cfe43169 Binary files /dev/null and b/website/static/img/resources/saas/identity/okta.png differ diff --git a/website/static/img/resources/saas/logging/datadog.png b/website/static/img/resources/saas/logging/datadog.png new file mode 100644 index 00000000..d7124bc7 Binary files /dev/null and b/website/static/img/resources/saas/logging/datadog.png differ diff --git a/website/static/img/resources/saas/logging/newrelic.png b/website/static/img/resources/saas/logging/newrelic.png new file mode 100644 index 00000000..908ccd08 Binary files /dev/null and b/website/static/img/resources/saas/logging/newrelic.png differ diff --git a/website/static/img/resources/saas/logging/papertrail.png b/website/static/img/resources/saas/logging/papertrail.png new file mode 100644 index 00000000..a411f737 Binary files /dev/null and b/website/static/img/resources/saas/logging/papertrail.png differ diff --git a/website/static/img/resources/saas/media/cloudinary.png b/website/static/img/resources/saas/media/cloudinary.png new file mode 100644 index 00000000..a771d81e Binary files /dev/null and b/website/static/img/resources/saas/media/cloudinary.png differ diff --git a/website/static/img/resources/saas/recommendation/recombee.png b/website/static/img/resources/saas/recommendation/recombee.png new file mode 100644 index 00000000..866b722b Binary files /dev/null and b/website/static/img/resources/saas/recommendation/recombee.png differ diff --git a/website/static/img/resources/saas/security/scrowdstrike.png b/website/static/img/resources/saas/security/scrowdstrike.png new file mode 100644 index 00000000..4b2dc92e Binary files /dev/null and b/website/static/img/resources/saas/security/scrowdstrike.png differ diff --git a/website/static/img/resources/saas/security/sonarqube.png b/website/static/img/resources/saas/security/sonarqube.png new file mode 100644 index 00000000..b6070ae2 Binary files /dev/null and b/website/static/img/resources/saas/security/sonarqube.png differ diff --git a/website/static/img/resources/saas/social/facebook.png b/website/static/img/resources/saas/social/facebook.png new file mode 100755 index 00000000..3ffb63c6 Binary files /dev/null and b/website/static/img/resources/saas/social/facebook.png differ diff --git a/website/static/img/resources/saas/social/twitter.png b/website/static/img/resources/saas/social/twitter.png new file mode 100644 index 00000000..8320d575 Binary files /dev/null and b/website/static/img/resources/saas/social/twitter.png differ diff --git a/website/static/img/simple_web_service_with_db_cluster_diagram.png b/website/static/img/simple_web_service_with_db_cluster_diagram.png index 96a74505..e92681c7 100644 Binary files a/website/static/img/simple_web_service_with_db_cluster_diagram.png and b/website/static/img/simple_web_service_with_db_cluster_diagram.png differ diff --git a/website/yarn.lock b/website/yarn.lock index 725d8617..662d1acd 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -2,917 +2,740 @@ # yarn lockfile v1 -"@babel/code-frame@7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" - integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== - dependencies: - "@babel/highlight" "^7.0.0" - -"@babel/code-frame@^7.10.4": +"@babel/code-frame@7.10.4": version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" - integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz" dependencies: "@babel/highlight" "^7.10.4" -"@babel/compat-data@^7.12.5", "@babel/compat-data@^7.12.7": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.7.tgz#9329b4782a7d6bbd7eef57e11addf91ee3ef1e41" - integrity sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw== - -"@babel/core@^7.9.0": - version "7.12.9" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8" - integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.5" - "@babel/helper-module-transforms" "^7.12.1" - "@babel/helpers" "^7.12.5" - "@babel/parser" "^7.12.7" - "@babel/template" "^7.12.7" - "@babel/traverse" "^7.12.9" - "@babel/types" "^7.12.7" +"@babel/code-frame@^7.12.13", "@babel/code-frame@^7.5.5": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz" + dependencies: + "@babel/highlight" "^7.12.13" + +"@babel/compat-data@^7.13.0", "@babel/compat-data@^7.13.8": + version "7.13.8" + resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.8.tgz" + +"@babel/core@^7.12.3": + version "7.13.10" + resolved "https://registry.npmjs.org/@babel/core/-/core-7.13.10.tgz" + dependencies: + "@babel/code-frame" "^7.12.13" + "@babel/generator" "^7.13.9" + "@babel/helper-compilation-targets" "^7.13.10" + "@babel/helper-module-transforms" "^7.13.0" + "@babel/helpers" "^7.13.10" + "@babel/parser" "^7.13.10" + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.13.0" + "@babel/types" "^7.13.0" convert-source-map "^1.7.0" debug "^4.1.0" - gensync "^1.0.0-beta.1" + gensync "^1.0.0-beta.2" json5 "^2.1.2" lodash "^4.17.19" - resolve "^1.3.2" - semver "^5.4.1" + semver "^6.3.0" source-map "^0.5.0" -"@babel/generator@^7.12.5": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz#a2c50de5c8b6d708ab95be5e6053936c1884a4de" - integrity sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A== +"@babel/generator@^7.13.0", "@babel/generator@^7.13.9": + version "7.13.9" + resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz" dependencies: - "@babel/types" "^7.12.5" + "@babel/types" "^7.13.0" jsesc "^2.5.1" source-map "^0.5.0" -"@babel/helper-annotate-as-pure@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3" - integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== - dependencies: - "@babel/types" "^7.10.4" - -"@babel/helper-annotate-as-pure@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee" - integrity sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw== +"@babel/helper-annotate-as-pure@^7.10.4", "@babel/helper-annotate-as-pure@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz" dependencies: - "@babel/types" "^7.8.3" + "@babel/types" "^7.12.13" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3" - integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== - dependencies: - "@babel/helper-explode-assignable-expression" "^7.10.4" - "@babel/types" "^7.10.4" - -"@babel/helper-builder-react-jsx-experimental@^7.12.4": - version "7.12.4" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz#55fc1ead5242caa0ca2875dcb8eed6d311e50f48" - integrity sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og== - dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-module-imports" "^7.12.1" - "@babel/types" "^7.12.1" - -"@babel/helper-builder-react-jsx@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d" - integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg== +"@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz" dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/helper-explode-assignable-expression" "^7.12.13" + "@babel/types" "^7.12.13" -"@babel/helper-compilation-targets@^7.12.5": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz#cb470c76198db6a24e9dbc8987275631e5d29831" - integrity sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw== +"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.10", "@babel/helper-compilation-targets@^7.13.8": + version "7.13.10" + resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.10.tgz" dependencies: - "@babel/compat-data" "^7.12.5" - "@babel/helper-validator-option" "^7.12.1" + "@babel/compat-data" "^7.13.8" + "@babel/helper-validator-option" "^7.12.17" browserslist "^4.14.5" - semver "^5.5.0" + semver "^6.3.0" -"@babel/helper-create-class-features-plugin@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz#3c45998f431edd4a9214c5f1d3ad1448a6137f6e" - integrity sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w== +"@babel/helper-create-class-features-plugin@^7.13.0": + version "7.13.10" + resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.10.tgz" dependencies: - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-member-expression-to-functions" "^7.12.1" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/helper-replace-supers" "^7.12.1" - "@babel/helper-split-export-declaration" "^7.10.4" + "@babel/helper-function-name" "^7.12.13" + "@babel/helper-member-expression-to-functions" "^7.13.0" + "@babel/helper-optimise-call-expression" "^7.12.13" + "@babel/helper-replace-supers" "^7.13.0" + "@babel/helper-split-export-declaration" "^7.12.13" -"@babel/helper-create-regexp-features-plugin@^7.12.1": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz#2084172e95443fa0a09214ba1bb328f9aea1278f" - integrity sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ== +"@babel/helper-create-regexp-features-plugin@^7.12.13": + version "7.12.17" + resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz" dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" + "@babel/helper-annotate-as-pure" "^7.12.13" regexpu-core "^4.7.1" -"@babel/helper-create-regexp-features-plugin@^7.8.3", "@babel/helper-create-regexp-features-plugin@^7.8.8": - version "7.8.8" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz#5d84180b588f560b7864efaeea89243e58312087" - integrity sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg== +"@babel/helper-define-polyfill-provider@^0.1.5": + version "0.1.5" + resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz" dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-regex" "^7.8.3" - regexpu-core "^4.7.0" + "@babel/helper-compilation-targets" "^7.13.0" + "@babel/helper-module-imports" "^7.12.13" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/traverse" "^7.13.0" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + semver "^6.1.2" -"@babel/helper-define-map@^7.10.4": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30" - integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== +"@babel/helper-explode-assignable-expression@^7.12.13": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz" dependencies: - "@babel/helper-function-name" "^7.10.4" - "@babel/types" "^7.10.5" - lodash "^4.17.19" + "@babel/types" "^7.13.0" -"@babel/helper-explode-assignable-expression@^7.10.4": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz#8006a466695c4ad86a2a5f2fb15b5f2c31ad5633" - integrity sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA== +"@babel/helper-function-name@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz" dependencies: - "@babel/types" "^7.12.1" + "@babel/helper-get-function-arity" "^7.12.13" + "@babel/template" "^7.12.13" + "@babel/types" "^7.12.13" -"@babel/helper-function-name@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" - integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== +"@babel/helper-get-function-arity@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz" dependencies: - "@babel/helper-get-function-arity" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/types" "^7.12.13" -"@babel/helper-get-function-arity@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" - integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== +"@babel/helper-hoist-variables@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz" dependencies: - "@babel/types" "^7.10.4" + "@babel/traverse" "^7.13.0" + "@babel/types" "^7.13.0" -"@babel/helper-hoist-variables@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e" - integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== +"@babel/helper-member-expression-to-functions@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz" dependencies: - "@babel/types" "^7.10.4" + "@babel/types" "^7.13.0" -"@babel/helper-member-expression-to-functions@^7.12.1": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855" - integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw== +"@babel/helper-module-imports@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz" dependencies: - "@babel/types" "^7.12.7" + "@babel/types" "^7.12.13" -"@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.5": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb" - integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA== +"@babel/helper-module-transforms@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz" dependencies: - "@babel/types" "^7.12.5" - -"@babel/helper-module-transforms@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c" - integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w== - dependencies: - "@babel/helper-module-imports" "^7.12.1" - "@babel/helper-replace-supers" "^7.12.1" - "@babel/helper-simple-access" "^7.12.1" - "@babel/helper-split-export-declaration" "^7.11.0" - "@babel/helper-validator-identifier" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/traverse" "^7.12.1" - "@babel/types" "^7.12.1" + "@babel/helper-module-imports" "^7.12.13" + "@babel/helper-replace-supers" "^7.13.0" + "@babel/helper-simple-access" "^7.12.13" + "@babel/helper-split-export-declaration" "^7.12.13" + "@babel/helper-validator-identifier" "^7.12.11" + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.13.0" + "@babel/types" "^7.13.0" lodash "^4.17.19" -"@babel/helper-optimise-call-expression@^7.10.4": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz#7f94ae5e08721a49467346aa04fd22f750033b9c" - integrity sha512-I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw== +"@babel/helper-optimise-call-expression@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz" dependencies: - "@babel/types" "^7.12.7" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" - integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ== + "@babel/types" "^7.12.13" -"@babel/helper-plugin-utils@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" - integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz" -"@babel/helper-regex@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965" - integrity sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ== +"@babel/helper-remap-async-to-generator@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz" dependencies: - lodash "^4.17.13" + "@babel/helper-annotate-as-pure" "^7.12.13" + "@babel/helper-wrap-function" "^7.13.0" + "@babel/types" "^7.13.0" -"@babel/helper-remap-async-to-generator@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz#8c4dbbf916314f6047dc05e6a2217074238347fd" - integrity sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A== +"@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz" dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-wrap-function" "^7.10.4" - "@babel/types" "^7.12.1" + "@babel/helper-member-expression-to-functions" "^7.13.0" + "@babel/helper-optimise-call-expression" "^7.12.13" + "@babel/traverse" "^7.13.0" + "@babel/types" "^7.13.0" -"@babel/helper-replace-supers@^7.12.1": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz#f009a17543bbbbce16b06206ae73b63d3fca68d9" - integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA== +"@babel/helper-simple-access@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz" dependencies: - "@babel/helper-member-expression-to-functions" "^7.12.1" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/traverse" "^7.12.5" - "@babel/types" "^7.12.5" - -"@babel/helper-simple-access@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136" - integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA== - dependencies: - "@babel/types" "^7.12.1" + "@babel/types" "^7.12.13" "@babel/helper-skip-transparent-expression-wrappers@^7.12.1": version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf" - integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== + resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz" dependencies: "@babel/types" "^7.12.1" -"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" - integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== +"@babel/helper-split-export-declaration@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz" dependencies: - "@babel/types" "^7.11.0" + "@babel/types" "^7.12.13" -"@babel/helper-validator-identifier@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" - integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== - -"@babel/helper-validator-identifier@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.0.tgz#ad53562a7fc29b3b9a91bbf7d10397fd146346ed" - integrity sha512-6G8bQKjOh+of4PV/ThDm/rRqlU7+IGoJuofpagU5GlEl29Vv0RGqqt86ZGRV8ZuSOY3o+8yXl5y782SMcG7SHw== - -"@babel/helper-validator-option@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz#175567380c3e77d60ff98a54bb015fe78f2178d9" - integrity sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A== +"@babel/helper-validator-identifier@^7.12.11": + version "7.12.11" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz" -"@babel/helper-wrap-function@^7.10.4": - version "7.12.3" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz#3332339fc4d1fbbf1c27d7958c27d34708e990d9" - integrity sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow== - dependencies: - "@babel/helper-function-name" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/traverse" "^7.10.4" - "@babel/types" "^7.10.4" +"@babel/helper-validator-option@^7.12.17": + version "7.12.17" + resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz" -"@babel/helpers@^7.12.5": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e" - integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA== +"@babel/helper-wrap-function@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz" dependencies: - "@babel/template" "^7.10.4" - "@babel/traverse" "^7.12.5" - "@babel/types" "^7.12.5" + "@babel/helper-function-name" "^7.12.13" + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.13.0" + "@babel/types" "^7.13.0" -"@babel/highlight@^7.0.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079" - integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ== +"@babel/helpers@^7.13.10": + version "7.13.10" + resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.10.tgz" dependencies: - "@babel/helper-validator-identifier" "^7.9.0" - chalk "^2.0.0" - js-tokens "^4.0.0" + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.13.0" + "@babel/types" "^7.13.0" -"@babel/highlight@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" - integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== +"@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13": + version "7.13.10" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz" dependencies: - "@babel/helper-validator-identifier" "^7.10.4" + "@babel/helper-validator-identifier" "^7.12.11" chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.12.7": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.7.tgz#fee7b39fe809d0e73e5b25eecaf5780ef3d73056" - integrity sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg== +"@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.10": + version "7.13.10" + resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.13.10.tgz" -"@babel/plugin-proposal-async-generator-functions@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e" - integrity sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A== +"@babel/plugin-proposal-async-generator-functions@^7.13.8": + version "7.13.8" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-remap-async-to-generator" "^7.12.1" - "@babel/plugin-syntax-async-generators" "^7.8.0" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-remap-async-to-generator" "^7.13.0" + "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.8.3": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de" - integrity sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w== +"@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz" dependencies: - "@babel/helper-create-class-features-plugin" "^7.12.1" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-create-class-features-plugin" "^7.13.0" + "@babel/helper-plugin-utils" "^7.13.0" -"@babel/plugin-proposal-dynamic-import@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz#43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc" - integrity sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ== +"@babel/plugin-proposal-dynamic-import@^7.13.8": + version "7.13.8" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-dynamic-import" "^7.8.0" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" -"@babel/plugin-proposal-export-namespace-from@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz#8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4" - integrity sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw== +"@babel/plugin-proposal-export-namespace-from@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" -"@babel/plugin-proposal-json-strings@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz#d45423b517714eedd5621a9dfdc03fa9f4eb241c" - integrity sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw== +"@babel/plugin-proposal-json-strings@^7.13.8": + version "7.13.8" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-json-strings" "^7.8.0" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-proposal-logical-assignment-operators@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz#f2c490d36e1b3c9659241034a5d2cd50263a2751" - integrity sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA== +"@babel/plugin-proposal-logical-assignment-operators@^7.13.8": + version "7.13.8" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz#3ed4fff31c015e7f3f1467f190dbe545cd7b046c" - integrity sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg== +"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8": + version "7.13.8" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-proposal-numeric-separator@^7.12.7": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz#8bf253de8139099fea193b297d23a9d406ef056b" - integrity sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ== +"@babel/plugin-proposal-numeric-separator@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-proposal-object-rest-spread@^7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.9.0": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069" - integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== +"@babel/plugin-proposal-object-rest-spread@^7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.13.8": + version "7.13.8" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" - "@babel/plugin-transform-parameters" "^7.12.1" + "@babel/compat-data" "^7.13.8" + "@babel/helper-compilation-targets" "^7.13.8" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.13.0" -"@babel/plugin-proposal-optional-catch-binding@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz#ccc2421af64d3aae50b558a71cede929a5ab2942" - integrity sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g== +"@babel/plugin-proposal-optional-catch-binding@^7.13.8": + version "7.13.8" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-proposal-optional-chaining@^7.12.7": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz#e02f0ea1b5dc59d401ec16fb824679f683d3303c" - integrity sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA== +"@babel/plugin-proposal-optional-chaining@^7.13.8": + version "7.13.8" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.13.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" - "@babel/plugin-syntax-optional-chaining" "^7.8.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-proposal-private-methods@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz#86814f6e7a21374c980c10d38b4493e703f4a389" - integrity sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.12.1" - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-proposal-unicode-property-regex@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz#2a183958d417765b9eae334f47758e5d6a82e072" - integrity sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w== +"@babel/plugin-proposal-private-methods@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz" dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.12.1" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-create-class-features-plugin" "^7.13.0" + "@babel/helper-plugin-utils" "^7.13.0" -"@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.8.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz#ee3a95e90cdc04fe8cd92ec3279fa017d68a0d1d" - integrity sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A== +"@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz" dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.8.8" - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-create-regexp-features-plugin" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-syntax-async-generators@^7.8.0": +"@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-class-properties@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz#bcb297c5366e79bebadef509549cd93b04f19978" - integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA== +"@babel/plugin-syntax-class-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-syntax-dynamic-import@^7.8.0": +"@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" - integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-export-namespace-from@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" - integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + resolved "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-json-strings@^7.8.0": +"@babel/plugin-syntax-json-strings@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926" - integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== +"@babel/plugin-syntax-jsx@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-numeric-separator@^7.10.4": version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-object-rest-spread@^7.8.0": +"@babel/plugin-syntax-object-rest-spread@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-optional-catch-binding@^7.8.0": +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-optional-chaining@^7.8.0": +"@babel/plugin-syntax-optional-chaining@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-top-level-await@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz#dd6c0b357ac1bb142d98537450a319625d13d2a0" - integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== +"@babel/plugin-syntax-top-level-await@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-arrow-functions@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz#8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3" - integrity sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A== +"@babel/plugin-transform-arrow-functions@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.13.0" -"@babel/plugin-transform-async-to-generator@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz#3849a49cc2a22e9743cbd6b52926d30337229af1" - integrity sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A== +"@babel/plugin-transform-async-to-generator@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz" dependencies: - "@babel/helper-module-imports" "^7.12.1" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-remap-async-to-generator" "^7.12.1" + "@babel/helper-module-imports" "^7.12.13" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-remap-async-to-generator" "^7.13.0" -"@babel/plugin-transform-block-scoped-functions@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz#f2a1a365bde2b7112e0a6ded9067fdd7c07905d9" - integrity sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA== +"@babel/plugin-transform-block-scoped-functions@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-block-scoping@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz#f0ee727874b42a208a48a586b84c3d222c2bbef1" - integrity sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w== +"@babel/plugin-transform-block-scoping@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-classes@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz#65e650fcaddd3d88ddce67c0f834a3d436a32db6" - integrity sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog== +"@babel/plugin-transform-classes@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz" dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-define-map" "^7.10.4" - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-replace-supers" "^7.12.1" - "@babel/helper-split-export-declaration" "^7.10.4" + "@babel/helper-annotate-as-pure" "^7.12.13" + "@babel/helper-function-name" "^7.12.13" + "@babel/helper-optimise-call-expression" "^7.12.13" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-replace-supers" "^7.13.0" + "@babel/helper-split-export-declaration" "^7.12.13" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz#d68cf6c9b7f838a8a4144badbe97541ea0904852" - integrity sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg== +"@babel/plugin-transform-computed-properties@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.13.0" -"@babel/plugin-transform-destructuring@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz#b9a570fe0d0a8d460116413cb4f97e8e08b2f847" - integrity sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw== +"@babel/plugin-transform-destructuring@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.13.0" -"@babel/plugin-transform-dotall-regex@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz#a1d16c14862817b6409c0a678d6f9373ca9cd975" - integrity sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA== +"@babel/plugin-transform-dotall-regex@^7.12.13", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz" dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.12.1" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-create-regexp-features-plugin" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz#c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e" - integrity sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-duplicate-keys@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz#745661baba295ac06e686822797a69fbaa2ca228" - integrity sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw== +"@babel/plugin-transform-duplicate-keys@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-exponentiation-operator@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz#b0f2ed356ba1be1428ecaf128ff8a24f02830ae0" - integrity sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug== +"@babel/plugin-transform-exponentiation-operator@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz" dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-for-of@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz#07640f28867ed16f9511c99c888291f560921cfa" - integrity sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg== +"@babel/plugin-transform-for-of@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.13.0" -"@babel/plugin-transform-function-name@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz#2ec76258c70fe08c6d7da154003a480620eba667" - integrity sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw== +"@babel/plugin-transform-function-name@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz" dependencies: - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-function-name" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-literals@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz#d73b803a26b37017ddf9d3bb8f4dc58bfb806f57" - integrity sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ== +"@babel/plugin-transform-literals@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-member-expression-literals@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz#496038602daf1514a64d43d8e17cbb2755e0c3ad" - integrity sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg== +"@babel/plugin-transform-member-expression-literals@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-modules-amd@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz#3154300b026185666eebb0c0ed7f8415fefcf6f9" - integrity sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ== +"@babel/plugin-transform-modules-amd@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz" dependencies: - "@babel/helper-module-transforms" "^7.12.1" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-module-transforms" "^7.13.0" + "@babel/helper-plugin-utils" "^7.13.0" babel-plugin-dynamic-import-node "^2.3.3" -"@babel/plugin-transform-modules-commonjs@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz#fa403124542636c786cf9b460a0ffbb48a86e648" - integrity sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag== +"@babel/plugin-transform-modules-commonjs@^7.13.8": + version "7.13.8" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz" dependencies: - "@babel/helper-module-transforms" "^7.12.1" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-simple-access" "^7.12.1" + "@babel/helper-module-transforms" "^7.13.0" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-simple-access" "^7.12.13" babel-plugin-dynamic-import-node "^2.3.3" -"@babel/plugin-transform-modules-systemjs@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz#663fea620d593c93f214a464cd399bf6dc683086" - integrity sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q== +"@babel/plugin-transform-modules-systemjs@^7.13.8": + version "7.13.8" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz" dependencies: - "@babel/helper-hoist-variables" "^7.10.4" - "@babel/helper-module-transforms" "^7.12.1" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-validator-identifier" "^7.10.4" + "@babel/helper-hoist-variables" "^7.13.0" + "@babel/helper-module-transforms" "^7.13.0" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-validator-identifier" "^7.12.11" babel-plugin-dynamic-import-node "^2.3.3" -"@babel/plugin-transform-modules-umd@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz#eb5a218d6b1c68f3d6217b8fa2cc82fec6547902" - integrity sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q== +"@babel/plugin-transform-modules-umd@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz" dependencies: - "@babel/helper-module-transforms" "^7.12.1" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-module-transforms" "^7.13.0" + "@babel/helper-plugin-utils" "^7.13.0" -"@babel/plugin-transform-named-capturing-groups-regex@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz#b407f5c96be0d9f5f88467497fa82b30ac3e8753" - integrity sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q== +"@babel/plugin-transform-named-capturing-groups-regex@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz" dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.12.1" + "@babel/helper-create-regexp-features-plugin" "^7.12.13" -"@babel/plugin-transform-new-target@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz#80073f02ee1bb2d365c3416490e085c95759dec0" - integrity sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw== +"@babel/plugin-transform-new-target@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-object-super@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz#4ea08696b8d2e65841d0c7706482b048bed1066e" - integrity sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-replace-supers" "^7.12.1" - -"@babel/plugin-transform-parameters@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz#d2e963b038771650c922eff593799c96d853255d" - integrity sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-property-literals@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz#41bc81200d730abb4456ab8b3fbd5537b59adecd" - integrity sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ== +"@babel/plugin-transform-object-super@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-replace-supers" "^7.12.13" -"@babel/plugin-transform-react-display-name@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz#1cbcd0c3b1d6648c55374a22fc9b6b7e5341c00d" - integrity sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w== +"@babel/plugin-transform-parameters@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.13.0" -"@babel/plugin-transform-react-jsx-development@^7.12.7": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.7.tgz#4c2a647de79c7e2b16bfe4540677ba3121e82a08" - integrity sha512-Rs3ETtMtR3VLXFeYRChle5SsP/P9Jp/6dsewBQfokDSzKJThlsuFcnzLTDRALiUmTC48ej19YD9uN1mupEeEDg== +"@babel/plugin-transform-property-literals@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz" dependencies: - "@babel/helper-builder-react-jsx-experimental" "^7.12.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-jsx" "^7.12.1" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-react-jsx-self@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz#ef43cbca2a14f1bd17807dbe4376ff89d714cf28" - integrity sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA== +"@babel/plugin-transform-react-display-name@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-react-jsx-source@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz#d07de6863f468da0809edcf79a1aa8ce2a82a26b" - integrity sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ== +"@babel/plugin-transform-react-jsx-development@^7.12.12": + version "7.12.17" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-transform-react-jsx" "^7.12.17" -"@babel/plugin-transform-react-jsx@^7.12.7": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.7.tgz#8b14d45f6eccd41b7f924bcb65c021e9f0a06f7f" - integrity sha512-YFlTi6MEsclFAPIDNZYiCRbneg1MFGao9pPG9uD5htwE0vDbPaMUMeYd6itWjw7K4kro4UbdQf3ljmFl9y48dQ== +"@babel/plugin-transform-react-jsx@^7.12.13", "@babel/plugin-transform-react-jsx@^7.12.17": + version "7.12.17" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz" dependencies: - "@babel/helper-builder-react-jsx" "^7.10.4" - "@babel/helper-builder-react-jsx-experimental" "^7.12.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-jsx" "^7.12.1" + "@babel/helper-annotate-as-pure" "^7.12.13" + "@babel/helper-module-imports" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-jsx" "^7.12.13" + "@babel/types" "^7.12.17" "@babel/plugin-transform-react-pure-annotations@^7.12.1": version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz#05d46f0ab4d1339ac59adf20a1462c91b37a1a42" - integrity sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg== + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz" dependencies: "@babel/helper-annotate-as-pure" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-regenerator@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz#5f0a28d842f6462281f06a964e88ba8d7ab49753" - integrity sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng== +"@babel/plugin-transform-regenerator@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz" dependencies: regenerator-transform "^0.14.2" -"@babel/plugin-transform-reserved-words@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz#6fdfc8cc7edcc42b36a7c12188c6787c873adcd8" - integrity sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A== +"@babel/plugin-transform-reserved-words@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-shorthand-properties@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz#0bf9cac5550fce0cfdf043420f661d645fdc75e3" - integrity sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw== +"@babel/plugin-transform-shorthand-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-spread@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz#527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e" - integrity sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng== +"@babel/plugin-transform-spread@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.13.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" -"@babel/plugin-transform-sticky-regex@^7.12.7": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz#560224613ab23987453948ed21d0b0b193fa7fad" - integrity sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg== +"@babel/plugin-transform-sticky-regex@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-template-literals@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz#b43ece6ed9a79c0c71119f576d299ef09d942843" - integrity sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw== +"@babel/plugin-transform-template-literals@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.13.0" -"@babel/plugin-transform-typeof-symbol@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz#9ca6be343d42512fbc2e68236a82ae64bc7af78a" - integrity sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q== +"@babel/plugin-transform-typeof-symbol@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-unicode-escapes@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz#5232b9f81ccb07070b7c3c36c67a1b78f1845709" - integrity sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q== +"@babel/plugin-transform-unicode-escapes@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-unicode-regex@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz#cc9661f61390db5c65e3febaccefd5c6ac3faecb" - integrity sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg== +"@babel/plugin-transform-unicode-regex@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz" dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.12.1" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-create-regexp-features-plugin" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" -"@babel/polyfill@^7.8.7": +"@babel/polyfill@^7.12.1": version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.12.1.tgz#1f2d6371d1261bbd961f3c5d5909150e12d0bd96" - integrity sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g== + resolved "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz" dependencies: core-js "^2.6.5" regenerator-runtime "^0.13.4" -"@babel/preset-env@^7.9.0": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.7.tgz#54ea21dbe92caf6f10cb1a0a576adc4ebf094b55" - integrity sha512-OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew== - dependencies: - "@babel/compat-data" "^7.12.7" - "@babel/helper-compilation-targets" "^7.12.5" - "@babel/helper-module-imports" "^7.12.5" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-validator-option" "^7.12.1" - "@babel/plugin-proposal-async-generator-functions" "^7.12.1" - "@babel/plugin-proposal-class-properties" "^7.12.1" - "@babel/plugin-proposal-dynamic-import" "^7.12.1" - "@babel/plugin-proposal-export-namespace-from" "^7.12.1" - "@babel/plugin-proposal-json-strings" "^7.12.1" - "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1" - "@babel/plugin-proposal-numeric-separator" "^7.12.7" - "@babel/plugin-proposal-object-rest-spread" "^7.12.1" - "@babel/plugin-proposal-optional-catch-binding" "^7.12.1" - "@babel/plugin-proposal-optional-chaining" "^7.12.7" - "@babel/plugin-proposal-private-methods" "^7.12.1" - "@babel/plugin-proposal-unicode-property-regex" "^7.12.1" - "@babel/plugin-syntax-async-generators" "^7.8.0" - "@babel/plugin-syntax-class-properties" "^7.12.1" - "@babel/plugin-syntax-dynamic-import" "^7.8.0" +"@babel/preset-env@^7.12.1": + version "7.13.10" + resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.10.tgz" + dependencies: + "@babel/compat-data" "^7.13.8" + "@babel/helper-compilation-targets" "^7.13.10" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-validator-option" "^7.12.17" + "@babel/plugin-proposal-async-generator-functions" "^7.13.8" + "@babel/plugin-proposal-class-properties" "^7.13.0" + "@babel/plugin-proposal-dynamic-import" "^7.13.8" + "@babel/plugin-proposal-export-namespace-from" "^7.12.13" + "@babel/plugin-proposal-json-strings" "^7.13.8" + "@babel/plugin-proposal-logical-assignment-operators" "^7.13.8" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8" + "@babel/plugin-proposal-numeric-separator" "^7.12.13" + "@babel/plugin-proposal-object-rest-spread" "^7.13.8" + "@babel/plugin-proposal-optional-catch-binding" "^7.13.8" + "@babel/plugin-proposal-optional-chaining" "^7.13.8" + "@babel/plugin-proposal-private-methods" "^7.13.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.12.13" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.0" + "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" "@babel/plugin-syntax-numeric-separator" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" - "@babel/plugin-syntax-optional-chaining" "^7.8.0" - "@babel/plugin-syntax-top-level-await" "^7.12.1" - "@babel/plugin-transform-arrow-functions" "^7.12.1" - "@babel/plugin-transform-async-to-generator" "^7.12.1" - "@babel/plugin-transform-block-scoped-functions" "^7.12.1" - "@babel/plugin-transform-block-scoping" "^7.12.1" - "@babel/plugin-transform-classes" "^7.12.1" - "@babel/plugin-transform-computed-properties" "^7.12.1" - "@babel/plugin-transform-destructuring" "^7.12.1" - "@babel/plugin-transform-dotall-regex" "^7.12.1" - "@babel/plugin-transform-duplicate-keys" "^7.12.1" - "@babel/plugin-transform-exponentiation-operator" "^7.12.1" - "@babel/plugin-transform-for-of" "^7.12.1" - "@babel/plugin-transform-function-name" "^7.12.1" - "@babel/plugin-transform-literals" "^7.12.1" - "@babel/plugin-transform-member-expression-literals" "^7.12.1" - "@babel/plugin-transform-modules-amd" "^7.12.1" - "@babel/plugin-transform-modules-commonjs" "^7.12.1" - "@babel/plugin-transform-modules-systemjs" "^7.12.1" - "@babel/plugin-transform-modules-umd" "^7.12.1" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1" - "@babel/plugin-transform-new-target" "^7.12.1" - "@babel/plugin-transform-object-super" "^7.12.1" - "@babel/plugin-transform-parameters" "^7.12.1" - "@babel/plugin-transform-property-literals" "^7.12.1" - "@babel/plugin-transform-regenerator" "^7.12.1" - "@babel/plugin-transform-reserved-words" "^7.12.1" - "@babel/plugin-transform-shorthand-properties" "^7.12.1" - "@babel/plugin-transform-spread" "^7.12.1" - "@babel/plugin-transform-sticky-regex" "^7.12.7" - "@babel/plugin-transform-template-literals" "^7.12.1" - "@babel/plugin-transform-typeof-symbol" "^7.12.1" - "@babel/plugin-transform-unicode-escapes" "^7.12.1" - "@babel/plugin-transform-unicode-regex" "^7.12.1" - "@babel/preset-modules" "^0.1.3" - "@babel/types" "^7.12.7" - core-js-compat "^3.7.0" - semver "^5.5.0" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-top-level-await" "^7.12.13" + "@babel/plugin-transform-arrow-functions" "^7.13.0" + "@babel/plugin-transform-async-to-generator" "^7.13.0" + "@babel/plugin-transform-block-scoped-functions" "^7.12.13" + "@babel/plugin-transform-block-scoping" "^7.12.13" + "@babel/plugin-transform-classes" "^7.13.0" + "@babel/plugin-transform-computed-properties" "^7.13.0" + "@babel/plugin-transform-destructuring" "^7.13.0" + "@babel/plugin-transform-dotall-regex" "^7.12.13" + "@babel/plugin-transform-duplicate-keys" "^7.12.13" + "@babel/plugin-transform-exponentiation-operator" "^7.12.13" + "@babel/plugin-transform-for-of" "^7.13.0" + "@babel/plugin-transform-function-name" "^7.12.13" + "@babel/plugin-transform-literals" "^7.12.13" + "@babel/plugin-transform-member-expression-literals" "^7.12.13" + "@babel/plugin-transform-modules-amd" "^7.13.0" + "@babel/plugin-transform-modules-commonjs" "^7.13.8" + "@babel/plugin-transform-modules-systemjs" "^7.13.8" + "@babel/plugin-transform-modules-umd" "^7.13.0" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13" + "@babel/plugin-transform-new-target" "^7.12.13" + "@babel/plugin-transform-object-super" "^7.12.13" + "@babel/plugin-transform-parameters" "^7.13.0" + "@babel/plugin-transform-property-literals" "^7.12.13" + "@babel/plugin-transform-regenerator" "^7.12.13" + "@babel/plugin-transform-reserved-words" "^7.12.13" + "@babel/plugin-transform-shorthand-properties" "^7.12.13" + "@babel/plugin-transform-spread" "^7.13.0" + "@babel/plugin-transform-sticky-regex" "^7.12.13" + "@babel/plugin-transform-template-literals" "^7.13.0" + "@babel/plugin-transform-typeof-symbol" "^7.12.13" + "@babel/plugin-transform-unicode-escapes" "^7.12.13" + "@babel/plugin-transform-unicode-regex" "^7.12.13" + "@babel/preset-modules" "^0.1.4" + "@babel/types" "^7.13.0" + babel-plugin-polyfill-corejs2 "^0.1.4" + babel-plugin-polyfill-corejs3 "^0.1.3" + babel-plugin-polyfill-regenerator "^0.1.2" + core-js-compat "^3.9.0" + semver "^6.3.0" -"@babel/preset-modules@^0.1.3": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" - integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== +"@babel/preset-modules@^0.1.4": + version "0.1.4" + resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz" dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" @@ -920,23 +743,19 @@ "@babel/types" "^7.4.4" esutils "^2.0.2" -"@babel/preset-react@^7.9.4": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.7.tgz#36d61d83223b07b6ac4ec55cf016abb0f70be83b" - integrity sha512-wKeTdnGUP5AEYCYQIMeXMMwU7j+2opxrG0WzuZfxuuW9nhKvvALBjl67653CWamZJVefuJGI219G591RSldrqQ== +"@babel/preset-react@^7.12.5": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.13.tgz" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-transform-react-display-name" "^7.12.1" - "@babel/plugin-transform-react-jsx" "^7.12.7" - "@babel/plugin-transform-react-jsx-development" "^7.12.7" - "@babel/plugin-transform-react-jsx-self" "^7.12.1" - "@babel/plugin-transform-react-jsx-source" "^7.12.1" + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-transform-react-display-name" "^7.12.13" + "@babel/plugin-transform-react-jsx" "^7.12.13" + "@babel/plugin-transform-react-jsx-development" "^7.12.12" "@babel/plugin-transform-react-pure-annotations" "^7.12.1" -"@babel/register@^7.9.0": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.12.1.tgz#cdb087bdfc4f7241c03231f22e15d211acf21438" - integrity sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q== +"@babel/register@^7.12.1": + version "7.13.8" + resolved "https://registry.npmjs.org/@babel/register/-/register-7.13.8.tgz" dependencies: find-cache-dir "^2.0.0" lodash "^4.17.19" @@ -945,102 +764,116 @@ source-map-support "^0.5.16" "@babel/runtime@^7.8.4": - version "7.9.2" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06" - integrity sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q== + version "7.13.10" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz" dependencies: regenerator-runtime "^0.13.4" -"@babel/template@^7.10.4", "@babel/template@^7.12.7": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc" - integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/parser" "^7.12.7" - "@babel/types" "^7.12.7" - -"@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5", "@babel/traverse@^7.12.9", "@babel/traverse@^7.9.0": - version "7.12.9" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.9.tgz#fad26c972eabbc11350e0b695978de6cc8e8596f" - integrity sha512-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.5" - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.11.0" - "@babel/parser" "^7.12.7" - "@babel/types" "^7.12.7" +"@babel/template@^7.12.13": + version "7.12.13" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz" + dependencies: + "@babel/code-frame" "^7.12.13" + "@babel/parser" "^7.12.13" + "@babel/types" "^7.12.13" + +"@babel/traverse@^7.12.5", "@babel/traverse@^7.13.0": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.0.tgz" + dependencies: + "@babel/code-frame" "^7.12.13" + "@babel/generator" "^7.13.0" + "@babel/helper-function-name" "^7.12.13" + "@babel/helper-split-export-declaration" "^7.12.13" + "@babel/parser" "^7.13.0" + "@babel/types" "^7.13.0" debug "^4.1.0" globals "^11.1.0" lodash "^4.17.19" -"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4", "@babel/types@^7.8.3", "@babel/types@^7.9.0": - version "7.12.7" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.7.tgz#6039ff1e242640a29452c9ae572162ec9a8f5d13" - integrity sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ== +"@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.12.17", "@babel/types@^7.12.6", "@babel/types@^7.13.0", "@babel/types@^7.4.4": + version "7.13.0" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.13.0.tgz" dependencies: - "@babel/helper-validator-identifier" "^7.10.4" + "@babel/helper-validator-identifier" "^7.12.11" lodash "^4.17.19" to-fast-properties "^2.0.0" "@mrmlnc/readdir-enhanced@^2.2.1": version "2.2.1" - resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" - integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g== + resolved "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz" dependencies: call-me-maybe "^1.0.1" glob-to-regexp "^0.3.0" +"@nodelib/fs.scandir@2.1.4": + version "2.1.4" + resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz" + dependencies: + "@nodelib/fs.stat" "2.0.4" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.4", "@nodelib/fs.stat@^2.0.2": + version "2.0.4" + resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz" + "@nodelib/fs.stat@^1.1.2": version "1.1.3" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" - integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== + resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz" + +"@nodelib/fs.walk@^1.2.3": + version "1.2.6" + resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz" + dependencies: + "@nodelib/fs.scandir" "2.1.4" + fastq "^1.6.0" "@sindresorhus/is@^0.7.0": version "0.7.0" - resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd" - integrity sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow== + resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz" "@types/cheerio@^0.22.8": - version "0.22.17" - resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.17.tgz#e54f71c3135f71ebc16c8dc62edad533872c9e72" - integrity sha512-izlm+hbqWN9csuB9GSMfCnAyd3/57XZi3rfz1B0C4QBGVMp+9xQ7+9KYnep+ySfUrCWql4lGzkLf0XmprXcz9g== + version "0.22.25" + resolved "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.25.tgz" dependencies: "@types/node" "*" -"@types/color-name@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" - integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== - "@types/node@*": - version "12.12.31" - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.31.tgz#d6b4f9645fee17f11319b508fb1001797425da51" - integrity sha512-T+wnJno8uh27G9c+1T+a1/WYCHzLeDqtsGJkoEdSp2X8RTh3oOCZQcUnjAx90CS8cmmADX51O0FI/tu9s0yssg== + version "14.14.33" + resolved "https://registry.npmjs.org/@types/node/-/node-14.14.33.tgz" "@types/q@^1.5.1": - version "1.5.2" - resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8" - integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== + version "1.5.4" + resolved "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz" accepts@~1.3.7: version "1.3.7" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" - integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== + resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz" dependencies: mime-types "~2.1.24" negotiator "0.6.2" address@1.1.2, address@^1.0.1: version "1.1.2" - resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" - integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== + resolved "https://registry.npmjs.org/address/-/address-1.1.2.tgz" + +airbnb-prop-types@^2.16.0: + version "2.16.0" + resolved "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz" + dependencies: + array.prototype.find "^2.1.1" + function.prototype.name "^1.1.2" + is-regex "^1.1.0" + object-is "^1.1.2" + object.assign "^4.1.0" + object.entries "^1.1.2" + prop-types "^15.7.2" + prop-types-exact "^1.2.0" + react-is "^16.13.1" -ajv@^6.5.5: - version "6.12.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz#06d60b96d87b8454a5adaba86e7854da629db4b7" - integrity sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw== +ajv@^6.12.3: + version "6.12.6" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" dependencies: fast-deep-equal "^3.1.1" fast-json-stable-stringify "^2.0.0" @@ -1049,192 +882,166 @@ ajv@^6.5.5: alphanum-sort@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" - integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= - -ansi-escapes@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" - integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + resolved "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz" ansi-red@^0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/ansi-red/-/ansi-red-0.1.1.tgz#8c638f9d1080800a353c9c28c8a81ca4705d946c" - integrity sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw= + resolved "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz" dependencies: ansi-wrap "0.1.0" ansi-regex@^2.0.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz" -ansi-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" - integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= - -ansi-regex@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== +ansi-regex@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz" ansi-styles@^2.2.1: version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz" ansi-styles@^3.2.1: version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" dependencies: color-convert "^1.9.0" ansi-styles@^4.1.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" - integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" dependencies: - "@types/color-name" "^1.1.1" color-convert "^2.0.1" ansi-wrap@0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" - integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768= - -anymatch@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" - integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== - dependencies: - micromatch "^3.1.4" - normalize-path "^2.1.1" + resolved "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" arch@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/arch/-/arch-2.1.1.tgz#8f5c2731aa35a30929221bb0640eed65175ec84e" - integrity sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg== + version "2.2.0" + resolved "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz" archive-type@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/archive-type/-/archive-type-4.0.0.tgz#f92e72233056dfc6969472749c267bdb046b1d70" - integrity sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA= + resolved "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz" dependencies: file-type "^4.2.0" argparse@^1.0.10, argparse@^1.0.7: version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" dependencies: sprintf-js "~1.0.2" arr-diff@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= + resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz" arr-flatten@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" - integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz" arr-union@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" - integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= + resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz" + +array-filter@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz" array-find-index@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" - integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= + resolved "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz" array-flatten@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= + resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" array-union@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" - integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= + resolved "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz" dependencies: array-uniq "^1.0.1" +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" + array-uniq@^1.0.1: version "1.0.3" - resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" - integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= + resolved "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz" array-unique@^0.3.2: version "0.3.2" - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" - integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= + resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz" + +array.prototype.find@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.1.tgz" + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.4" + +array.prototype.flat@^1.2.3: + version "1.2.4" + resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz" + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + es-abstract "^1.18.0-next.1" arrify@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= + resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" asn1@~0.2.3: version "0.2.4" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" - integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== + resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz" dependencies: safer-buffer "~2.1.0" assert-plus@1.0.0, assert-plus@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= assign-symbols@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" - integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= - -async-each@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" - integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== + resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz" async@^2.6.2: version "2.6.3" - resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" - integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== + resolved "https://registry.npmjs.org/async/-/async-2.6.3.tgz" dependencies: lodash "^4.17.14" asynckit@^0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" + +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz" atob@^2.1.2: version "2.1.2" - resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz" autolinker@^3.11.0: - version "3.13.0" - resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-3.13.0.tgz#7a51244bb11bf75de89a48047919e93071e78f43" - integrity sha512-qlM0Su9lYYJ7lAth6xxB0rRdpS4FGmRboaghmM45Ud6ygGZa/TK/cbRAX6afvusJ79vyciy18QSKrWTM6cJHiw== + version "3.14.2" + resolved "https://registry.npmjs.org/autolinker/-/autolinker-3.14.2.tgz" dependencies: tslib "^1.9.3" autolinker@~0.28.0: version "0.28.1" - resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-0.28.1.tgz#0652b491881879f0775dace0cdca3233942a4e47" - integrity sha1-BlK0kYgYefB3XazgzcoyM5QqTkc= + resolved "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz" dependencies: gulp-header "^1.7.1" autoprefixer@^9.7.5: version "9.8.6" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f" - integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg== + resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz" dependencies: browserslist "^4.12.0" caniuse-lite "^1.0.30001109" @@ -1246,49 +1053,54 @@ autoprefixer@^9.7.5: aws-sign2@~0.7.0: version "0.7.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" - integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= + resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz" aws4@^1.8.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e" - integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug== - -babel-code-frame@^6.22.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" - integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= - dependencies: - chalk "^1.1.3" - esutils "^2.0.2" - js-tokens "^3.0.2" + version "1.11.0" + resolved "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz" babel-plugin-dynamic-import-node@^2.3.3: version "2.3.3" - resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" - integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== + resolved "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz" dependencies: object.assign "^4.1.0" +babel-plugin-polyfill-corejs2@^0.1.4: + version "0.1.10" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz" + dependencies: + "@babel/compat-data" "^7.13.0" + "@babel/helper-define-polyfill-provider" "^0.1.5" + semver "^6.1.1" + +babel-plugin-polyfill-corejs3@^0.1.3: + version "0.1.7" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz" + dependencies: + "@babel/helper-define-polyfill-provider" "^0.1.5" + core-js-compat "^3.8.1" + +babel-plugin-polyfill-regenerator@^0.1.2: + version "0.1.6" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz" + dependencies: + "@babel/helper-define-polyfill-provider" "^0.1.5" + babylon@^6.18.0: version "6.18.0" - resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" - integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== + resolved "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz" balanced-match@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" - integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz" -base64-js@^1.0.2: - version "1.3.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" - integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" base@^0.11.1: version "0.11.2" - resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" - integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz" dependencies: cache-base "^1.0.1" class-utils "^0.3.5" @@ -1300,20 +1112,17 @@ base@^0.11.1: bcrypt-pbkdf@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" - integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= + resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz" dependencies: tweetnacl "^0.14.3" big.js@^5.2.2: version "5.2.2" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz" bin-build@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/bin-build/-/bin-build-3.0.0.tgz#c5780a25a8a9f966d8244217e6c1f5082a143861" - integrity sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA== + resolved "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz" dependencies: decompress "^4.0.0" download "^6.2.2" @@ -1323,16 +1132,14 @@ bin-build@^3.0.0: bin-check@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/bin-check/-/bin-check-4.1.0.tgz#fc495970bdc88bb1d5a35fc17e65c4a149fc4a49" - integrity sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA== + resolved "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz" dependencies: execa "^0.7.0" executable "^4.1.0" bin-version-check@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/bin-version-check/-/bin-version-check-4.0.0.tgz#7d819c62496991f80d893e6e02a3032361608f71" - integrity sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ== + resolved "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz" dependencies: bin-version "^3.0.0" semver "^5.6.0" @@ -1340,16 +1147,14 @@ bin-version-check@^4.0.0: bin-version@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/bin-version/-/bin-version-3.1.0.tgz#5b09eb280752b1bd28f0c9db3f96f2f43b6c0839" - integrity sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ== + resolved "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz" dependencies: execa "^1.0.0" find-versions "^3.0.0" bin-wrapper@^4.0.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/bin-wrapper/-/bin-wrapper-4.1.0.tgz#99348f2cf85031e3ef7efce7e5300aeaae960605" - integrity sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q== + resolved "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz" dependencies: bin-check "^4.1.0" bin-version-check "^4.0.0" @@ -1358,30 +1163,16 @@ bin-wrapper@^4.0.0: os-filter-obj "^2.0.0" pify "^4.0.1" -binary-extensions@^1.0.0: - version "1.13.1" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" - integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== - -bindings@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - bl@^1.0.0: version "1.2.3" - resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.3.tgz#1e8dd80142eac80d7158c9dccc047fb620e035e7" - integrity sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww== + resolved "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz" dependencies: readable-stream "^2.3.5" safe-buffer "^5.1.1" body-parser@1.19.0: version "1.19.0" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" - integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== + resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz" dependencies: bytes "3.1.0" content-type "~1.0.4" @@ -1396,8 +1187,7 @@ body-parser@1.19.0: body@^5.1.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/body/-/body-5.1.0.tgz#e4ba0ce410a46936323367609ecb4e6553125069" - integrity sha1-5LoM5BCkaTYyM2dgnstOZVMSUGk= + resolved "https://registry.npmjs.org/body/-/body-5.1.0.tgz" dependencies: continuable-cache "^0.3.1" error "^7.0.0" @@ -1406,21 +1196,18 @@ body@^5.1.0: boolbase@^1.0.0, boolbase@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= + resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" dependencies: balanced-match "^1.0.0" concat-map "0.0.1" -braces@^2.3.1, braces@^2.3.2: +braces@^2.3.1: version "2.3.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" - integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz" dependencies: arr-flatten "^1.1.0" array-unique "^0.3.2" @@ -1433,86 +1220,72 @@ braces@^2.3.1, braces@^2.3.2: split-string "^3.0.2" to-regex "^3.0.1" -browserslist@4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.7.0.tgz#9ee89225ffc07db03409f2fee524dc8227458a17" - integrity sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA== +braces@^3.0.1: + version "3.0.2" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" dependencies: - caniuse-lite "^1.0.30000989" - electron-to-chromium "^1.3.247" - node-releases "^1.1.29" + fill-range "^7.0.1" -browserslist@^4.0.0: - version "4.11.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.11.0.tgz#aef4357b10a8abda00f97aac7cd587b2082ba1ad" - integrity sha512-WqEC7Yr5wUH5sg6ruR++v2SGOQYpyUdYYd4tZoAq1F7y+QXoLoYGXVbxhtaIqWmAJjtNTRjVD3HuJc1OXTel2A== +browserslist@4.14.2: + version "4.14.2" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz" dependencies: - caniuse-lite "^1.0.30001035" - electron-to-chromium "^1.3.380" - node-releases "^1.1.52" - pkg-up "^3.1.0" + caniuse-lite "^1.0.30001125" + electron-to-chromium "^1.3.564" + escalade "^3.0.2" + node-releases "^1.1.61" -browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.14.7: - version "4.15.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.15.0.tgz#3d48bbca6a3f378e86102ffd017d9a03f122bdb0" - integrity sha512-IJ1iysdMkGmjjYeRlDU8PQejVwxvVO5QOfXH7ylW31GO6LwNRSmm/SgRXtNsEXqMLl2e+2H5eEJ7sfynF8TCaQ== +browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.16.3: + version "4.16.3" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz" dependencies: - caniuse-lite "^1.0.30001164" + caniuse-lite "^1.0.30001181" colorette "^1.2.1" - electron-to-chromium "^1.3.612" + electron-to-chromium "^1.3.649" escalade "^3.1.1" - node-releases "^1.1.67" + node-releases "^1.1.70" buffer-alloc-unsafe@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" - integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== + resolved "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz" buffer-alloc@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" - integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== + resolved "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz" dependencies: buffer-alloc-unsafe "^1.1.0" buffer-fill "^1.0.0" buffer-crc32@~0.2.3: version "0.2.13" - resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" - integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= + resolved "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz" buffer-fill@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" - integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= + resolved "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz" buffer-from@^1.0.0: version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz" buffer@^5.2.1: - version "5.6.0" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786" - integrity sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw== + version "5.7.1" + resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz" dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" + base64-js "^1.3.1" + ieee754 "^1.1.13" bytes@1: version "1.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-1.0.0.tgz#3569ede8ba34315fab99c3e92cb04c7220de1fa8" - integrity sha1-NWnt6Lo0MV+rmcPpLLBMciDeH6g= + resolved "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz" bytes@3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" - integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== + resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz" cache-base@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" - integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz" dependencies: collection-visit "^1.0.0" component-emitter "^1.2.1" @@ -1526,8 +1299,7 @@ cache-base@^1.0.1: cacheable-request@^2.1.1: version "2.1.4" - resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-2.1.4.tgz#0d808801b6342ad33c91df9d0b44dc09b91e5c3d" - integrity sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0= + resolved "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz" dependencies: clone-response "1.0.2" get-stream "3.0.0" @@ -1537,72 +1309,64 @@ cacheable-request@^2.1.1: normalize-url "2.0.1" responselike "1.0.2" +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + call-me-maybe@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" - integrity sha1-JtII6onje1y95gJQoV8DHBak1ms= + resolved "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz" caller-callsite@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" - integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= + resolved "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz" dependencies: callsites "^2.0.0" caller-path@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" - integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= + resolved "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz" dependencies: caller-callsite "^2.0.0" callsites@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" - integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= + resolved "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz" camelcase-keys@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" - integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= + resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz" dependencies: camelcase "^2.0.0" map-obj "^1.0.0" camelcase@^2.0.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" - integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= + resolved "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz" caniuse-api@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" - integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== + resolved "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz" dependencies: browserslist "^4.0.0" caniuse-lite "^1.0.0" lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001035: - version "1.0.30001037" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001037.tgz#cf666560b14f8dfa18abc235db1ef2699273af6e" - integrity sha512-qQP40FzWQ1i9RTjxppOUnpM8OwTBFL5DQbjoR9Az32EtM7YUZOw9orFO6rj1C+xWAGzz+X3bUe09Jf5Ep+zpuA== - -caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001164: - version "1.0.30001164" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001164.tgz#5bbfd64ca605d43132f13cc7fdabb17c3036bfdc" - integrity sha512-G+A/tkf4bu0dSp9+duNiXc7bGds35DioCyC6vgK2m/rjA4Krpy5WeZgZyfH2f0wj2kI6yAWWucyap6oOwmY1mg== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001181: + version "1.0.30001198" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001198.tgz" caseless@~0.12.0: version "0.12.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= + resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz" caw@^2.0.0, caw@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/caw/-/caw-2.0.1.tgz#6c3ca071fc194720883c2dc5da9b074bfc7e9e95" - integrity sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA== + resolved "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz" dependencies: get-proxy "^2.0.0" isurl "^1.0.0-alpha5" @@ -1611,17 +1375,15 @@ caw@^2.0.0, caw@^2.0.1: chalk@2.4.2, chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" dependencies: ansi-styles "^3.2.1" escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^1.0.0, chalk@^1.1.3: +chalk@^1.0.0: version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz" dependencies: ansi-styles "^2.2.1" escape-string-regexp "^1.0.2" @@ -1631,21 +1393,24 @@ chalk@^1.0.0, chalk@^1.1.3: chalk@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" - integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + resolved "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" dependencies: ansi-styles "^4.1.0" supports-color "^7.1.0" -chardet@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== +cheerio-select-tmp@^0.1.0: + version "0.1.1" + resolved "https://registry.npmjs.org/cheerio-select-tmp/-/cheerio-select-tmp-0.1.1.tgz" + dependencies: + css-select "^3.1.2" + css-what "^4.0.0" + domelementtype "^2.1.0" + domhandler "^4.0.0" + domutils "^2.4.4" cheerio@0.22.0: version "0.22.0" - resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" - integrity sha1-qbqoYKP5tZWmuBsahocxIe06Jp4= + resolved "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz" dependencies: css-select "~1.2.0" dom-serializer "~0.1.0" @@ -1664,29 +1429,21 @@ cheerio@0.22.0: lodash.reject "^4.4.0" lodash.some "^4.4.0" -chokidar@^2.0.4: - version "2.1.8" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" - integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== +cheerio@^1.0.0-rc.3: + version "1.0.0-rc.5" + resolved "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.5.tgz" dependencies: - anymatch "^2.0.0" - async-each "^1.0.1" - braces "^2.3.2" - glob-parent "^3.1.0" - inherits "^2.0.3" - is-binary-path "^1.0.0" - is-glob "^4.0.0" - normalize-path "^3.0.0" - path-is-absolute "^1.0.0" - readdirp "^2.2.1" - upath "^1.1.1" - optionalDependencies: - fsevents "^1.2.7" + cheerio-select-tmp "^0.1.0" + dom-serializer "~1.2.0" + domhandler "^4.0.0" + entities "~2.1.0" + htmlparser2 "^6.0.0" + parse5 "^6.0.0" + parse5-htmlparser2-tree-adapter "^6.0.0" class-utils@^0.3.5: version "0.3.6" - resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" - integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz" dependencies: arr-union "^3.1.0" define-property "^0.2.5" @@ -1695,25 +1452,11 @@ class-utils@^0.3.5: classnames@^2.2.6: version "2.2.6" - resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" - integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== - -cli-cursor@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" - integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= - dependencies: - restore-cursor "^2.0.0" - -cli-width@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" - integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= + resolved "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz" clipboard@^2.0.0: - version "2.0.6" - resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376" - integrity sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg== + version "2.0.7" + resolved "https://registry.npmjs.org/clipboard/-/clipboard-2.0.7.tgz" dependencies: good-listener "^1.2.2" select "^1.1.2" @@ -1721,15 +1464,13 @@ clipboard@^2.0.0: clone-response@1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" - integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= + resolved "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz" dependencies: mimic-response "^1.0.0" coa@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" - integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== + resolved "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz" dependencies: "@types/q" "^1.5.1" chalk "^2.4.1" @@ -1737,98 +1478,86 @@ coa@^2.0.2: coffee-script@^1.12.4: version "1.12.7" - resolved "https://registry.yarnpkg.com/coffee-script/-/coffee-script-1.12.7.tgz#c05dae0cb79591d05b3070a8433a98c9a89ccc53" - integrity sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw== + resolved "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz" collection-visit@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" - integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= + resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz" dependencies: map-visit "^1.0.0" object-visit "^1.0.0" color-convert@^1.9.0, color-convert@^1.9.1: version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" dependencies: color-name "1.1.3" color-convert@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" dependencies: color-name "~1.1.4" -color-name@1.1.3: +color-name@1.1.3, color-name@^1.0.0: version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" -color-name@^1.0.0, color-name@~1.1.4: +color-name@~1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" -color-string@^1.5.2: - version "1.5.3" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" - integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== +color-string@^1.5.4: + version "1.5.5" + resolved "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz" dependencies: color-name "^1.0.0" simple-swizzle "^0.2.2" color@^3.0.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" - integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== + version "3.1.3" + resolved "https://registry.npmjs.org/color/-/color-3.1.3.tgz" dependencies: color-convert "^1.9.1" - color-string "^1.5.2" + color-string "^1.5.4" colorette@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" - integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== + version "1.2.2" + resolved "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz" combined-stream@^1.0.6, combined-stream@~1.0.6: version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" dependencies: delayed-stream "~1.0.0" -commander@^2.15.1, commander@^2.8.1: +commander@^2.19.0, commander@^2.8.1: version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" commander@^4.0.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" - integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz" + +commander@^5.0.0: + version "5.1.0" + resolved "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz" commondir@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= + resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" component-emitter@^1.2.1: version "1.3.0" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz" concat-map@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" concat-stream@^1.5.2: version "1.6.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz" dependencies: buffer-from "^1.0.0" inherits "^2.0.3" @@ -1837,115 +1566,106 @@ concat-stream@^1.5.2: concat-with-sourcemaps@*: version "1.1.0" - resolved "https://registry.yarnpkg.com/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz#d4ea93f05ae25790951b99e7b3b09e3908a4082e" - integrity sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg== + resolved "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz" dependencies: source-map "^0.6.1" config-chain@^1.1.11: version "1.1.12" - resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa" - integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA== + resolved "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz" dependencies: ini "^1.3.4" proto-list "~1.2.1" console-stream@^0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/console-stream/-/console-stream-0.1.1.tgz#a095fe07b20465955f2fafd28b5d72bccd949d44" - integrity sha1-oJX+B7IEZZVfL6/Si11yvM2UnUQ= + resolved "https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz" content-disposition@0.5.3, content-disposition@^0.5.2: version "0.5.3" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" - integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== + resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz" dependencies: safe-buffer "5.1.2" content-type@~1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz" continuable-cache@^0.3.1: version "0.3.1" - resolved "https://registry.yarnpkg.com/continuable-cache/-/continuable-cache-0.3.1.tgz#bd727a7faed77e71ff3985ac93351a912733ad0f" - integrity sha1-vXJ6f67XfnH/OYWskzUakSczrQ8= + resolved "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz" convert-source-map@^1.7.0: version "1.7.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" - integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== + resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz" dependencies: safe-buffer "~5.1.1" cookie-signature@1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= + resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" cookie@0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" - integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== + resolved "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz" copy-descriptor@^0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" - integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= + resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz" -core-js-compat@^3.7.0: - version "3.8.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.8.0.tgz#3248c6826f4006793bd637db608bca6e4cd688b1" - integrity sha512-o9QKelQSxQMYWHXc/Gc4L8bx/4F7TTraE5rhuN8I7mKBt5dBIUpXpIR3omv70ebr8ST5R3PqbDQr+ZI3+Tt1FQ== +core-js-compat@^3.8.1, core-js-compat@^3.9.0: + version "3.9.1" + resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.1.tgz" dependencies: - browserslist "^4.14.7" + browserslist "^4.16.3" semver "7.0.0" core-js@^2.6.5: - version "2.6.11" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" - integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== + version "2.6.12" + resolved "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz" core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" cosmiconfig@^5.0.0: version "5.2.1" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" - integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== + resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz" dependencies: import-fresh "^2.0.0" is-directory "^0.3.1" js-yaml "^3.13.1" parse-json "^4.0.0" -cross-spawn@6.0.5, cross-spawn@^6.0.0: - version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== +cross-spawn@7.0.3: + version "7.0.3" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" cross-spawn@^5.0.1: version "5.1.0" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" - integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz" dependencies: lru-cache "^4.0.1" shebang-command "^1.2.0" which "^1.2.9" +cross-spawn@^6.0.0: + version "6.0.5" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + crowdin-cli@^0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/crowdin-cli/-/crowdin-cli-0.3.0.tgz#eac9989a6fe7feaaf33090397afc187c67b46191" - integrity sha1-6smYmm/n/qrzMJA5evwYfGe0YZE= + resolved "https://registry.npmjs.org/crowdin-cli/-/crowdin-cli-0.3.0.tgz" dependencies: request "^2.53.0" yamljs "^0.2.1" @@ -1953,36 +1673,41 @@ crowdin-cli@^0.3.0: css-color-names@0.0.4, css-color-names@^0.0.4: version "0.0.4" - resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" - integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= + resolved "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz" css-declaration-sorter@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22" - integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== + resolved "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz" dependencies: postcss "^7.0.1" timsort "^0.3.0" css-select-base-adapter@^0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" - integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== + resolved "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz" css-select@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" - integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== + resolved "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz" dependencies: boolbase "^1.0.0" css-what "^3.2.1" domutils "^1.7.0" nth-check "^1.0.2" +css-select@^3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/css-select/-/css-select-3.1.2.tgz" + dependencies: + boolbase "^1.0.0" + css-what "^4.0.0" + domhandler "^4.0.0" + domutils "^2.4.3" + nth-check "^2.0.0" + css-select@~1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" - integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= + resolved "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz" dependencies: boolbase "~1.0.0" css-what "2.1" @@ -1991,39 +1716,37 @@ css-select@~1.2.0: css-tree@1.0.0-alpha.37: version "1.0.0-alpha.37" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" - integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== + resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz" dependencies: mdn-data "2.0.4" source-map "^0.6.1" -css-tree@1.0.0-alpha.39: - version "1.0.0-alpha.39" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.39.tgz#2bff3ffe1bb3f776cf7eefd91ee5cba77a149eeb" - integrity sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA== +css-tree@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz" dependencies: - mdn-data "2.0.6" + mdn-data "2.0.14" source-map "^0.6.1" css-what@2.1: version "2.1.3" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" - integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== + resolved "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz" css-what@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.2.1.tgz#f4a8f12421064621b456755e34a03a2c22df5da1" - integrity sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw== + version "3.4.2" + resolved "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz" + +css-what@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/css-what/-/css-what-4.0.0.tgz" cssesc@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" cssnano-preset-default@^4.0.7: version "4.0.7" - resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76" - integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA== + resolved "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz" dependencies: css-declaration-sorter "^4.0.1" cssnano-util-raw-cache "^4.0.1" @@ -2058,30 +1781,25 @@ cssnano-preset-default@^4.0.7: cssnano-util-get-arguments@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f" - integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8= + resolved "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz" cssnano-util-get-match@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d" - integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0= + resolved "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz" cssnano-util-raw-cache@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282" - integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== + resolved "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz" dependencies: postcss "^7.0.0" cssnano-util-same-parent@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3" - integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== + resolved "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz" cssnano@^4.1.10: version "4.1.10" - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2" - integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== + resolved "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz" dependencies: cosmiconfig "^5.0.0" cssnano-preset-default "^4.0.7" @@ -2089,75 +1807,58 @@ cssnano@^4.1.10: postcss "^7.0.0" csso@^4.0.2: - version "4.0.3" - resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.3.tgz#0d9985dc852c7cc2b2cacfbbe1079014d1a8e903" - integrity sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ== + version "4.2.0" + resolved "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz" dependencies: - css-tree "1.0.0-alpha.39" + css-tree "^1.1.2" currently-unhandled@^0.4.1: version "0.4.1" - resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" - integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= + resolved "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz" dependencies: array-find-index "^1.0.1" dashdash@^1.12.0: version "1.14.1" - resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= + resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz" dependencies: assert-plus "^1.0.0" debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0: version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" dependencies: ms "2.0.0" -debug@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.0.tgz#373687bffa678b38b1cd91f861b63850035ddc87" - integrity sha512-heNPJUJIqC+xB6ayLAMHaIrmN9HKa7aQO8MGqKpvCA+uJYVcvR6l5kgdrhRuwPFHU7P5/A1w0BjByPHwpfTDKg== - dependencies: - ms "^2.1.1" - -debug@^3.1.0, debug@^3.1.1, debug@^3.2.5: - version "3.2.6" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" - integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== +debug@4.3.1, debug@^4.1.0, debug@^4.1.1: + version "4.3.1" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz" dependencies: - ms "^2.1.1" + ms "2.1.2" -debug@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" - integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== +debug@^3.1.0, debug@^3.1.1: + version "3.2.7" + resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" dependencies: ms "^2.1.1" decamelize@^1.1.2: version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + version "0.2.2" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" decompress-response@^3.2.0, decompress-response@^3.3.0: version "3.3.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" - integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= + resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz" dependencies: mimic-response "^1.0.0" decompress-tar@^4.0.0, decompress-tar@^4.1.0, decompress-tar@^4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/decompress-tar/-/decompress-tar-4.1.1.tgz#718cbd3fcb16209716e70a26b84e7ba4592e5af1" - integrity sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ== + resolved "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz" dependencies: file-type "^5.2.0" is-stream "^1.1.0" @@ -2165,8 +1866,7 @@ decompress-tar@^4.0.0, decompress-tar@^4.1.0, decompress-tar@^4.1.1: decompress-tarbz2@^4.0.0: version "4.1.1" - resolved "https://registry.yarnpkg.com/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz#3082a5b880ea4043816349f378b56c516be1a39b" - integrity sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A== + resolved "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz" dependencies: decompress-tar "^4.1.0" file-type "^6.1.0" @@ -2176,8 +1876,7 @@ decompress-tarbz2@^4.0.0: decompress-targz@^4.0.0: version "4.1.1" - resolved "https://registry.yarnpkg.com/decompress-targz/-/decompress-targz-4.1.1.tgz#c09bc35c4d11f3de09f2d2da53e9de23e7ce1eee" - integrity sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w== + resolved "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz" dependencies: decompress-tar "^4.1.1" file-type "^5.2.0" @@ -2185,8 +1884,7 @@ decompress-targz@^4.0.0: decompress-unzip@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/decompress-unzip/-/decompress-unzip-4.0.1.tgz#deaaccdfd14aeaf85578f733ae8210f9b4848f69" - integrity sha1-3qrM39FK6vhVePczroIQ+bSEj2k= + resolved "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz" dependencies: file-type "^3.8.0" get-stream "^2.2.0" @@ -2195,8 +1893,7 @@ decompress-unzip@^4.0.1: decompress@^4.0.0, decompress@^4.2.0: version "4.2.1" - resolved "https://registry.yarnpkg.com/decompress/-/decompress-4.2.1.tgz#007f55cc6a62c055afa37c07eb6a4ee1b773f118" - integrity sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ== + resolved "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz" dependencies: decompress-tar "^4.0.0" decompress-tarbz2 "^4.0.0" @@ -2209,93 +1906,90 @@ decompress@^4.0.0, decompress@^4.2.0: deep-is@^0.1.3: version "0.1.3" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" - integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= + resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz" -define-properties@^1.1.2, define-properties@^1.1.3: +define-properties@^1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" dependencies: object-keys "^1.0.12" define-property@^0.2.5: version "0.2.5" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" - integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= + resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz" dependencies: is-descriptor "^0.1.0" define-property@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" - integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= + resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz" dependencies: is-descriptor "^1.0.0" define-property@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" - integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz" dependencies: is-descriptor "^1.0.2" isobject "^3.0.1" delayed-stream@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" delegate@^3.1.2: version "3.2.0" - resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166" - integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw== + resolved "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz" depd@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" - integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= + resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz" destroy@~1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" - integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= + resolved "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz" detect-port-alt@1.1.6: version "1.1.6" - resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275" - integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q== + resolved "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz" dependencies: address "^1.0.1" debug "^2.6.0" diacritics-map@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/diacritics-map/-/diacritics-map-0.1.0.tgz#6dfc0ff9d01000a2edf2865371cac316e94977af" - integrity sha1-bfwP+dAQAKLt8oZTccrDFulJd68= + resolved "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz" dir-glob@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" - integrity sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag== + resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz" dependencies: arrify "^1.0.1" path-type "^3.0.0" -docusaurus@^1.14.6: - version "1.14.6" - resolved "https://registry.yarnpkg.com/docusaurus/-/docusaurus-1.14.6.tgz#ffab9f6dafe8c48c477e0ebc7f491e554143b2b5" - integrity sha512-Hpo6xqYIHwazwuhXW25AKYv/os+dWoJ87qql/m1j1xp83h/BnfYV2l8PA8zLggF1wGUbJQbTx7GWo6QvD8z+4Q== - dependencies: - "@babel/core" "^7.9.0" - "@babel/plugin-proposal-class-properties" "^7.8.3" - "@babel/plugin-proposal-object-rest-spread" "^7.9.0" - "@babel/polyfill" "^7.8.7" - "@babel/preset-env" "^7.9.0" - "@babel/preset-react" "^7.9.4" - "@babel/register" "^7.9.0" - "@babel/traverse" "^7.9.0" - "@babel/types" "^7.9.0" +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" + dependencies: + path-type "^4.0.0" + +discontinuous-range@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz" + +docusaurus@^1.14.7: + version "1.14.7" + resolved "https://registry.npmjs.org/docusaurus/-/docusaurus-1.14.7.tgz" + dependencies: + "@babel/core" "^7.12.3" + "@babel/plugin-proposal-class-properties" "^7.12.1" + "@babel/plugin-proposal-object-rest-spread" "^7.12.1" + "@babel/polyfill" "^7.12.1" + "@babel/preset-env" "^7.12.1" + "@babel/preset-react" "^7.12.5" + "@babel/register" "^7.12.1" + "@babel/traverse" "^7.12.5" + "@babel/types" "^7.12.6" autoprefixer "^9.7.5" babylon "^6.18.0" chalk "^3.0.0" @@ -2303,12 +1997,14 @@ docusaurus@^1.14.6: commander "^4.0.1" crowdin-cli "^0.3.0" cssnano "^4.1.10" + enzyme "^3.10.0" + enzyme-adapter-react-16 "^1.15.1" escape-string-regexp "^2.0.0" express "^4.17.1" - feed "^4.0.0" - fs-extra "^8.1.0" + feed "^4.2.1" + fs-extra "^9.0.1" gaze "^1.1.3" - github-slugger "^1.2.1" + github-slugger "^1.3.0" glob "^7.1.6" highlight.js "^9.16.2" imagemin "^6.0.0" @@ -2316,14 +2012,14 @@ docusaurus@^1.14.6: imagemin-jpegtran "^6.0.0" imagemin-optipng "^6.0.0" imagemin-svgo "^7.0.0" - lodash "^4.17.15" + lodash "^4.17.20" markdown-toc "^1.2.0" mkdirp "^0.5.1" - portfinder "^1.0.25" + portfinder "^1.0.28" postcss "^7.0.23" - prismjs "^1.17.1" + prismjs "^1.22.0" react "^16.8.4" - react-dev-utils "^9.1.0" + react-dev-utils "^11.0.1" react-dom "^16.8.4" remarkable "^2.0.0" request "^2.88.0" @@ -2336,64 +2032,77 @@ docusaurus@^1.14.6: dom-serializer@0: version "0.2.2" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" - integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz" dependencies: domelementtype "^2.0.1" entities "^2.0.0" +dom-serializer@^1.0.1, dom-serializer@~1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.2.0.tgz" + dependencies: + domelementtype "^2.0.1" + domhandler "^4.0.0" + entities "^2.0.0" + dom-serializer@~0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" - integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz" dependencies: domelementtype "^1.3.0" entities "^1.1.1" domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: version "1.3.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" - integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz" -domelementtype@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d" - integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ== +domelementtype@^2.0.1, domelementtype@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz" domhandler@^2.3.0: version "2.4.2" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" - integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== + resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz" dependencies: domelementtype "1" -domutils@1.5.1: +domhandler@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.0.0.tgz" + dependencies: + domelementtype "^2.1.0" + +domutils@1.5.1, domutils@^1.5.1: version "1.5.1" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" - integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= + resolved "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz" dependencies: dom-serializer "0" domelementtype "1" -domutils@^1.5.1, domutils@^1.7.0: +domutils@^1.7.0: version "1.7.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" - integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz" dependencies: dom-serializer "0" domelementtype "1" +domutils@^2.4.3, domutils@^2.4.4: + version "2.4.4" + resolved "https://registry.npmjs.org/domutils/-/domutils-2.4.4.tgz" + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.0.1" + domhandler "^4.0.0" + dot-prop@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb" - integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A== + version "5.3.0" + resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz" dependencies: is-obj "^2.0.0" download@^6.2.2: version "6.2.5" - resolved "https://registry.yarnpkg.com/download/-/download-6.2.5.tgz#acd6a542e4cd0bb42ca70cfc98c9e43b07039714" - integrity sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA== + resolved "https://registry.npmjs.org/download/-/download-6.2.5.tgz" dependencies: caw "^2.0.0" content-disposition "^0.5.2" @@ -2409,8 +2118,7 @@ download@^6.2.2: download@^7.1.0: version "7.1.0" - resolved "https://registry.yarnpkg.com/download/-/download-7.1.0.tgz#9059aa9d70b503ee76a132897be6dec8e5587233" - integrity sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ== + resolved "https://registry.npmjs.org/download/-/download-7.1.0.tgz" dependencies: archive-type "^4.0.0" caw "^2.0.1" @@ -2427,155 +2135,189 @@ download@^7.1.0: duplexer3@^0.1.4: version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" - integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= + resolved "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz" duplexer@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" - integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= + version "0.1.2" + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz" ecc-jsbn@~0.1.1: version "0.1.2" - resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" - integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= + resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz" dependencies: jsbn "~0.1.0" safer-buffer "^2.1.0" ee-first@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= - -electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.380: - version "1.3.384" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.384.tgz#ca1d5710a4c53168431f1cbef39c8a971b646bf8" - integrity sha512-9jGNF78o450ymPf63n7/j1HrRAD4xGTsDkKY2X6jtCAWaYgph2A9xQjwfwRpj+AovkARMO+JfZuVCFTdandD6w== + resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" -electron-to-chromium@^1.3.612: - version "1.3.614" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.614.tgz#ff359e8d2249e2ce859a4c2bc34c22bd2e2eb0a2" - integrity sha512-JMDl46mg4G+n6q/hAJkwy9eMTj5FJjsE+8f/irAGRMLM4yeRVbMuRrdZrbbGGOrGVcZc4vJPjUpEUWNb/fA6hg== +electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.649: + version "1.3.684" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.684.tgz" "emoji-regex@>=6.0.0 <=6.1.1": version "6.1.1" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.1.1.tgz#c6cd0ec1b0642e2a3c67a1137efc5e796da4f88e" - integrity sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4= + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.1.tgz" -emojis-list@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" - integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz" encodeurl@~1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" end-of-stream@^1.0.0, end-of-stream@^1.1.0: version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" dependencies: once "^1.4.0" entities@^1.1.1, entities@~1.1.1: version "1.1.2" - resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" - integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== + resolved "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz" entities@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.0.tgz#68d6084cab1b079767540d80e56a39b423e4abf4" - integrity sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw== + version "2.2.0" + resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" + +entities@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz" + +enzyme-adapter-react-16@^1.15.1: + version "1.15.6" + resolved "https://registry.npmjs.org/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.6.tgz" + dependencies: + enzyme-adapter-utils "^1.14.0" + enzyme-shallow-equal "^1.0.4" + has "^1.0.3" + object.assign "^4.1.2" + object.values "^1.1.2" + prop-types "^15.7.2" + react-is "^16.13.1" + react-test-renderer "^16.0.0-0" + semver "^5.7.0" + +enzyme-adapter-utils@^1.14.0: + version "1.14.0" + resolved "https://registry.npmjs.org/enzyme-adapter-utils/-/enzyme-adapter-utils-1.14.0.tgz" + dependencies: + airbnb-prop-types "^2.16.0" + function.prototype.name "^1.1.3" + has "^1.0.3" + object.assign "^4.1.2" + object.fromentries "^2.0.3" + prop-types "^15.7.2" + semver "^5.7.1" + +enzyme-shallow-equal@^1.0.1, enzyme-shallow-equal@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.4.tgz" + dependencies: + has "^1.0.3" + object-is "^1.1.2" + +enzyme@^3.10.0: + version "3.11.0" + resolved "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz" + dependencies: + array.prototype.flat "^1.2.3" + cheerio "^1.0.0-rc.3" + enzyme-shallow-equal "^1.0.1" + function.prototype.name "^1.1.2" + has "^1.0.3" + html-element-map "^1.2.0" + is-boolean-object "^1.0.1" + is-callable "^1.1.5" + is-number-object "^1.0.4" + is-regex "^1.0.5" + is-string "^1.0.5" + is-subset "^0.1.1" + lodash.escape "^4.0.1" + lodash.isequal "^4.5.0" + object-inspect "^1.7.0" + object-is "^1.0.2" + object.assign "^4.1.0" + object.entries "^1.1.1" + object.values "^1.1.1" + raf "^3.4.1" + rst-selector-parser "^2.2.3" + string.prototype.trim "^1.2.1" error-ex@^1.2.0, error-ex@^1.3.1: version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" dependencies: is-arrayish "^0.2.1" error@^7.0.0: version "7.2.1" - resolved "https://registry.yarnpkg.com/error/-/error-7.2.1.tgz#eab21a4689b5f684fc83da84a0e390de82d94894" - integrity sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA== + resolved "https://registry.npmjs.org/error/-/error-7.2.1.tgz" dependencies: string-template "~0.2.1" -es-abstract@^1.17.0-next.1, es-abstract@^1.17.2: - version "1.17.5" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" - integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== +es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2: + version "1.18.0" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz" dependencies: + call-bind "^1.0.2" es-to-primitive "^1.2.1" function-bind "^1.1.1" + get-intrinsic "^1.1.1" has "^1.0.3" - has-symbols "^1.0.1" - is-callable "^1.1.5" - is-regex "^1.0.5" - object-inspect "^1.7.0" + has-symbols "^1.0.2" + is-callable "^1.2.3" + is-negative-zero "^2.0.1" + is-regex "^1.1.2" + is-string "^1.0.5" + object-inspect "^1.9.0" object-keys "^1.1.1" - object.assign "^4.1.0" - string.prototype.trimleft "^2.1.1" - string.prototype.trimright "^2.1.1" + object.assign "^4.1.2" + string.prototype.trimend "^1.0.4" + string.prototype.trimstart "^1.0.4" + unbox-primitive "^1.0.0" es-to-primitive@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" dependencies: is-callable "^1.1.4" is-date-object "^1.0.1" is-symbol "^1.0.2" -escalade@^3.1.1: +escalade@^3.0.2, escalade@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" escape-html@~1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= - -escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" -escape-string-regexp@^2.0.0: +escape-string-regexp@2.0.0, escape-string-regexp@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" esprima@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" esutils@^2.0.2: version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" etag@~1.8.1: version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= - -eventsource@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-1.0.7.tgz#8fbc72c93fcd34088090bc0a4e64f4b5cee6d8d0" - integrity sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ== - dependencies: - original "^1.0.0" + resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" exec-buffer@^3.0.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/exec-buffer/-/exec-buffer-3.2.0.tgz#b1686dbd904c7cf982e652c1f5a79b1e5573082b" - integrity sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA== + resolved "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz" dependencies: execa "^0.7.0" p-finally "^1.0.0" @@ -2585,8 +2327,7 @@ exec-buffer@^3.0.0: execa@^0.7.0: version "0.7.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" - integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= + resolved "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz" dependencies: cross-spawn "^5.0.1" get-stream "^3.0.0" @@ -2598,8 +2339,7 @@ execa@^0.7.0: execa@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" dependencies: cross-spawn "^6.0.0" get-stream "^4.0.0" @@ -2611,15 +2351,13 @@ execa@^1.0.0: executable@^4.1.0: version "4.1.1" - resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" - integrity sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg== + resolved "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz" dependencies: pify "^2.2.0" expand-brackets@^2.1.4: version "2.1.4" - resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" - integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= + resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz" dependencies: debug "^2.3.3" define-property "^0.2.5" @@ -2631,15 +2369,13 @@ expand-brackets@^2.1.4: expand-range@^1.8.1: version "1.8.2" - resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" - integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= + resolved "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz" dependencies: fill-range "^2.1.0" express@^4.17.1: version "4.17.1" - resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" - integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== + resolved "https://registry.npmjs.org/express/-/express-4.17.1.tgz" dependencies: accepts "~1.3.7" array-flatten "1.1.1" @@ -2674,52 +2410,37 @@ express@^4.17.1: ext-list@^2.0.0: version "2.2.2" - resolved "https://registry.yarnpkg.com/ext-list/-/ext-list-2.2.2.tgz#0b98e64ed82f5acf0f2931babf69212ef52ddd37" - integrity sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA== + resolved "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz" dependencies: mime-db "^1.28.0" ext-name@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/ext-name/-/ext-name-5.0.0.tgz#70781981d183ee15d13993c8822045c506c8f0a6" - integrity sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ== + resolved "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz" dependencies: ext-list "^2.0.0" sort-keys-length "^1.0.0" extend-shallow@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= + resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz" dependencies: is-extendable "^0.1.0" extend-shallow@^3.0.0, extend-shallow@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" - integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= + resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" dependencies: assign-symbols "^1.0.0" is-extendable "^1.0.1" extend@~3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -external-editor@^3.0.3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" - integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== - dependencies: - chardet "^0.7.0" - iconv-lite "^0.4.24" - tmp "^0.0.33" + resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" extglob@^2.0.4: version "2.0.4" - resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" - integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz" dependencies: array-unique "^0.3.2" define-property "^1.0.0" @@ -2733,22 +2454,18 @@ extglob@^2.0.4: extsprintf@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" - integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= extsprintf@^1.2.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" - integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= + version "1.4.1" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" fast-deep-equal@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" - integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== + version "3.1.3" + resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" fast-glob@^2.0.2: version "2.2.7" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" - integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw== + resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz" dependencies: "@mrmlnc/readdir-enhanced" "^2.2.1" "@nodelib/fs.stat" "^1.1.2" @@ -2757,112 +2474,95 @@ fast-glob@^2.0.2: merge2 "^1.2.3" micromatch "^3.1.10" +fast-glob@^3.1.1: + version "3.2.5" + resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz" + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.0" + merge2 "^1.3.0" + micromatch "^4.0.2" + picomatch "^2.2.1" + fast-json-stable-stringify@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" -faye-websocket@~0.10.0: - version "0.10.0" - resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" - integrity sha1-TkkvjQTftviQA1B/btvy1QHnxvQ= +fastq@^1.6.0: + version "1.11.0" + resolved "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz" dependencies: - websocket-driver ">=0.5.1" + reusify "^1.0.4" -faye-websocket@~0.11.1: - version "0.11.3" - resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.3.tgz#5c0e9a8968e8912c286639fde977a8b209f2508e" - integrity sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA== +faye-websocket@~0.10.0: + version "0.10.0" + resolved "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz" dependencies: websocket-driver ">=0.5.1" fd-slicer@~1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" - integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4= + resolved "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz" dependencies: pend "~1.2.0" -feed@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/feed/-/feed-4.1.0.tgz#58f1c9cc2b44715d14ac59234e1bf20c5d757aa7" - integrity sha512-dAXWXM8QMxZ1DRnAxDmy1MaWZFlh1Ku7TU3onbXgHrVJynsxkNGPUed1AxszVW8AXo43xExronVkIqK+ACsoBA== +feed@^4.2.1: + version "4.2.2" + resolved "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz" dependencies: xml-js "^1.6.11" figures@^1.3.5: version "1.7.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" - integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= + resolved "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz" dependencies: escape-string-regexp "^1.0.5" object-assign "^4.1.0" -figures@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" - integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= - dependencies: - escape-string-regexp "^1.0.5" - file-type@5.2.0, file-type@^5.2.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-5.2.0.tgz#2ddbea7c73ffe36368dfae49dc338c058c2b8ad6" - integrity sha1-LdvqfHP/42No365J3DOMBYwritY= + resolved "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz" file-type@^10.4.0, file-type@^10.7.0: version "10.11.0" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-10.11.0.tgz#2961d09e4675b9fb9a3ee6b69e9cd23f43fd1890" - integrity sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw== + resolved "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz" file-type@^3.8.0: version "3.9.0" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9" - integrity sha1-JXoHg4TR24CHvESdEH1SpSZyuek= + resolved "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz" file-type@^4.2.0: version "4.4.0" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-4.4.0.tgz#1b600e5fca1fbdc6e80c0a70c71c8dba5f7906c5" - integrity sha1-G2AOX8ofvcboDApwxxyNul95BsU= + resolved "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz" file-type@^6.1.0: version "6.2.0" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-6.2.0.tgz#e50cd75d356ffed4e306dc4f5bcf52a79903a919" - integrity sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg== + resolved "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz" file-type@^8.1.0: version "8.1.0" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-8.1.0.tgz#244f3b7ef641bbe0cca196c7276e4b332399f68c" - integrity sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ== - -file-uri-to-path@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + resolved "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz" filename-reserved-regex@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz#abf73dfab735d045440abfea2d91f389ebbfa229" - integrity sha1-q/c9+rc10EVECr/qLZHzieu/oik= + resolved "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz" filenamify@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/filenamify/-/filenamify-2.1.0.tgz#88faf495fb1b47abfd612300002a16228c677ee9" - integrity sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA== + resolved "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz" dependencies: filename-reserved-regex "^2.0.0" strip-outer "^1.0.0" trim-repeated "^1.0.0" -filesize@3.6.1: - version "3.6.1" - resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317" - integrity sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg== +filesize@6.1.0: + version "6.1.0" + resolved "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz" fill-range@^2.1.0: version "2.2.4" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" - integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q== + resolved "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz" dependencies: is-number "^2.1.0" isobject "^2.0.0" @@ -2872,18 +2572,22 @@ fill-range@^2.1.0: fill-range@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" - integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= + resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz" dependencies: extend-shallow "^2.0.1" is-number "^3.0.0" repeat-string "^1.6.1" to-regex-range "^2.1.0" +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" + dependencies: + to-regex-range "^5.0.1" + finalhandler@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" - integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== + resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz" dependencies: debug "2.6.9" encodeurl "~1.0.2" @@ -2895,60 +2599,52 @@ finalhandler@~1.1.2: find-cache-dir@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" - integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz" dependencies: commondir "^1.0.1" make-dir "^2.0.0" pkg-dir "^3.0.0" -find-up@3.0.0, find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== +find-up@4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" dependencies: - locate-path "^3.0.0" + locate-path "^5.0.0" + path-exists "^4.0.0" find-up@^1.0.0: version "1.1.2" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" - integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= + resolved "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz" dependencies: path-exists "^2.0.0" pinkie-promise "^2.0.0" -find-up@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" - integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" dependencies: - locate-path "^2.0.0" + locate-path "^3.0.0" find-versions@^3.0.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e" - integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww== + resolved "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz" dependencies: semver-regex "^2.0.0" for-in@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= + resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz" forever-agent@~0.6.1: version "0.6.1" - resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= + resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" -fork-ts-checker-webpack-plugin@1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-1.5.0.tgz#ce1d77190b44d81a761b10b6284a373795e41f0c" - integrity sha512-zEhg7Hz+KhZlBhILYpXy+Beu96gwvkROWJiTXOCyOOMMrdBIRPvsBpBqgTI4jfJGrJXcqGwJR8zsBGDmzY0jsA== +fork-ts-checker-webpack-plugin@4.1.6: + version "4.1.6" + resolved "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz" dependencies: - babel-code-frame "^6.22.0" + "@babel/code-frame" "^7.5.5" chalk "^2.4.1" - chokidar "^2.0.4" micromatch "^3.1.10" minimatch "^3.0.4" semver "^5.6.0" @@ -2957,8 +2653,7 @@ fork-ts-checker-webpack-plugin@1.5.0: form-data@~2.3.2: version "2.3.3" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" - integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz" dependencies: asynckit "^0.4.0" combined-stream "^1.0.6" @@ -2966,151 +2661,149 @@ form-data@~2.3.2: forwarded@~0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" - integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= + resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz" fragment-cache@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" - integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= + resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz" dependencies: map-cache "^0.2.2" fresh@0.5.2: version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= + resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" from2@^2.1.1: version "2.3.0" - resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" - integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= + resolved "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz" dependencies: inherits "^2.0.1" readable-stream "^2.0.0" fs-constants@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + resolved "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz" -fs-extra@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== +fs-extra@^9.0.1: + version "9.1.0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" dependencies: + at-least-node "^1.0.0" graceful-fs "^4.2.0" - jsonfile "^4.0.0" - universalify "^0.1.0" + jsonfile "^6.0.1" + universalify "^2.0.0" fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - -fsevents@^1.2.7: - version "1.2.12" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.12.tgz#db7e0d8ec3b0b45724fd4d83d43554a8f1f0de5c" - integrity sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q== - dependencies: - bindings "^1.5.0" - nan "^2.12.1" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" function-bind@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" + +function.prototype.name@^1.1.2, function.prototype.name@^1.1.3: + version "1.1.4" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.4.tgz" + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.18.0-next.2" + functions-have-names "^1.2.2" + +functions-have-names@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.2.tgz" gaze@^1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" - integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== + resolved "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz" dependencies: globule "^1.0.0" -gensync@^1.0.0-beta.1: - version "1.0.0-beta.1" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" - integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.1" get-proxy@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/get-proxy/-/get-proxy-2.1.0.tgz#349f2b4d91d44c4d4d4e9cba2ad90143fac5ef93" - integrity sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw== + resolved "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz" dependencies: npm-conf "^1.1.0" get-stdin@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" - integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= + resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz" get-stream@3.0.0, get-stream@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" - integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + resolved "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz" get-stream@^2.2.0: version "2.3.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" - integrity sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4= + resolved "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz" dependencies: object-assign "^4.0.1" pinkie-promise "^2.0.0" get-stream@^4.0.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" dependencies: pump "^3.0.0" get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" - resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" - integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= + resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz" getpass@^0.1.1: version "0.1.7" - resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= + resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz" dependencies: assert-plus "^1.0.0" gifsicle@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/gifsicle/-/gifsicle-4.0.1.tgz#30e1e61e3ee4884ef702641b2e98a15c2127b2e2" - integrity sha512-A/kiCLfDdV+ERV/UB+2O41mifd+RxH8jlRG8DMxZO84Bma/Fw0htqZ+hY2iaalLRNyUu7tYZQslqUBJxBggxbg== + resolved "https://registry.npmjs.org/gifsicle/-/gifsicle-4.0.1.tgz" dependencies: bin-build "^3.0.0" bin-wrapper "^4.0.0" execa "^1.0.0" logalot "^2.0.0" -github-slugger@^1.2.1: +github-slugger@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.3.0.tgz#9bd0a95c5efdfc46005e82a906ef8e2a059124c9" - integrity sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q== + resolved "https://registry.npmjs.org/github-slugger/-/github-slugger-1.3.0.tgz" dependencies: emoji-regex ">=6.0.0 <=6.1.1" glob-parent@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" - integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz" dependencies: is-glob "^3.1.0" path-dirname "^1.0.0" +glob-parent@^5.1.0: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + dependencies: + is-glob "^4.0.1" + glob-to-regexp@^0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" - integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= + resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz" glob@^7.0.0, glob@^7.0.5, glob@^7.1.2, glob@^7.1.3, glob@^7.1.6, glob@~7.1.1: version "7.1.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" - integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz" dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" @@ -3121,15 +2814,13 @@ glob@^7.0.0, glob@^7.0.5, glob@^7.1.2, glob@^7.1.3, glob@^7.1.6, glob@~7.1.1: global-modules@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" - integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + resolved "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz" dependencies: global-prefix "^3.0.0" global-prefix@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" - integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== + resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz" dependencies: ini "^1.3.5" kind-of "^6.0.2" @@ -3137,13 +2828,22 @@ global-prefix@^3.0.0: globals@^11.1.0: version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" + +globby@11.0.1: + version "11.0.1" + resolved "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz" + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.1.1" + ignore "^5.1.4" + merge2 "^1.3.0" + slash "^3.0.0" -globby@8.0.2, globby@^8.0.1: +globby@^8.0.1: version "8.0.2" - resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d" - integrity sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w== + resolved "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz" dependencies: array-union "^1.0.1" dir-glob "2.0.0" @@ -3154,25 +2854,22 @@ globby@8.0.2, globby@^8.0.1: slash "^1.0.0" globule@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.1.tgz#90a25338f22b7fbeb527cee63c629aea754d33b9" - integrity sha512-OVyWOHgw29yosRHCHo7NncwR1hW5ew0W/UrvtwvjefVJeQ26q4/8r8FmPsSF1hJ93IgWkyv16pCTz6WblMzm/g== + version "1.3.2" + resolved "https://registry.npmjs.org/globule/-/globule-1.3.2.tgz" dependencies: glob "~7.1.1" - lodash "~4.17.12" + lodash "~4.17.10" minimatch "~3.0.2" good-listener@^1.2.2: version "1.2.2" - resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" - integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA= + resolved "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz" dependencies: delegate "^3.1.2" got@^7.0.0: version "7.1.0" - resolved "https://registry.yarnpkg.com/got/-/got-7.1.0.tgz#05450fd84094e6bbea56f451a43a9c289166385a" - integrity sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw== + resolved "https://registry.npmjs.org/got/-/got-7.1.0.tgz" dependencies: decompress-response "^3.2.0" duplexer3 "^0.1.4" @@ -3191,8 +2888,7 @@ got@^7.0.0: got@^8.3.1: version "8.3.2" - resolved "https://registry.yarnpkg.com/got/-/got-8.3.2.tgz#1d23f64390e97f776cac52e5b936e5f514d2e937" - integrity sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw== + resolved "https://registry.npmjs.org/got/-/got-8.3.2.tgz" dependencies: "@sindresorhus/is" "^0.7.0" cacheable-request "^2.1.1" @@ -3212,15 +2908,13 @@ got@^8.3.1: url-parse-lax "^3.0.0" url-to-options "^1.0.1" -graceful-fs@^4.1.10, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: - version "4.2.4" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" - integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== +graceful-fs@^4.1.10, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: + version "4.2.6" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz" gray-matter@^2.1.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/gray-matter/-/gray-matter-2.1.1.tgz#3042d9adec2a1ded6a7707a9ed2380f8a17a430e" - integrity sha1-MELZrewqHe1qdwep7SOA+KF6Qw4= + resolved "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz" dependencies: ansi-red "^0.1.1" coffee-script "^1.12.4" @@ -3230,8 +2924,7 @@ gray-matter@^2.1.0: gulp-header@^1.7.1: version "1.8.12" - resolved "https://registry.yarnpkg.com/gulp-header/-/gulp-header-1.8.12.tgz#ad306be0066599127281c4f8786660e705080a84" - integrity sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ== + resolved "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz" dependencies: concat-with-sourcemaps "*" lodash.template "^4.4.0" @@ -3239,63 +2932,57 @@ gulp-header@^1.7.1: gzip-size@5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" - integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA== + resolved "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz" dependencies: duplexer "^0.1.1" pify "^4.0.1" har-schema@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" - integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= + resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz" har-validator@~5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" - integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== + version "5.1.5" + resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz" dependencies: - ajv "^6.5.5" + ajv "^6.12.3" har-schema "^2.0.0" has-ansi@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz" dependencies: ansi-regex "^2.0.0" +has-bigints@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz" + has-flag@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" has-flag@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" has-symbol-support-x@^1.4.1: version "1.4.2" - resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455" - integrity sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw== + resolved "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz" -has-symbols@^1.0.0, has-symbols@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" - integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== +has-symbols@^1.0.0, has-symbols@^1.0.1, has-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz" has-to-string-tag-x@^1.2.0: version "1.4.1" - resolved "https://registry.yarnpkg.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d" - integrity sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw== + resolved "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz" dependencies: has-symbol-support-x "^1.4.1" has-value@^0.3.1: version "0.3.1" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" - integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= + resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz" dependencies: get-value "^2.0.3" has-values "^0.1.4" @@ -3303,8 +2990,7 @@ has-value@^0.3.1: has-value@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" - integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= + resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz" dependencies: get-value "^2.0.6" has-values "^1.0.0" @@ -3312,58 +2998,55 @@ has-value@^1.0.0: has-values@^0.1.4: version "0.1.4" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" - integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= + resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz" has-values@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" - integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= + resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz" dependencies: is-number "^3.0.0" kind-of "^4.0.0" has@^1.0.0, has@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" dependencies: function-bind "^1.1.1" hex-color-regex@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" - integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== + resolved "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz" highlight.js@^9.16.2: version "9.18.5" - resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.5.tgz#d18a359867f378c138d6819edfc2a8acd5f29825" - integrity sha512-a5bFyofd/BHCX52/8i8uJkjr9DYwXIPnM/plwI6W7ezItLGqzt7X2G2nXuYSfsIJdkwwj/g9DG1LkcGJI/dDoA== + resolved "https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.5.tgz" hosted-git-info@^2.1.4: version "2.8.8" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" - integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz" hsl-regex@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" - integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4= + resolved "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz" hsla-regex@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" - integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= + resolved "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz" html-comment-regex@^1.1.0, html-comment-regex@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" - integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== + resolved "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz" + +html-element-map@^1.2.0: + version "1.3.0" + resolved "https://registry.npmjs.org/html-element-map/-/html-element-map-1.3.0.tgz" + dependencies: + array-filter "^1.0.0" + call-bind "^1.0.2" htmlparser2@^3.9.1: version "3.10.1" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" - integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== + resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz" dependencies: domelementtype "^1.3.1" domhandler "^2.3.0" @@ -3372,15 +3055,22 @@ htmlparser2@^3.9.1: inherits "^2.0.1" readable-stream "^3.1.1" +htmlparser2@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.0.1.tgz" + dependencies: + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.4.4" + entities "^2.0.0" + http-cache-semantics@3.8.1: version "3.8.1" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" - integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w== + resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz" -http-errors@1.7.2: +http-errors@1.7.2, http-errors@~1.7.2: version "1.7.2" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" - integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== + resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz" dependencies: depd "~1.1.2" inherits "2.0.3" @@ -3388,52 +3078,39 @@ http-errors@1.7.2: statuses ">= 1.5.0 < 2" toidentifier "1.0.0" -http-errors@~1.7.2: - version "1.7.3" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" - integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== - dependencies: - depd "~1.1.2" - inherits "2.0.4" - setprototypeof "1.1.1" - statuses ">= 1.5.0 < 2" - toidentifier "1.0.0" - -"http-parser-js@>=0.4.0 <0.4.11": - version "0.4.10" - resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.10.tgz#92c9c1374c35085f75db359ec56cc257cbb93fa4" - integrity sha1-ksnBN0w1CF912zWexWzCV8u5P6Q= +http-parser-js@>=0.5.1: + version "0.5.3" + resolved "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz" http-signature@~1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" - integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= + resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz" dependencies: assert-plus "^1.0.0" jsprim "^1.2.2" sshpk "^1.7.0" -iconv-lite@0.4.24, iconv-lite@^0.4.24: +iconv-lite@0.4.24: version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" dependencies: safer-buffer ">= 2.1.2 < 3" -ieee754@^1.1.4: - version "1.1.13" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" - integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" ignore@^3.3.5: version "3.3.10" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" - integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== + resolved "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz" + +ignore@^5.1.4: + version "5.1.8" + resolved "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz" imagemin-gifsicle@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/imagemin-gifsicle/-/imagemin-gifsicle-6.0.1.tgz#6abad4e95566d52e5a104aba1c24b4f3b48581b3" - integrity sha512-kuu47c6iKDQ6R9J10xCwL0lgs0+sMz3LRHqRcJ2CRBWdcNmo3T5hUaM8hSZfksptZXJLGKk8heSAvwtSdB1Fng== + resolved "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-6.0.1.tgz" dependencies: exec-buffer "^3.0.0" gifsicle "^4.0.0" @@ -3441,8 +3118,7 @@ imagemin-gifsicle@^6.0.1: imagemin-jpegtran@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/imagemin-jpegtran/-/imagemin-jpegtran-6.0.0.tgz#c8d3bcfb6ec9c561c20a987142854be70d90b04f" - integrity sha512-Ih+NgThzqYfEWv9t58EItncaaXIHR0u9RuhKa8CtVBlMBvY0dCIxgQJQCfwImA4AV1PMfmUKlkyIHJjb7V4z1g== + resolved "https://registry.npmjs.org/imagemin-jpegtran/-/imagemin-jpegtran-6.0.0.tgz" dependencies: exec-buffer "^3.0.0" is-jpg "^2.0.0" @@ -3450,8 +3126,7 @@ imagemin-jpegtran@^6.0.0: imagemin-optipng@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/imagemin-optipng/-/imagemin-optipng-6.0.0.tgz#a6bfc7b542fc08fc687e83dfb131249179a51a68" - integrity sha512-FoD2sMXvmoNm/zKPOWdhKpWdFdF9qiJmKC17MxZJPH42VMAp17/QENI/lIuP7LCUnLVAloO3AUoTSNzfhpyd8A== + resolved "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-6.0.0.tgz" dependencies: exec-buffer "^3.0.0" is-png "^1.0.0" @@ -3459,16 +3134,14 @@ imagemin-optipng@^6.0.0: imagemin-svgo@^7.0.0: version "7.1.0" - resolved "https://registry.yarnpkg.com/imagemin-svgo/-/imagemin-svgo-7.1.0.tgz#528a42fd3d55eff5d4af8fd1113f25fb61ad6d9a" - integrity sha512-0JlIZNWP0Luasn1HT82uB9nU9aa+vUj6kpT+MjPW11LbprXC+iC4HDwn1r4Q2/91qj4iy9tRZNsFySMlEpLdpg== + resolved "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-7.1.0.tgz" dependencies: is-svg "^4.2.1" svgo "^1.3.2" imagemin@^6.0.0: version "6.1.0" - resolved "https://registry.yarnpkg.com/imagemin/-/imagemin-6.1.0.tgz#62508b465728fea36c03cdc07d915fe2d8cf9e13" - integrity sha512-8ryJBL1CN5uSHpiBMX0rJw79C9F9aJqMnjGnrd/1CafegpNuA81RBAAru/jQQEOWlOJJlpRnlcVFF6wq+Ist0A== + resolved "https://registry.npmjs.org/imagemin/-/imagemin-6.1.0.tgz" dependencies: file-type "^10.7.0" globby "^8.0.1" @@ -3477,151 +3150,114 @@ imagemin@^6.0.0: pify "^4.0.1" replace-ext "^1.0.0" -immer@1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/immer/-/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d" - integrity sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg== +immer@8.0.1: + version "8.0.1" + resolved "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz" import-fresh@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" - integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz" dependencies: caller-path "^2.0.0" resolve-from "^3.0.0" import-lazy@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-3.1.0.tgz#891279202c8a2280fdbd6674dbd8da1a1dfc67cc" - integrity sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ== + resolved "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz" indent-string@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" - integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= + resolved "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz" dependencies: repeating "^2.0.0" indexes-of@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" - integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= + resolved "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz" inflight@^1.0.4: version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" dependencies: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" inherits@2.0.3: version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" ini@^1.3.4, ini@^1.3.5: - version "1.3.5" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" - integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== - -inquirer@6.5.0: - version "6.5.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42" - integrity sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA== - dependencies: - ansi-escapes "^3.2.0" - chalk "^2.4.2" - cli-cursor "^2.1.0" - cli-width "^2.0.0" - external-editor "^3.0.3" - figures "^2.0.0" - lodash "^4.17.12" - mute-stream "0.0.7" - run-async "^2.2.0" - rxjs "^6.4.0" - string-width "^2.1.0" - strip-ansi "^5.1.0" - through "^2.3.6" + version "1.3.8" + resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" interpret@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" - integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== + version "1.4.0" + resolved "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz" into-stream@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6" - integrity sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY= + resolved "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz" dependencies: from2 "^2.1.1" p-is-promise "^1.1.0" -ip-regex@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" - integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= +ip-regex@^4.1.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz" ipaddr.js@1.9.1: version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" is-absolute-url@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" - integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= + resolved "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz" is-accessor-descriptor@^0.1.6: version "0.1.6" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" - integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= + resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz" dependencies: kind-of "^3.0.2" is-accessor-descriptor@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== + resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz" dependencies: kind-of "^6.0.0" is-arrayish@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" is-arrayish@^0.3.1: version "0.3.2" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" - integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz" -is-binary-path@^1.0.0: +is-bigint@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" - integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz" + +is-boolean-object@^1.0.1, is-boolean-object@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz" dependencies: - binary-extensions "^1.0.0" + call-bind "^1.0.0" is-buffer@^1.1.5: version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz" -is-callable@^1.1.4, is-callable@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" - integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== +is-callable@^1.1.4, is-callable@^1.1.5, is-callable@^1.2.3: + version "1.2.3" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz" is-color-stop@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" - integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= + resolved "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz" dependencies: css-color-names "^0.0.4" hex-color-regex "^1.1.0" @@ -3630,29 +3266,31 @@ is-color-stop@^1.0.0: rgb-regex "^1.0.1" rgba-regex "^1.0.0" +is-core-module@^2.2.0: + version "2.2.0" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz" + dependencies: + has "^1.0.3" + is-data-descriptor@^0.1.4: version "0.1.4" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" - integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= + resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz" dependencies: kind-of "^3.0.2" is-data-descriptor@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== + resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz" dependencies: kind-of "^6.0.0" is-date-object@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" - integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz" is-descriptor@^0.1.0: version "0.1.6" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz" dependencies: is-accessor-descriptor "^0.1.6" is-data-descriptor "^0.1.4" @@ -3660,8 +3298,7 @@ is-descriptor@^0.1.0: is-descriptor@^1.0.0, is-descriptor@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz" dependencies: is-accessor-descriptor "^1.0.0" is-data-descriptor "^1.0.0" @@ -3669,239 +3306,217 @@ is-descriptor@^1.0.0, is-descriptor@^1.0.2: is-directory@^0.3.1: version "0.3.1" - resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" - integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= + resolved "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz" + +is-docker@^2.0.0: + version "2.1.1" + resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz" is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= + resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" is-extendable@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" - integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz" dependencies: is-plain-object "^2.0.4" is-extglob@^2.1.0, is-extglob@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" is-finite@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" - integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + resolved "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz" is-gif@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/is-gif/-/is-gif-3.0.0.tgz#c4be60b26a301d695bb833b20d9b5d66c6cf83b1" - integrity sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw== + resolved "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz" dependencies: file-type "^10.4.0" is-glob@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" - integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= + resolved "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz" dependencies: is-extglob "^2.1.0" -is-glob@^4.0.0: +is-glob@^4.0.0, is-glob@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" - integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz" dependencies: is-extglob "^2.1.1" is-jpg@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/is-jpg/-/is-jpg-2.0.0.tgz#2e1997fa6e9166eaac0242daae443403e4ef1d97" - integrity sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc= + resolved "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz" is-natural-number@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/is-natural-number/-/is-natural-number-4.0.1.tgz#ab9d76e1db4ced51e35de0c72ebecf09f734cde8" - integrity sha1-q5124dtM7VHjXeDHLr7PCfc0zeg= + resolved "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz" + +is-negative-zero@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz" + +is-number-object@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz" is-number@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" - integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= + resolved "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz" dependencies: kind-of "^3.0.2" is-number@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" - integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= + resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz" dependencies: kind-of "^3.0.2" is-number@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" - integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== + resolved "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" is-obj@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" - integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + resolved "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" is-object@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" - integrity sha1-iVJojF7C/9awPsyF52ngKQMINHA= + version "1.0.2" + resolved "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz" is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz" is-plain-object@^2.0.3, is-plain-object@^2.0.4: version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" dependencies: isobject "^3.0.1" is-png@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-png/-/is-png-1.1.0.tgz#d574b12bf275c0350455570b0e5b57ab062077ce" - integrity sha1-1XSxK/J1wDUEVVcLDltXqwYgd84= - -is-promise@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" - integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= + resolved "https://registry.npmjs.org/is-png/-/is-png-1.1.0.tgz" -is-regex@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" - integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== +is-regex@^1.0.5, is-regex@^1.1.0, is-regex@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz" dependencies: - has "^1.0.3" + call-bind "^1.0.2" + has-symbols "^1.0.1" is-resolvable@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" - integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== + resolved "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz" is-retry-allowed@^1.0.0, is-retry-allowed@^1.1.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" - integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== + resolved "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz" is-root@2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" - integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== + resolved "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz" is-stream@^1.0.0, is-stream@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" + +is-string@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz" + +is-subset@^0.1.1: + version "0.1.1" + resolved "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz" is-svg@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" - integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== + resolved "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz" dependencies: html-comment-regex "^1.1.0" is-svg@^4.2.1: version "4.2.1" - resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-4.2.1.tgz#095b496e345fec9211c2a7d5d021003e040d6f81" - integrity sha512-PHx3ANecKsKNl5y5+Jvt53Y4J7MfMpbNZkv384QNiswMKAWIbvcqbPz+sYbFKJI8Xv3be01GSFniPmoaP+Ai5A== + resolved "https://registry.npmjs.org/is-svg/-/is-svg-4.2.1.tgz" dependencies: html-comment-regex "^1.1.2" -is-symbol@^1.0.2: +is-symbol@^1.0.2, is-symbol@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" - integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz" dependencies: has-symbols "^1.0.1" is-typedarray@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" -is-url@^1.2.2: +is-url@^1.2.4: version "1.2.4" - resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52" - integrity sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww== + resolved "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz" is-utf8@^0.2.0: version "0.2.1" - resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= + resolved "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz" is-windows@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz" -is-wsl@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" - integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= +is-wsl@^2.1.1: + version "2.2.0" + resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" + dependencies: + is-docker "^2.0.0" -is2@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is2/-/is2-2.0.1.tgz#8ac355644840921ce435d94f05d3a94634d3481a" - integrity sha512-+WaJvnaA7aJySz2q/8sLjMb2Mw14KTplHmSwcSpZ/fWJPkUmqw3YTzSWbPJ7OAwRvdYTWF2Wg+yYJ1AdP5Z8CA== +is2@^2.0.6: + version "2.0.6" + resolved "https://registry.npmjs.org/is2/-/is2-2.0.6.tgz" dependencies: deep-is "^0.1.3" - ip-regex "^2.1.0" - is-url "^1.2.2" + ip-regex "^4.1.0" + is-url "^1.2.4" isarray@1.0.0, isarray@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" isexe@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" isobject@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= + resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz" dependencies: isarray "1.0.0" isobject@^3.0.0, isobject@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= + resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" isstream@~0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= + resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" isurl@^1.0.0-alpha5: version "1.0.0" - resolved "https://registry.yarnpkg.com/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67" - integrity sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w== + resolved "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz" dependencies: has-to-string-tag-x "^1.2.0" is-object "^1.0.1" jpegtran-bin@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/jpegtran-bin/-/jpegtran-bin-4.0.0.tgz#d00aed809fba7aa6f30817e59eee4ddf198f8f10" - integrity sha512-2cRl1ism+wJUoYAYFt6O/rLBfpXNWG2dUWbgcEkTt5WGMnqI46eEro8T4C5zGROxKRqyKpCBSdHPvt5UYCtxaQ== + resolved "https://registry.npmjs.org/jpegtran-bin/-/jpegtran-bin-4.0.0.tgz" dependencies: bin-build "^3.0.0" bin-wrapper "^4.0.0" @@ -3909,140 +3524,107 @@ jpegtran-bin@^4.0.0: "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-tokens@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" - integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" js-yaml@^3.13.1, js-yaml@^3.8.1: - version "3.13.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" - integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== + version "3.14.1" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" dependencies: argparse "^1.0.7" esprima "^4.0.0" jsbn@~0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= + resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz" jsesc@^2.5.1: version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" jsesc@~0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= + resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" json-buffer@3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" - integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= + resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz" json-parse-better-errors@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz" json-schema-traverse@^0.4.1: version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" -json-schema@0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" - integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= +json-schema@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" json-stringify-safe@~5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= - -json3@^3.3.2: - version "3.3.3" - resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" - integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA== - -json5@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== - dependencies: - minimist "^1.2.0" - -json5@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.2.tgz#43ef1f0af9835dd624751a6b7fa48874fb2d608e" - integrity sha512-MoUOQ4WdiN3yxhm7NEVJSJrieAo5hNSLQ5sj05OTRHPL9HOBy8u4Bu88jsC1jvqAdN+E1bJmsUcZH+1HQxliqQ== - dependencies: - minimist "^1.2.5" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= +json5@^2.1.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" + dependencies: + universalify "^2.0.0" optionalDependencies: graceful-fs "^4.1.6" jsprim@^1.2.2: - version "1.4.1" - resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" - integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= + version "1.4.2" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.2.tgz#712c65533a15c878ba59e9ed5f0e26d5b77c5feb" dependencies: assert-plus "1.0.0" extsprintf "1.3.0" - json-schema "0.2.3" + json-schema "0.4.0" verror "1.10.0" keyv@3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373" - integrity sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA== + resolved "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz" dependencies: json-buffer "3.0.0" kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= + resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" dependencies: is-buffer "^1.1.5" kind-of@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" - integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= + resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz" dependencies: is-buffer "^1.1.5" kind-of@^5.0.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== + resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz" kind-of@^6.0.0, kind-of@^6.0.2: version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" lazy-cache@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264" - integrity sha1-uRkKT5EzVGlIQIWfio9whNiCImQ= + resolved "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz" dependencies: set-getter "^0.1.0" list-item@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/list-item/-/list-item-1.1.1.tgz#0c65d00e287cb663ccb3cb3849a77e89ec268a56" - integrity sha1-DGXQDih8tmPMs8s4Sad+iewmilY= + resolved "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz" dependencies: expand-range "^1.8.1" extend-shallow "^2.0.1" @@ -4051,13 +3633,11 @@ list-item@^1.1.1: livereload-js@^2.3.0: version "2.4.0" - resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-2.4.0.tgz#447c31cf1ea9ab52fc20db615c5ddf678f78009c" - integrity sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw== + resolved "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz" load-json-file@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" - integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= + resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz" dependencies: graceful-fs "^4.1.2" parse-json "^2.2.0" @@ -4065,183 +3645,167 @@ load-json-file@^1.0.0: pinkie-promise "^2.0.0" strip-bom "^2.0.0" -loader-utils@1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" - integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== - dependencies: - big.js "^5.2.2" - emojis-list "^2.0.0" - json5 "^1.0.1" - -locate-path@^2.0.0: +loader-utils@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" - integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= + resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz" dependencies: - p-locate "^2.0.0" - path-exists "^3.0.0" + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" locate-path@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" dependencies: p-locate "^3.0.0" path-exists "^3.0.0" +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" + dependencies: + p-locate "^4.1.0" + lodash._reinterpolate@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" - integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= + resolved "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz" lodash.assignin@^4.0.9: version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" - integrity sha1-uo31+4QesKPoBEIysOJjqNxqKKI= + resolved "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz" lodash.bind@^4.1.4: version "4.2.1" - resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" - integrity sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU= + resolved "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz" lodash.chunk@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.chunk/-/lodash.chunk-4.2.0.tgz#66e5ce1f76ed27b4303d8c6512e8d1216e8106bc" - integrity sha1-ZuXOH3btJ7QwPYxlEujRIW6BBrw= + resolved "https://registry.npmjs.org/lodash.chunk/-/lodash.chunk-4.2.0.tgz" + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" lodash.defaults@^4.0.1: version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" - integrity sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw= + resolved "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz" + +lodash.escape@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz" lodash.filter@^4.4.0: version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" - integrity sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4= + resolved "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz" lodash.flatten@^4.2.0: version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" - integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8= + resolved "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz" + +lodash.flattendeep@^4.4.0: + version "4.4.0" + resolved "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz" lodash.foreach@^4.3.0: version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" - integrity sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM= + resolved "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz" + +lodash.isequal@^4.5.0: + version "4.5.0" + resolved "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz" lodash.map@^4.4.0: version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" - integrity sha1-dx7Hg540c9nEzeKLGTlMNWL09tM= + resolved "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz" lodash.memoize@^4.1.2: version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= + resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz" lodash.merge@^4.4.0: version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" lodash.padstart@^4.6.1: version "4.6.1" - resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" - integrity sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs= + resolved "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz" lodash.pick@^4.2.1: version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" - integrity sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM= + resolved "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz" lodash.reduce@^4.4.0: version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" - integrity sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs= + resolved "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz" lodash.reject@^4.4.0: version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" - integrity sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU= + resolved "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz" lodash.some@^4.4.0: version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" - integrity sha1-G7nzFO9ri63tE7VJFpsqlF62jk0= + resolved "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz" lodash.sortby@^4.7.0: version "4.7.0" - resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" - integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= + resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz" lodash.template@^4.4.0: version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" - integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== + resolved "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz" dependencies: lodash._reinterpolate "^3.0.0" lodash.templatesettings "^4.0.0" lodash.templatesettings@^4.0.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" - integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== + resolved "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz" dependencies: lodash._reinterpolate "^3.0.0" lodash.uniq@^4.5.0: version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" - integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= + resolved "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz" -lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@~4.17.12: - version "4.17.20" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" - integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== +lodash@^4.17.14, lodash@^4.17.19, lodash@^4.17.20, lodash@~4.17.10: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" logalot@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/logalot/-/logalot-2.1.0.tgz#5f8e8c90d304edf12530951a5554abb8c5e3f552" - integrity sha1-X46MkNME7fElMJUaVVSruMXj9VI= + resolved "https://registry.npmjs.org/logalot/-/logalot-2.1.0.tgz" dependencies: figures "^1.3.5" squeak "^1.0.0" longest@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" - integrity sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc= + resolved "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz" loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" dependencies: js-tokens "^3.0.0 || ^4.0.0" loud-rejection@^1.0.0: version "1.6.0" - resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" - integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= + resolved "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz" dependencies: currently-unhandled "^0.4.1" signal-exit "^3.0.0" lowercase-keys@1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" - integrity sha1-TjNms55/VFfjXxMkvfb4jQv8cwY= + resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz" lowercase-keys@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" - integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== + resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz" lpad-align@^1.0.1: version "1.1.2" - resolved "https://registry.yarnpkg.com/lpad-align/-/lpad-align-1.1.2.tgz#21f600ac1c3095c3c6e497ee67271ee08481fe9e" - integrity sha1-IfYArBwwlcPG5JfuZyce4ISB/p4= + resolved "https://registry.npmjs.org/lpad-align/-/lpad-align-1.1.2.tgz" dependencies: get-stdin "^4.0.1" indent-string "^2.1.0" @@ -4250,53 +3814,45 @@ lpad-align@^1.0.1: lru-cache@^4.0.1: version "4.1.5" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz" dependencies: pseudomap "^1.0.2" yallist "^2.1.2" make-dir@^1.0.0, make-dir@^1.2.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" - integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== + resolved "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz" dependencies: pify "^3.0.0" make-dir@^2.0.0, make-dir@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" - integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" dependencies: pify "^4.0.1" semver "^5.6.0" map-cache@^0.2.2: version "0.2.2" - resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= + resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz" map-obj@^1.0.0, map-obj@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= + resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz" map-visit@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" - integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= + resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz" dependencies: object-visit "^1.0.0" markdown-link@^0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/markdown-link/-/markdown-link-0.1.1.tgz#32c5c65199a6457316322d1e4229d13407c8c7cf" - integrity sha1-MsXGUZmmRXMWMi0eQinRNAfIx88= + resolved "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz" markdown-toc@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/markdown-toc/-/markdown-toc-1.2.0.tgz#44a15606844490314afc0444483f9e7b1122c339" - integrity sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg== + resolved "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz" dependencies: concat-stream "^1.5.2" diacritics-map "^0.1.0" @@ -4313,28 +3869,23 @@ markdown-toc@^1.2.0: math-random@^1.0.1: version "1.0.4" - resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" - integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A== + resolved "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz" + +mdn-data@2.0.14: + version "2.0.14" + resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz" mdn-data@2.0.4: version "2.0.4" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" - integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== - -mdn-data@2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978" - integrity sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA== + resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz" media-typer@0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= + resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" meow@^3.3.0: version "3.7.0" - resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" - integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= + resolved "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz" dependencies: camelcase-keys "^2.0.0" decamelize "^1.1.2" @@ -4349,28 +3900,23 @@ meow@^3.3.0: merge-descriptors@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= + resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" -merge2@^1.2.3: - version "1.3.0" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" - integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== +merge2@^1.2.3, merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" methods@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= + resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" microevent.ts@~0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0" - integrity sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g== + resolved "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz" -micromatch@^3.1.10, micromatch@^3.1.4: +micromatch@^3.1.10: version "3.1.10" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" - integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" dependencies: arr-diff "^4.0.0" array-unique "^0.3.2" @@ -4386,89 +3932,73 @@ micromatch@^3.1.10, micromatch@^3.1.4: snapdragon "^0.8.1" to-regex "^3.0.2" -mime-db@1.43.0, mime-db@^1.28.0: - version "1.43.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58" - integrity sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ== +micromatch@^4.0.2: + version "4.0.2" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz" + dependencies: + braces "^3.0.1" + picomatch "^2.0.5" + +mime-db@1.46.0, mime-db@^1.28.0: + version "1.46.0" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz" mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24: - version "2.1.26" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06" - integrity sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ== + version "2.1.29" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz" dependencies: - mime-db "1.43.0" + mime-db "1.46.0" mime@1.6.0: version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mimic-fn@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" - integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" mimic-response@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" - integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== + resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz" minimatch@3.0.4, minimatch@^3.0.4, minimatch@~3.0.2: version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" dependencies: brace-expansion "^1.1.7" -minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== +minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" mixin-deep@^1.1.3, mixin-deep@^1.2.0: version "1.3.2" - resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" - integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== + resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz" dependencies: for-in "^1.0.2" is-extendable "^1.0.1" -mkdirp@^0.5.1, mkdirp@~0.5.1: - version "0.5.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.4.tgz#fd01504a6797ec5c9be81ff43d204961ed64a512" - integrity sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw== +mkdirp@^0.5.1, mkdirp@^0.5.5, mkdirp@~0.5.1: + version "0.5.5" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz" dependencies: minimist "^1.2.5" +moo@^0.5.0: + version "0.5.1" + resolved "https://registry.npmjs.org/moo/-/moo-0.5.1.tgz" + ms@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" ms@2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" - integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== + resolved "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz" -ms@^2.1.1: +ms@2.1.2, ms@^2.1.1: version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -mute-stream@0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" - integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= - -nan@^2.12.1: - version "2.14.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" - integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" nanomatch@^1.2.9: version "1.2.13" - resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" - integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz" dependencies: arr-diff "^4.0.0" array-unique "^0.3.2" @@ -4482,64 +4012,47 @@ nanomatch@^1.2.9: snapdragon "^0.8.1" to-regex "^3.0.1" +nearley@^2.7.10: + version "2.20.1" + resolved "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz" + dependencies: + commander "^2.19.0" + moo "^0.5.0" + railroad-diagrams "^1.0.0" + randexp "0.4.6" + negotiator@0.6.2: version "0.6.2" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" - integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== + resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz" nice-try@^1.0.4: version "1.0.5" - resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" node-modules-regexp@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" - integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= - -node-releases@^1.1.29, node-releases@^1.1.52: - version "1.1.52" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.52.tgz#bcffee3e0a758e92e44ecfaecd0a47554b0bcba9" - integrity sha512-snSiT1UypkgGt2wxPqS6ImEUICbNCMb31yaxWrOLXjhlt2z2/IBpaOxzONExqSm4y5oLnAqjjRWu+wsDzK5yNQ== - dependencies: - semver "^6.3.0" + resolved "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz" -node-releases@^1.1.67: - version "1.1.67" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12" - integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg== +node-releases@^1.1.61, node-releases@^1.1.70: + version "1.1.71" + resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz" normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" dependencies: hosted-git-info "^2.1.4" resolve "^1.10.0" semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" -normalize-path@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= - dependencies: - remove-trailing-separator "^1.0.1" - -normalize-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - normalize-range@^0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" - integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= + resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" normalize-url@2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-2.0.1.tgz#835a9da1551fa26f70e92329069a23aa6574d7e6" - integrity sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw== + resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz" dependencies: prepend-http "^2.0.0" query-string "^5.0.1" @@ -4547,332 +4060,305 @@ normalize-url@2.0.1: normalize-url@^3.0.0: version "3.3.0" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" - integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== + resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz" npm-conf@^1.1.0: version "1.1.3" - resolved "https://registry.yarnpkg.com/npm-conf/-/npm-conf-1.1.3.tgz#256cc47bd0e218c259c4e9550bf413bc2192aff9" - integrity sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw== + resolved "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz" dependencies: config-chain "^1.1.11" pify "^3.0.0" npm-run-path@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" - integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" dependencies: path-key "^2.0.0" nth-check@^1.0.2, nth-check@~1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" - integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + resolved "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz" dependencies: boolbase "~1.0.0" +nth-check@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz" + dependencies: + boolbase "^1.0.0" + num2fraction@^1.2.2: version "1.2.2" - resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" - integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= + resolved "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz" oauth-sign@~0.9.0: version "0.9.0" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" - integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz" object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" object-copy@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" - integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= + resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz" dependencies: copy-descriptor "^0.1.0" define-property "^0.2.5" kind-of "^3.0.3" -object-inspect@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" - integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== +object-inspect@^1.7.0, object-inspect@^1.9.0: + version "1.9.0" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz" + +object-is@^1.0.2, object-is@^1.1.2: + version "1.1.5" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz" + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" -object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: +object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" object-visit@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" - integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= + resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz" dependencies: isobject "^3.0.0" -object.assign@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" - integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== +object.assign@^4.1.0, object.assign@^4.1.2: + version "4.1.2" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" dependencies: - define-properties "^1.1.2" - function-bind "^1.1.1" - has-symbols "^1.0.0" - object-keys "^1.0.11" + call-bind "^1.0.0" + define-properties "^1.1.3" + has-symbols "^1.0.1" + object-keys "^1.1.1" + +object.entries@^1.1.1, object.entries@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz" + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + es-abstract "^1.18.0-next.1" + has "^1.0.3" + +object.fromentries@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz" + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.18.0-next.2" + has "^1.0.3" object.getownpropertydescriptors@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" - integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== + version "2.1.2" + resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz" dependencies: + call-bind "^1.0.2" define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" + es-abstract "^1.18.0-next.2" object.pick@^1.2.0, object.pick@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" - integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= + resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz" dependencies: isobject "^3.0.1" -object.values@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" - integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== +object.values@^1.1.0, object.values@^1.1.1, object.values@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz" dependencies: + call-bind "^1.0.2" define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - function-bind "^1.1.1" + es-abstract "^1.18.0-next.2" has "^1.0.3" on-finished@~2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" - integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= + resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz" dependencies: ee-first "1.1.1" once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" dependencies: wrappy "1" -onetime@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" - integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= - dependencies: - mimic-fn "^1.0.0" - -open@^6.3.0: - version "6.4.0" - resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" - integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg== +open@^7.0.2: + version "7.4.2" + resolved "https://registry.npmjs.org/open/-/open-7.4.2.tgz" dependencies: - is-wsl "^1.1.0" + is-docker "^2.0.0" + is-wsl "^2.1.1" optipng-bin@^5.0.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/optipng-bin/-/optipng-bin-5.1.0.tgz#a7c7ab600a3ab5a177dae2f94c2d800aa386b5a9" - integrity sha512-9baoqZTNNmXQjq/PQTWEXbVV3AMO2sI/GaaqZJZ8SExfAzjijeAP7FEeT+TtyumSw7gr0PZtSUYB/Ke7iHQVKA== + resolved "https://registry.npmjs.org/optipng-bin/-/optipng-bin-5.1.0.tgz" dependencies: bin-build "^3.0.0" bin-wrapper "^4.0.0" logalot "^2.0.0" -original@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f" - integrity sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg== - dependencies: - url-parse "^1.4.3" - os-filter-obj@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/os-filter-obj/-/os-filter-obj-2.0.0.tgz#1c0b62d5f3a2442749a2d139e6dddee6e81d8d16" - integrity sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg== + resolved "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz" dependencies: arch "^2.1.0" -os-tmpdir@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= - p-cancelable@^0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" - integrity sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw== + resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz" p-cancelable@^0.4.0: version "0.4.1" - resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0" - integrity sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ== + resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz" p-event@^1.0.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/p-event/-/p-event-1.3.0.tgz#8e6b4f4f65c72bc5b6fe28b75eda874f96a4a085" - integrity sha1-jmtPT2XHK8W2/ii3XtqHT5akoIU= + resolved "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz" dependencies: p-timeout "^1.1.1" p-event@^2.1.0: version "2.3.1" - resolved "https://registry.yarnpkg.com/p-event/-/p-event-2.3.1.tgz#596279ef169ab2c3e0cae88c1cfbb08079993ef6" - integrity sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA== + resolved "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz" dependencies: p-timeout "^2.0.1" p-finally@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" p-is-promise@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e" - integrity sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4= + resolved "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz" -p-limit@^1.1.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" - integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== - dependencies: - p-try "^1.0.0" - -p-limit@^2.0.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e" - integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ== +p-limit@^2.0.0, p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" dependencies: p-try "^2.0.0" -p-locate@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" - integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= - dependencies: - p-limit "^1.1.0" - p-locate@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" dependencies: p-limit "^2.0.0" +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" + dependencies: + p-limit "^2.2.0" + p-map-series@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-1.0.0.tgz#bf98fe575705658a9e1351befb85ae4c1f07bdca" - integrity sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco= + resolved "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz" dependencies: p-reduce "^1.0.0" p-pipe@^1.1.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/p-pipe/-/p-pipe-1.2.0.tgz#4b1a11399a11520a67790ee5a0c1d5881d6befe9" - integrity sha1-SxoROZoRUgpneQ7loMHViB1r7+k= + resolved "https://registry.npmjs.org/p-pipe/-/p-pipe-1.2.0.tgz" p-reduce@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" - integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo= + resolved "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz" p-timeout@^1.1.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-1.2.1.tgz#5eb3b353b7fce99f101a1038880bb054ebbea386" - integrity sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y= + resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz" dependencies: p-finally "^1.0.0" p-timeout@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038" - integrity sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA== + resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz" dependencies: p-finally "^1.0.0" -p-try@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" - integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= - p-try@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" parse-json@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" - integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= + resolved "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz" dependencies: error-ex "^1.2.0" parse-json@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" - integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= + resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz" dependencies: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" +parse5-htmlparser2-tree-adapter@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz" + dependencies: + parse5 "^6.0.1" + +parse5@^6.0.0, parse5@^6.0.1: + version "6.0.1" + resolved "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz" + parseurl@~1.3.3: version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" pascalcase@^0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" - integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= + resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz" path-dirname@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" - integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= + resolved "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz" path-exists@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" - integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= + resolved "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz" dependencies: pinkie-promise "^2.0.0" path-exists@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" + +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" path-parse@^1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz" path-to-regexp@0.1.7: version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" path-type@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" - integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= + resolved "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz" dependencies: graceful-fs "^4.1.2" pify "^2.0.0" @@ -4880,94 +4366,81 @@ path-type@^1.0.0: path-type@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" - integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz" dependencies: pify "^3.0.0" +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" + pend@~1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" - integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= + resolved "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz" performance-now@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= + resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz" + +picomatch@^2.0.5, picomatch@^2.2.1: + version "2.2.2" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz" pify@^2.0.0, pify@^2.2.0, pify@^2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= + resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" pify@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" - integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= + resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz" pify@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" pinkie-promise@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" - integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= + resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz" dependencies: pinkie "^2.0.0" pinkie@^2.0.0: version "2.0.4" - resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" - integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= + resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz" pirates@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" - integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== + resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz" dependencies: node-modules-regexp "^1.0.0" pkg-dir@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" - integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz" dependencies: find-up "^3.0.0" -pkg-up@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" - integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= - dependencies: - find-up "^2.1.0" - -pkg-up@^3.1.0: +pkg-up@3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" - integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== + resolved "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz" dependencies: find-up "^3.0.0" -portfinder@^1.0.25: - version "1.0.25" - resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.25.tgz#254fd337ffba869f4b9d37edc298059cb4d35eca" - integrity sha512-6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg== +portfinder@^1.0.28: + version "1.0.28" + resolved "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz" dependencies: async "^2.6.2" debug "^3.1.1" - mkdirp "^0.5.1" + mkdirp "^0.5.5" posix-character-classes@^0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" - integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= + resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz" postcss-calc@^7.0.1: - version "7.0.2" - resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.2.tgz#504efcd008ca0273120568b0792b16cdcde8aac1" - integrity sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ== + version "7.0.5" + resolved "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz" dependencies: postcss "^7.0.27" postcss-selector-parser "^6.0.2" @@ -4975,8 +4448,7 @@ postcss-calc@^7.0.1: postcss-colormin@^4.0.3: version "4.0.3" - resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381" - integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== + resolved "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz" dependencies: browserslist "^4.0.0" color "^3.0.0" @@ -4986,44 +4458,38 @@ postcss-colormin@^4.0.3: postcss-convert-values@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f" - integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== + resolved "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz" dependencies: postcss "^7.0.0" postcss-value-parser "^3.0.0" postcss-discard-comments@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" - integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== + resolved "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz" dependencies: postcss "^7.0.0" postcss-discard-duplicates@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" - integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== + resolved "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz" dependencies: postcss "^7.0.0" postcss-discard-empty@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765" - integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== + resolved "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz" dependencies: postcss "^7.0.0" postcss-discard-overridden@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57" - integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== + resolved "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz" dependencies: postcss "^7.0.0" postcss-merge-longhand@^4.0.11: version "4.0.11" - resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" - integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== + resolved "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz" dependencies: css-color-names "0.0.4" postcss "^7.0.0" @@ -5032,8 +4498,7 @@ postcss-merge-longhand@^4.0.11: postcss-merge-rules@^4.0.3: version "4.0.3" - resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650" - integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== + resolved "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz" dependencies: browserslist "^4.0.0" caniuse-api "^3.0.0" @@ -5044,16 +4509,14 @@ postcss-merge-rules@^4.0.3: postcss-minify-font-values@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" - integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== + resolved "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz" dependencies: postcss "^7.0.0" postcss-value-parser "^3.0.0" postcss-minify-gradients@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471" - integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== + resolved "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz" dependencies: cssnano-util-get-arguments "^4.0.0" is-color-stop "^1.0.0" @@ -5062,8 +4525,7 @@ postcss-minify-gradients@^4.0.2: postcss-minify-params@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874" - integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== + resolved "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz" dependencies: alphanum-sort "^1.0.0" browserslist "^4.0.0" @@ -5074,8 +4536,7 @@ postcss-minify-params@^4.0.2: postcss-minify-selectors@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8" - integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== + resolved "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz" dependencies: alphanum-sort "^1.0.0" has "^1.0.0" @@ -5084,15 +4545,13 @@ postcss-minify-selectors@^4.0.2: postcss-normalize-charset@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4" - integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== + resolved "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz" dependencies: postcss "^7.0.0" postcss-normalize-display-values@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a" - integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== + resolved "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz" dependencies: cssnano-util-get-match "^4.0.0" postcss "^7.0.0" @@ -5100,8 +4559,7 @@ postcss-normalize-display-values@^4.0.2: postcss-normalize-positions@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f" - integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== + resolved "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz" dependencies: cssnano-util-get-arguments "^4.0.0" has "^1.0.0" @@ -5110,8 +4568,7 @@ postcss-normalize-positions@^4.0.2: postcss-normalize-repeat-style@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c" - integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== + resolved "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz" dependencies: cssnano-util-get-arguments "^4.0.0" cssnano-util-get-match "^4.0.0" @@ -5120,8 +4577,7 @@ postcss-normalize-repeat-style@^4.0.2: postcss-normalize-string@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c" - integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== + resolved "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz" dependencies: has "^1.0.0" postcss "^7.0.0" @@ -5129,8 +4585,7 @@ postcss-normalize-string@^4.0.2: postcss-normalize-timing-functions@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9" - integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== + resolved "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz" dependencies: cssnano-util-get-match "^4.0.0" postcss "^7.0.0" @@ -5138,8 +4593,7 @@ postcss-normalize-timing-functions@^4.0.2: postcss-normalize-unicode@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb" - integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== + resolved "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz" dependencies: browserslist "^4.0.0" postcss "^7.0.0" @@ -5147,8 +4601,7 @@ postcss-normalize-unicode@^4.0.1: postcss-normalize-url@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1" - integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== + resolved "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz" dependencies: is-absolute-url "^2.0.0" normalize-url "^3.0.0" @@ -5157,16 +4610,14 @@ postcss-normalize-url@^4.0.1: postcss-normalize-whitespace@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82" - integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== + resolved "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz" dependencies: postcss "^7.0.0" postcss-value-parser "^3.0.0" postcss-ordered-values@^4.1.2: version "4.1.2" - resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee" - integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== + resolved "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz" dependencies: cssnano-util-get-arguments "^4.0.0" postcss "^7.0.0" @@ -5174,8 +4625,7 @@ postcss-ordered-values@^4.1.2: postcss-reduce-initial@^4.0.3: version "4.0.3" - resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df" - integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== + resolved "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz" dependencies: browserslist "^4.0.0" caniuse-api "^3.0.0" @@ -5184,8 +4634,7 @@ postcss-reduce-initial@^4.0.3: postcss-reduce-transforms@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29" - integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== + resolved "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz" dependencies: cssnano-util-get-match "^4.0.0" has "^1.0.0" @@ -5194,26 +4643,24 @@ postcss-reduce-transforms@^4.0.2: postcss-selector-parser@^3.0.0: version "3.1.2" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270" - integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== + resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz" dependencies: dot-prop "^5.2.0" indexes-of "^1.0.1" uniq "^1.0.1" postcss-selector-parser@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" - integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== + version "6.0.4" + resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz" dependencies: cssesc "^3.0.0" indexes-of "^1.0.1" uniq "^1.0.1" + util-deprecate "^1.0.2" postcss-svgo@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" - integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw== + resolved "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz" dependencies: is-svg "^3.0.0" postcss "^7.0.0" @@ -5222,8 +4669,7 @@ postcss-svgo@^4.0.2: postcss-unique-selectors@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac" - integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== + resolved "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz" dependencies: alphanum-sort "^1.0.0" postcss "^7.0.0" @@ -5231,23 +4677,15 @@ postcss-unique-selectors@^4.0.1: postcss-value-parser@^3.0.0: version "3.3.1" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" - integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== - -postcss-value-parser@^4.0.2: - version "4.0.3" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz#651ff4593aa9eda8d5d0d66593a2417aeaeb325d" - integrity sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg== + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz" -postcss-value-parser@^4.1.0: +postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" - integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz" postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.23, postcss@^7.0.27, postcss@^7.0.32: version "7.0.35" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" - integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== + resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz" dependencies: chalk "^2.4.2" source-map "^0.6.1" @@ -5255,35 +4693,40 @@ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.23, postcss@^7.0.27, postcss@^7.0.3 prepend-http@^1.0.1: version "1.0.4" - resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" - integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= + resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz" prepend-http@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" - integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= + resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz" -prismjs@^1.17.1: - version "1.21.0" - resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.21.0.tgz#36c086ec36b45319ec4218ee164c110f9fc015a3" - integrity sha512-uGdSIu1nk3kej2iZsLyDoJ7e9bnPzIgY0naW/HdknGj61zScaprVEVGHrPoXqI+M9sP0NDnTK2jpkvmldpuqDw== +prismjs@^1.22.0: + version "1.23.0" + resolved "https://registry.npmjs.org/prismjs/-/prismjs-1.23.0.tgz" optionalDependencies: clipboard "^2.0.0" -private@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" - integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== - process-nextick-args@~2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" + +prompts@2.4.0: + version "2.4.0" + resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz" + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +prop-types-exact@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/prop-types-exact/-/prop-types-exact-1.2.0.tgz" + dependencies: + has "^1.0.3" + object.assign "^4.1.0" + reflect.ownkeys "^0.2.0" -prop-types@^15.6.2: +prop-types@^15.6.2, prop-types@^15.7.2: version "15.7.2" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" - integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== + resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz" dependencies: loose-envify "^1.4.0" object-assign "^4.1.1" @@ -5291,78 +4734,78 @@ prop-types@^15.6.2: proto-list@~1.2.1: version "1.2.4" - resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" - integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk= + resolved "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz" proxy-addr@~2.0.5: version "2.0.6" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" - integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== + resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz" dependencies: forwarded "~0.1.2" ipaddr.js "1.9.1" pseudomap@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= + resolved "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz" psl@^1.1.28: version "1.8.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" - integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== + resolved "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz" pump@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" dependencies: end-of-stream "^1.1.0" once "^1.3.1" punycode@^2.1.0, punycode@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" q@^1.1.2: version "1.5.1" - resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" - integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= + resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz" -qs@6.7.0: +qs@6.7.0, qs@^6.4.0: version "6.7.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" - integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== - -qs@^6.4.0: - version "6.9.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.2.tgz#a27b695006544a04bf0e6c6a7e8120778926d5bd" - integrity sha512-2eQ6zajpK7HwqrY1rRtGw5IZvjgtELXzJECaEDuzDFo2jjnIXpJSimzd4qflWZq6bLLi+Zgfj5eDrAzl/lptyg== + resolved "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz" qs@~6.5.2: - version "6.5.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" - integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== + version "6.5.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" query-string@^5.0.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb" - integrity sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw== + resolved "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz" dependencies: decode-uri-component "^0.2.0" object-assign "^4.1.0" strict-uri-encode "^1.0.0" -querystringify@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" - integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA== +queue-microtask@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz" + +raf@^3.4.1: + version "3.4.1" + resolved "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz" + dependencies: + performance-now "^2.1.0" + +railroad-diagrams@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz" + +randexp@0.4.6: + version "0.4.6" + resolved "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz" + dependencies: + discontinuous-range "1.0.0" + ret "~0.1.10" randomatic@^3.0.0: version "3.1.1" - resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" - integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw== + resolved "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz" dependencies: is-number "^4.0.0" kind-of "^6.0.0" @@ -5370,13 +4813,11 @@ randomatic@^3.0.0: range-parser@~1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" raw-body@2.4.0: version "2.4.0" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" - integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== + resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz" dependencies: bytes "3.1.0" http-errors "1.7.2" @@ -5385,67 +4826,69 @@ raw-body@2.4.0: raw-body@~1.1.0: version "1.1.7" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-1.1.7.tgz#1d027c2bfa116acc6623bca8f00016572a87d425" - integrity sha1-HQJ8K/oRasxmI7yo8AAWVyqH1CU= + resolved "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz" dependencies: bytes "1" string_decoder "0.10" -react-dev-utils@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-9.1.0.tgz#3ad2bb8848a32319d760d0a84c56c14bdaae5e81" - integrity sha512-X2KYF/lIGyGwP/F/oXgGDF24nxDA2KC4b7AFto+eqzc/t838gpSGiaU8trTqHXOohuLxxc5qi1eDzsl9ucPDpg== +react-dev-utils@^11.0.1: + version "11.0.4" + resolved "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz" dependencies: - "@babel/code-frame" "7.5.5" + "@babel/code-frame" "7.10.4" address "1.1.2" - browserslist "4.7.0" + browserslist "4.14.2" chalk "2.4.2" - cross-spawn "6.0.5" + cross-spawn "7.0.3" detect-port-alt "1.1.6" - escape-string-regexp "1.0.5" - filesize "3.6.1" - find-up "3.0.0" - fork-ts-checker-webpack-plugin "1.5.0" + escape-string-regexp "2.0.0" + filesize "6.1.0" + find-up "4.1.0" + fork-ts-checker-webpack-plugin "4.1.6" global-modules "2.0.0" - globby "8.0.2" + globby "11.0.1" gzip-size "5.1.1" - immer "1.10.0" - inquirer "6.5.0" + immer "8.0.1" is-root "2.1.0" - loader-utils "1.2.3" - open "^6.3.0" - pkg-up "2.0.0" - react-error-overlay "^6.0.3" + loader-utils "2.0.0" + open "^7.0.2" + pkg-up "3.1.0" + prompts "2.4.0" + react-error-overlay "^6.0.9" recursive-readdir "2.2.2" shell-quote "1.7.2" - sockjs-client "1.4.0" - strip-ansi "5.2.0" + strip-ansi "6.0.0" text-table "0.2.0" react-dom@^16.8.4: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f" - integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag== + version "16.14.0" + resolved "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz" dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.2" scheduler "^0.19.1" -react-error-overlay@^6.0.3: - version "6.0.7" - resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.7.tgz#1dcfb459ab671d53f660a991513cb2f0a0553108" - integrity sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA== +react-error-overlay@^6.0.9: + version "6.0.9" + resolved "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz" -react-is@^16.8.1: +react-is@^16.13.1, react-is@^16.8.1, react-is@^16.8.6: version "16.13.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" - integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + +react-test-renderer@^16.0.0-0: + version "16.14.0" + resolved "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.14.0.tgz" + dependencies: + object-assign "^4.1.1" + prop-types "^15.6.2" + react-is "^16.8.6" + scheduler "^0.19.1" react@^16.8.4: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" - integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w== + version "16.14.0" + resolved "https://registry.npmjs.org/react/-/react-16.14.0.tgz" dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" @@ -5453,25 +4896,22 @@ react@^16.8.4: read-pkg-up@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" - integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= + resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz" dependencies: find-up "^1.0.0" read-pkg "^1.0.0" read-pkg@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" - integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= + resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz" dependencies: load-json-file "^1.0.0" normalize-package-data "^2.3.2" path-type "^1.0.0" -readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@~2.3.6: +readable-stream@^2.0.0, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@~2.3.6: version "2.3.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" dependencies: core-util-is "~1.0.0" inherits "~2.0.3" @@ -5483,93 +4923,65 @@ readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.2.2, readable readable-stream@^3.1.1: version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" dependencies: inherits "^2.0.3" string_decoder "^1.1.1" util-deprecate "^1.0.1" -readdirp@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" - integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== - dependencies: - graceful-fs "^4.1.11" - micromatch "^3.1.10" - readable-stream "^2.0.2" - rechoir@^0.6.2: version "0.6.2" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= + resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz" dependencies: resolve "^1.1.6" recursive-readdir@2.2.2: version "2.2.2" - resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f" - integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg== + resolved "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz" dependencies: minimatch "3.0.4" redent@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" - integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= + resolved "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz" dependencies: indent-string "^2.1.0" strip-indent "^1.0.1" +reflect.ownkeys@^0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz" + regenerate-unicode-properties@^8.2.0: version "8.2.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" - integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== + resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz" dependencies: regenerate "^1.4.0" regenerate@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" - integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== + version "1.4.2" + resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" regenerator-runtime@^0.13.4: - version "0.13.5" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" - integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== + version "0.13.7" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz" regenerator-transform@^0.14.2: - version "0.14.4" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7" - integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw== + version "0.14.5" + resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz" dependencies: "@babel/runtime" "^7.8.4" - private "^0.1.8" regex-not@^1.0.0, regex-not@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" - integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz" dependencies: extend-shallow "^3.0.2" safe-regex "^1.1.0" -regexpu-core@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" - integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== - dependencies: - regenerate "^1.4.0" - regenerate-unicode-properties "^8.2.0" - regjsgen "^0.5.1" - regjsparser "^0.6.4" - unicode-match-property-ecmascript "^1.0.4" - unicode-match-property-value-ecmascript "^1.2.0" - regexpu-core@^4.7.1: version "4.7.1" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6" - integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== + resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz" dependencies: regenerate "^1.4.0" regenerate-unicode-properties "^8.2.0" @@ -5579,64 +4991,50 @@ regexpu-core@^4.7.1: unicode-match-property-value-ecmascript "^1.2.0" regjsgen@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c" - integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg== + version "0.5.2" + resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz" regjsparser@^0.6.4: - version "0.6.4" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" - integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== + version "0.6.7" + resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz" dependencies: jsesc "~0.5.0" remarkable@^1.7.1: version "1.7.4" - resolved "https://registry.yarnpkg.com/remarkable/-/remarkable-1.7.4.tgz#19073cb960398c87a7d6546eaa5e50d2022fcd00" - integrity sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg== + resolved "https://registry.npmjs.org/remarkable/-/remarkable-1.7.4.tgz" dependencies: argparse "^1.0.10" autolinker "~0.28.0" remarkable@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/remarkable/-/remarkable-2.0.0.tgz#795f965bede8300362ce51a716edc322d9e7a4ca" - integrity sha512-3gvKFAgL4xmmVRKAMNm6UzDo/rO2gPVkZrWagp6AXEA4JvCcMcRx9aapYbb7AJAmLLvi/u06+EhzqoS7ha9qOg== + version "2.0.1" + resolved "https://registry.npmjs.org/remarkable/-/remarkable-2.0.1.tgz" dependencies: argparse "^1.0.10" autolinker "^3.11.0" -remove-trailing-separator@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= - repeat-element@^1.1.2: version "1.1.3" - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" - integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== + resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz" repeat-string@^1.5.2, repeat-string@^1.6.1: version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" repeating@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" - integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= + resolved "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz" dependencies: is-finite "^1.0.0" replace-ext@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" - integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs= + version "1.0.1" + resolved "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz" request@^2.53.0, request@^2.88.0: version "2.88.2" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" - integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== + resolved "https://registry.npmjs.org/request/-/request-2.88.2.tgz" dependencies: aws-sign2 "~0.7.0" aws4 "^1.8.0" @@ -5659,167 +5057,126 @@ request@^2.53.0, request@^2.88.0: tunnel-agent "^0.6.0" uuid "^3.3.2" -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= - resolve-from@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" - integrity sha1-six699nWiBvItuZTM17rywoYh0g= + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz" resolve-url@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= + resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz" -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.3.2: - version "1.15.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8" - integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w== +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.14.2: + version "1.20.0" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz" dependencies: + is-core-module "^2.2.0" path-parse "^1.0.6" responselike@1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" - integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= + resolved "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz" dependencies: lowercase-keys "^1.0.0" -restore-cursor@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" - integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= - dependencies: - onetime "^2.0.0" - signal-exit "^3.0.2" - ret@~0.1.10: version "0.1.15" - resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" - integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" rgb-regex@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" - integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE= + resolved "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz" rgba-regex@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" - integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= + resolved "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz" rimraf@^2.5.4: version "2.7.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz" dependencies: glob "^7.1.3" -run-async@^2.2.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz#e59054a5b86876cfae07f431d18cbaddc594f1e8" - integrity sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg== +rst-selector-parser@^2.2.3: + version "2.2.3" + resolved "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz" dependencies: - is-promise "^2.1.0" + lodash.flattendeep "^4.4.0" + nearley "^2.7.10" -rxjs@^6.4.0: - version "6.5.4" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.4.tgz#e0777fe0d184cec7872df147f303572d414e211c" - integrity sha512-naMQXcgEo3csAEGvw/NydRA0fuS2nDZJiw1YUWFKU7aPPAPGZEsD4Iimit96qwCieH6y614MCLYwdkrWx7z/7Q== +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" dependencies: - tslib "^1.9.0" + queue-microtask "^1.2.2" -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: +safe-buffer@5.1.2, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" - integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== - -safe-buffer@^5.1.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" safe-json-parse@~1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/safe-json-parse/-/safe-json-parse-1.0.1.tgz#3e76723e38dfdda13c9b1d29a1e07ffee4b30b57" - integrity sha1-PnZyPjjf3aE8mx0poeB//uSzC1c= + resolved "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz" safe-regex@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" - integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= + resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz" dependencies: ret "~0.1.10" "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" sax@^1.2.4, sax@~1.2.4: version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz" scheduler@^0.19.1: version "0.19.1" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" - integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== + resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz" dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" seek-bzip@^1.0.5: version "1.0.6" - resolved "https://registry.yarnpkg.com/seek-bzip/-/seek-bzip-1.0.6.tgz#35c4171f55a680916b52a07859ecf3b5857f21c4" - integrity sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ== + resolved "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz" dependencies: commander "^2.8.1" select@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d" - integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0= + resolved "https://registry.npmjs.org/select/-/select-1.1.2.tgz" semver-regex@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338" - integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw== + resolved "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz" semver-truncate@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/semver-truncate/-/semver-truncate-1.1.2.tgz#57f41de69707a62709a7e0104ba2117109ea47e8" - integrity sha1-V/Qd5pcHpicJp+AQS6IRcQnqR+g= + resolved "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz" dependencies: semver "^5.3.0" -"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: +"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5.0, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1: version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" semver@7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" - integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== + resolved "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" -semver@^6.3.0: +semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" send@0.17.1: version "0.17.1" - resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" - integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== + resolved "https://registry.npmjs.org/send/-/send-0.17.1.tgz" dependencies: debug "2.6.9" depd "~1.1.2" @@ -5837,8 +5194,7 @@ send@0.17.1: serve-static@1.14.1: version "1.14.1" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" - integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== + resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz" dependencies: encodeurl "~1.0.2" escape-html "~1.0.3" @@ -5847,15 +5203,13 @@ serve-static@1.14.1: set-getter@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/set-getter/-/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376" - integrity sha1-12nBgsnVpR9AkUXy+6guXoboA3Y= + resolved "https://registry.npmjs.org/set-getter/-/set-getter-0.1.0.tgz" dependencies: to-object-path "^0.3.0" set-value@^2.0.0, set-value@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" - integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== + resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz" dependencies: extend-shallow "^2.0.1" is-extendable "^0.1.1" @@ -5864,51 +5218,57 @@ set-value@^2.0.0, set-value@^2.0.1: setprototypeof@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" - integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz" shebang-command@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" dependencies: shebang-regex "^1.0.0" +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" + dependencies: + shebang-regex "^3.0.0" + shebang-regex@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" shell-quote@1.7.2: version "1.7.2" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" - integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== + resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz" shelljs@^0.8.4: - version "0.8.4" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2" - integrity sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ== + version "0.8.5" + resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz" dependencies: glob "^7.0.0" interpret "^1.0.0" rechoir "^0.6.2" -signal-exit@^3.0.0, signal-exit@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" - integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= +signal-exit@^3.0.0: + version "3.0.3" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz" simple-swizzle@^0.2.2: version "0.2.2" - resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" - integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= + resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz" dependencies: is-arrayish "^0.3.1" +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" + sitemap@^3.2.2: version "3.2.2" - resolved "https://registry.yarnpkg.com/sitemap/-/sitemap-3.2.2.tgz#3f77c358fa97b555c879e457098e39910095c62b" - integrity sha512-TModL/WU4m2q/mQcrDgNANn0P4LwprM9MMvG4hu5zP4c6IIKs2YLTu6nXXnNr8ODW/WFtxKggiJ1EGn2W0GNmg== + resolved "https://registry.npmjs.org/sitemap/-/sitemap-3.2.2.tgz" dependencies: lodash.chunk "^4.2.0" lodash.padstart "^4.6.1" @@ -5917,13 +5277,15 @@ sitemap@^3.2.2: slash@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" - integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= + resolved "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz" + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" snapdragon-node@^2.0.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" - integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz" dependencies: define-property "^1.0.0" isobject "^3.0.0" @@ -5931,15 +5293,13 @@ snapdragon-node@^2.0.1: snapdragon-util@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" - integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz" dependencies: kind-of "^3.2.0" snapdragon@^0.8.1: version "0.8.2" - resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" - integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz" dependencies: base "^0.11.1" debug "^2.2.0" @@ -5950,43 +5310,27 @@ snapdragon@^0.8.1: source-map-resolve "^0.5.0" use "^3.1.0" -sockjs-client@1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.4.0.tgz#c9f2568e19c8fd8173b4997ea3420e0bb306c7d5" - integrity sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g== - dependencies: - debug "^3.2.5" - eventsource "^1.0.7" - faye-websocket "~0.11.1" - inherits "^2.0.3" - json3 "^3.3.2" - url-parse "^1.4.3" - sort-keys-length@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/sort-keys-length/-/sort-keys-length-1.0.1.tgz#9cb6f4f4e9e48155a6aa0671edd336ff1479a188" - integrity sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg= + resolved "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz" dependencies: sort-keys "^1.0.0" sort-keys@^1.0.0: version "1.1.2" - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" - integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0= + resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz" dependencies: is-plain-obj "^1.0.0" sort-keys@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" - integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg= + resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz" dependencies: is-plain-obj "^1.0.0" source-map-resolve@^0.5.0: version "0.5.3" - resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" - integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== + resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz" dependencies: atob "^2.1.2" decode-uri-component "^0.2.0" @@ -5995,70 +5339,59 @@ source-map-resolve@^0.5.0: urix "^0.1.0" source-map-support@^0.5.16: - version "0.5.16" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042" - integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ== + version "0.5.19" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz" dependencies: buffer-from "^1.0.0" source-map "^0.6.0" source-map-url@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" - integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= + version "0.4.1" + resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz" source-map@^0.5.0, source-map@^0.5.6: version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" source-map@^0.6.0, source-map@^0.6.1: version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" spdx-correct@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" - integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== + version "3.1.1" + resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz" dependencies: spdx-expression-parse "^3.0.0" spdx-license-ids "^3.0.0" spdx-exceptions@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" - integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== + version "2.3.0" + resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz" spdx-expression-parse@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" - integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== + version "3.0.1" + resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz" dependencies: spdx-exceptions "^2.1.0" spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.5" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" - integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== + version "3.0.7" + resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz" split-string@^3.0.1, split-string@^3.0.2: version "3.1.0" - resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" - integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz" dependencies: extend-shallow "^3.0.0" sprintf-js@~1.0.2: version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" squeak@^1.0.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/squeak/-/squeak-1.3.0.tgz#33045037b64388b567674b84322a6521073916c3" - integrity sha1-MwRQN7ZDiLVnZ0uEMiplIQc5FsM= + resolved "https://registry.npmjs.org/squeak/-/squeak-1.3.0.tgz" dependencies: chalk "^1.0.0" console-stream "^0.1.1" @@ -6066,8 +5399,7 @@ squeak@^1.0.0: sshpk@^1.7.0: version "1.16.1" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" - integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== + resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz" dependencies: asn1 "~0.2.3" assert-plus "^1.0.0" @@ -6081,138 +5413,106 @@ sshpk@^1.7.0: stable@^0.1.8: version "0.1.8" - resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" - integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + resolved "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz" static-extend@^0.1.1: version "0.1.2" - resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" - integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= + resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz" dependencies: define-property "^0.2.5" object-copy "^0.1.0" "statuses@>= 1.5.0 < 2", statuses@~1.5.0: version "1.5.0" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= + resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" strict-uri-encode@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" - integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= + resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz" string-template@~0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add" - integrity sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0= + resolved "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz" -string-width@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== +string.prototype.trim@^1.2.1: + version "1.2.4" + resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.4.tgz" dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.18.0-next.2" -string.prototype.trimleft@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74" - integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag== +string.prototype.trimend@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz" dependencies: + call-bind "^1.0.2" define-properties "^1.1.3" - function-bind "^1.1.1" -string.prototype.trimright@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9" - integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g== +string.prototype.trimstart@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz" dependencies: + call-bind "^1.0.2" define-properties "^1.1.3" - function-bind "^1.1.1" string_decoder@0.10: version "0.10.31" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" - integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" -string_decoder@~1.1.1: +string_decoder@^1.1.1, string_decoder@~1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" dependencies: safe-buffer "~5.1.0" -strip-ansi@5.2.0, strip-ansi@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== +strip-ansi@6.0.0: + version "6.0.0" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz" dependencies: - ansi-regex "^4.1.0" + ansi-regex "^5.0.0" strip-ansi@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" dependencies: ansi-regex "^2.0.0" -strip-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= - dependencies: - ansi-regex "^3.0.0" - strip-bom@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" - integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz" dependencies: is-utf8 "^0.2.0" strip-color@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/strip-color/-/strip-color-0.1.0.tgz#106f65d3d3e6a2d9401cac0eb0ce8b8a702b4f7b" - integrity sha1-EG9l09PmotlAHKwOsM6LinArT3s= + resolved "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz" strip-dirs@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/strip-dirs/-/strip-dirs-2.1.0.tgz#4987736264fc344cf20f6c34aca9d13d1d4ed6c5" - integrity sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g== + resolved "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz" dependencies: is-natural-number "^4.0.1" strip-eof@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" - integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz" strip-indent@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" - integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= + resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz" dependencies: get-stdin "^4.0.1" strip-outer@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/strip-outer/-/strip-outer-1.0.1.tgz#b2fd2abf6604b9d1e6013057195df836b8a9d631" - integrity sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg== + resolved "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz" dependencies: escape-string-regexp "^1.0.2" stylehacks@^4.0.0: version "4.0.3" - resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" - integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== + resolved "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz" dependencies: browserslist "^4.0.0" postcss "^7.0.0" @@ -6220,34 +5520,29 @@ stylehacks@^4.0.0: supports-color@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" supports-color@^5.3.0: version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" dependencies: has-flag "^3.0.0" supports-color@^6.1.0: version "6.1.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" - integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz" dependencies: has-flag "^3.0.0" supports-color@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" - integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" dependencies: has-flag "^4.0.0" svgo@^1.0.0, svgo@^1.3.2: version "1.3.2" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" - integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== + resolved "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz" dependencies: chalk "^2.4.1" coa "^2.0.2" @@ -6265,13 +5560,11 @@ svgo@^1.0.0, svgo@^1.3.2: tapable@^1.0.0: version "1.1.3" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" - integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== + resolved "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz" tar-stream@^1.5.2: version "1.6.2" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" - integrity sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A== + resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz" dependencies: bl "^1.0.0" buffer-alloc "^1.2.0" @@ -6282,63 +5575,53 @@ tar-stream@^1.5.2: xtend "^4.0.0" tcp-port-used@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/tcp-port-used/-/tcp-port-used-1.0.1.tgz#46061078e2d38c73979a2c2c12b5a674e6689d70" - integrity sha512-rwi5xJeU6utXoEIiMvVBMc9eJ2/ofzB+7nLOdnZuFTmNCLqRiQh2sMG9MqCxHU/69VC/Fwp5dV9306Qd54ll1Q== + version "1.0.2" + resolved "https://registry.npmjs.org/tcp-port-used/-/tcp-port-used-1.0.2.tgz" dependencies: - debug "4.1.0" - is2 "2.0.1" + debug "4.3.1" + is2 "^2.0.6" temp-dir@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" - integrity sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0= + resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz" tempfile@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-2.0.0.tgz#6b0446856a9b1114d1856ffcbe509cccb0977265" - integrity sha1-awRGhWqbERTRhW/8vlCczLCXcmU= + resolved "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz" dependencies: temp-dir "^1.0.0" uuid "^3.0.1" text-table@0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" through2@^2.0.0: version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz" dependencies: readable-stream "~2.3.6" xtend "~4.0.1" -through@^2.3.6, through@^2.3.8: +through@^2.3.8: version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" timed-out@^4.0.0, timed-out@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" - integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= + resolved "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz" timsort@^0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" - integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= + resolved "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz" tiny-emitter@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" - integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== + resolved "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz" tiny-lr@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/tiny-lr/-/tiny-lr-1.1.1.tgz#9fa547412f238fedb068ee295af8b682c98b2aab" - integrity sha512-44yhA3tsaRoMOjQQ+5v5mVdqef+kH6Qze9jTpqtVufgYjYt08zyZAwNwwVBj3i1rJMnR52IxOW0LK0vBzgAkuA== + resolved "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.1.1.tgz" dependencies: body "^5.1.0" debug "^3.1.0" @@ -6347,42 +5630,36 @@ tiny-lr@^1.1.1: object-assign "^4.1.0" qs "^6.4.0" -tmp@^0.0.33: - version "0.0.33" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== - dependencies: - os-tmpdir "~1.0.2" - to-buffer@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" - integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg== + resolved "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz" to-fast-properties@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" to-object-path@^0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" - integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= + resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz" dependencies: kind-of "^3.0.2" to-regex-range@^2.1.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" - integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz" dependencies: is-number "^3.0.0" repeat-string "^1.6.1" +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" + dependencies: + is-number "^7.0.0" + to-regex@^3.0.1, to-regex@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" - integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz" dependencies: define-property "^2.0.2" extend-shallow "^3.0.2" @@ -6391,121 +5668,111 @@ to-regex@^3.0.1, to-regex@^3.0.2: toidentifier@1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" - integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== + resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz" toml@^2.3.2: version "2.3.6" - resolved "https://registry.yarnpkg.com/toml/-/toml-2.3.6.tgz#25b0866483a9722474895559088b436fd11f861b" - integrity sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ== + resolved "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz" tough-cookie@~2.5.0: version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz" dependencies: psl "^1.1.28" punycode "^2.1.1" tr46@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" - integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= + resolved "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz" dependencies: punycode "^2.1.0" tree-node-cli@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/tree-node-cli/-/tree-node-cli-1.2.5.tgz#afd75437976bbf2cc0c52b9949798e7530e8fd8c" - integrity sha512-Yhv4bfLa3WYdJLS4FkCj0h72duPGMUjC6Ld8eBlT9BA3CfjeQyHNBfgtzQvDrw1OkQva2JSpUyslZHuweCRtGQ== + version "1.4.0" + resolved "https://registry.npmjs.org/tree-node-cli/-/tree-node-cli-1.4.0.tgz" dependencies: - commander "^2.15.1" + commander "^5.0.0" trim-newlines@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" - integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= + resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz" trim-repeated@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/trim-repeated/-/trim-repeated-1.0.0.tgz#e3646a2ea4e891312bf7eace6cfb05380bc01c21" - integrity sha1-42RqLqTokTEr9+rObPsFOAvAHCE= + resolved "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz" dependencies: escape-string-regexp "^1.0.2" truncate-html@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/truncate-html/-/truncate-html-1.0.3.tgz#0166dfc7890626130c2e4174c6b73d4d63993e5f" - integrity sha512-1o1prdRv+iehXcGwn29YgXU17DotHkr+OK3ijVEG7FGMwHNG9RyobXwimw6djDvbIc24rhmz3tjNNvNESjkNkQ== + resolved "https://registry.npmjs.org/truncate-html/-/truncate-html-1.0.3.tgz" dependencies: "@types/cheerio" "^0.22.8" cheerio "0.22.0" -tslib@^1.9.0, tslib@^1.9.3: - version "1.11.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" - integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== +tslib@^1.9.3: + version "1.14.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" tunnel-agent@^0.6.0: version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz" dependencies: safe-buffer "^5.0.1" tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" - resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= + resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz" type-is@~1.6.17, type-is@~1.6.18: version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz" dependencies: media-typer "0.3.0" mime-types "~2.1.24" typedarray@^0.0.6: version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" + +unbox-primitive@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.0.tgz" + dependencies: + function-bind "^1.1.1" + has-bigints "^1.0.0" + has-symbols "^1.0.0" + which-boxed-primitive "^1.0.1" unbzip2-stream@^1.0.9: version "1.4.3" - resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7" - integrity sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg== + resolved "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz" dependencies: buffer "^5.2.1" through "^2.3.8" unicode-canonical-property-names-ecmascript@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" - integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== + resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz" unicode-match-property-ecmascript@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" - integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== + resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz" dependencies: unicode-canonical-property-names-ecmascript "^1.0.4" unicode-property-aliases-ecmascript "^1.0.4" unicode-match-property-value-ecmascript@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" - integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== + resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz" unicode-property-aliases-ecmascript@^1.0.4: version "1.1.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" - integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== + resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz" union-value@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" - integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== + resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz" dependencies: arr-union "^3.1.0" get-value "^2.0.6" @@ -6514,95 +5781,68 @@ union-value@^1.0.0: uniq@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" - integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= + resolved "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz" uniqs@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" - integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI= + resolved "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz" -universalify@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== +universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz" unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= + resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" unquote@~1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" - integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= + resolved "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz" unset-value@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" - integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= + resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz" dependencies: has-value "^0.3.1" isobject "^3.0.0" -upath@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" - integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== - uri-js@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" - integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== + version "4.4.1" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" dependencies: punycode "^2.1.0" urix@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= + resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz" url-parse-lax@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" - integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= + resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz" dependencies: prepend-http "^1.0.1" url-parse-lax@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" - integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= + resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz" dependencies: prepend-http "^2.0.0" -url-parse@^1.4.3: - version "1.4.7" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.7.tgz#a8a83535e8c00a316e403a5db4ac1b9b853ae278" - integrity sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg== - dependencies: - querystringify "^2.1.1" - requires-port "^1.0.0" - url-to-options@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9" - integrity sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k= + resolved "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz" use@^3.1.0: version "3.1.1" - resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" - integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz" -util-deprecate@^1.0.1, util-deprecate@~1.0.1: +util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" util.promisify@~1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" - integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== + resolved "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz" dependencies: define-properties "^1.1.3" es-abstract "^1.17.2" @@ -6611,36 +5851,30 @@ util.promisify@~1.0.0: utils-merge@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= + resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" uuid@^3.0.1, uuid@^3.3.2: version "3.4.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" - integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== + resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz" validate-npm-package-license@^3.0.1: version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" dependencies: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" vary@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= + resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" vendors@^1.0.0: version "1.0.4" - resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e" - integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w== + resolved "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz" verror@1.10.0: version "1.10.0" resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= dependencies: assert-plus "^1.0.0" core-util-is "1.0.2" @@ -6648,97 +5882,98 @@ verror@1.10.0: webidl-conversions@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" - integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz" websocket-driver@>=0.5.1: - version "0.7.3" - resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.3.tgz#a2d4e0d4f4f116f1e6297eba58b05d430100e9f9" - integrity sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg== + version "0.7.4" + resolved "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz" dependencies: - http-parser-js ">=0.4.0 <0.4.11" + http-parser-js ">=0.5.1" safe-buffer ">=5.1.0" websocket-extensions ">=0.1.1" websocket-extensions@>=0.1.1: version "0.1.4" - resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" - integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== + resolved "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz" whatwg-url@^7.0.0: version "7.1.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" - integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz" dependencies: lodash.sortby "^4.7.0" tr46 "^1.0.1" webidl-conversions "^4.0.2" +which-boxed-primitive@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + which@^1.2.9, which@^1.3.1: version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" + dependencies: + isexe "^2.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" dependencies: isexe "^2.0.0" wordwrap@0.0.2: version "0.0.2" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" - integrity sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8= + resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz" worker-rpc@^0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5" - integrity sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg== + resolved "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz" dependencies: microevent.ts "~0.1.1" wrappy@1: version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" xml-js@^1.6.11: version "1.6.11" - resolved "https://registry.yarnpkg.com/xml-js/-/xml-js-1.6.11.tgz#927d2f6947f7f1c19a316dd8eea3614e8b18f8e9" - integrity sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g== + resolved "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz" dependencies: sax "^1.2.4" xmlbuilder@^13.0.0: version "13.0.2" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-13.0.2.tgz#02ae33614b6a047d1c32b5389c1fdacb2bce47a7" - integrity sha512-Eux0i2QdDYKbdbA6AM6xE4m6ZTZr4G4xF9kahI2ukSEMCzwce2eX9WlTI5J3s+NU7hpasFsr8hWIONae7LluAQ== + resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-13.0.2.tgz" xtend@^4.0.0, xtend@~4.0.1: version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" yallist@^2.1.2: version "2.1.2" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= + resolved "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz" yamljs@^0.2.1: version "0.2.10" - resolved "https://registry.yarnpkg.com/yamljs/-/yamljs-0.2.10.tgz#481cc7c25ca73af59f591f0c96e3ce56c757a40f" - integrity sha1-SBzHwlynOvWfWR8MluPOVsdXpA8= + resolved "https://registry.npmjs.org/yamljs/-/yamljs-0.2.10.tgz" dependencies: argparse "^1.0.7" glob "^7.0.5" yargs@^2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-2.3.0.tgz#e900c87250ec5cd080db6009fe3dd63156f1d7fb" - integrity sha1-6QDIclDsXNCA22AJ/j3WMVbx1/s= + resolved "https://registry.npmjs.org/yargs/-/yargs-2.3.0.tgz" dependencies: wordwrap "0.0.2" yauzl@^2.4.2: version "2.10.0" - resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" - integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk= + resolved "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz" dependencies: buffer-crc32 "~0.2.3" fd-slicer "~1.1.0"