From bb99927dd4a7d68ad3e5ed996a3d457d428b9519 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Thu, 8 Dec 2022 16:07:57 +0100 Subject: [PATCH] Provider docs were mistakenly removed in latest ad-hoc release (#709) Noticed in #28218 --- .../apache-airflow-providers/.buildinfo | 4 + .../_modules/index.html | 763 ++ .../core-extensions/auth-backends.rst.txt | 34 + .../core-extensions/connections.rst.txt | 35 + .../core-extensions/extra-links.rst.txt | 34 + .../_sources/core-extensions/index.rst.txt | 29 + .../_sources/core-extensions/logging.rst.txt | 28 + .../core-extensions/secrets-backends.rst.txt | 36 + .../howto/create-update-providers.rst.txt | 395 + .../_sources/index.rst.txt | 423 + .../_sources/installing-from-pypi.rst.txt | 42 + .../_sources/installing-from-sources.rst.txt | 119 + .../operators-and-hooks-ref/apache.rst.txt | 42 + .../operators-and-hooks-ref/aws.rst.txt | 43 + .../operators-and-hooks-ref/azure.rst.txt | 42 + .../operators-and-hooks-ref/google.rst.txt | 83 + .../operators-and-hooks-ref/index.rst.txt | 28 + .../operators-and-hooks-ref/protocol.rst.txt | 38 + .../operators-and-hooks-ref/services.rst.txt | 38 + .../operators-and-hooks-ref/software.rst.txt | 38 + .../_sources/packages-ref.rst.txt | 62 + .../_static/_gen/css/main-custom.min.css | 1 + .../_static/_gen/css/main.min.css | 7 + .../_static/_gen/js/docs.js | 1 + .../_sphinx_javascript_frameworks_compat.js | 134 + .../_static/basic.css | 899 ++ .../_static/check-solid.svg | 4 + .../_static/clipboard.min.js | 7 + .../_static/copy-button.svg | 5 + .../_static/copybutton.css | 94 + .../_static/copybutton.js | 248 + .../_static/copybutton_funcs.js | 73 + .../_static/doctools.js | 156 + .../_static/documentation_options.js | 14 + .../apache-airflow-providers/_static/file.png | Bin 0 -> 286 bytes .../_static/jquery-3.6.0.js | 10881 ++++++++++++++++ .../_static/jquery.js | 2 + .../_static/js/globaltoc.js | 24 + .../_static/language_data.js | 199 + .../_static/minus.png | Bin 0 -> 90 bytes .../_static/pin_32.png | Bin 0 -> 1201 bytes .../apache-airflow-providers/_static/plus.png | Bin 0 -> 90 bytes .../_static/pygments.css | 74 + .../_static/searchtools.js | 566 + .../_static/sphinx_highlight.js | 144 + .../_static/underscore-1.13.1.js | 2042 +++ .../_static/underscore.js | 6 + .../core-extensions/auth-backends.html | 828 ++ .../core-extensions/connections.html | 1282 ++ .../core-extensions/extra-links.html | 960 ++ .../core-extensions/index.html | 908 ++ .../core-extensions/logging.html | 859 ++ .../core-extensions/secrets-backends.html | 852 ++ .../apache-airflow-providers/genindex.html | 785 ++ .../howto/create-update-providers.html | 1180 ++ .../apache-airflow-providers/index.html | 1224 ++ .../installing-from-pypi.html | 817 ++ .../installing-from-sources.html | 1024 ++ .../apache-airflow-providers/objects.inv | Bin 0 -> 1234 bytes .../operators-and-hooks-ref/apache.html | 1245 ++ .../operators-and-hooks-ref/aws.html | 1859 +++ .../operators-and-hooks-ref/azure.html | 1188 ++ .../operators-and-hooks-ref/google.html | 2666 ++++ .../operators-and-hooks-ref/index.html | 1097 ++ .../operators-and-hooks-ref/protocol.html | 1213 ++ .../operators-and-hooks-ref/services.html | 1407 ++ .../operators-and-hooks-ref/software.html | 1872 +++ .../packages-ref.html | 2566 ++++ .../apache-airflow-providers/search.html | 814 ++ .../apache-airflow-providers/searchindex.js | 1 + 70 files changed, 44584 insertions(+) create mode 100644 docs-archive/apache-airflow-providers/.buildinfo create mode 100644 docs-archive/apache-airflow-providers/_modules/index.html create mode 100644 docs-archive/apache-airflow-providers/_sources/core-extensions/auth-backends.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/core-extensions/connections.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/core-extensions/extra-links.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/core-extensions/index.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/core-extensions/logging.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/core-extensions/secrets-backends.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/howto/create-update-providers.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/index.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/installing-from-pypi.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/installing-from-sources.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/apache.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/aws.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/azure.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/google.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/index.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/protocol.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/services.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/software.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_sources/packages-ref.rst.txt create mode 100644 docs-archive/apache-airflow-providers/_static/_gen/css/main-custom.min.css create mode 100644 docs-archive/apache-airflow-providers/_static/_gen/css/main.min.css create mode 100644 docs-archive/apache-airflow-providers/_static/_gen/js/docs.js create mode 100644 docs-archive/apache-airflow-providers/_static/_sphinx_javascript_frameworks_compat.js create mode 100644 docs-archive/apache-airflow-providers/_static/basic.css create mode 100644 docs-archive/apache-airflow-providers/_static/check-solid.svg create mode 100644 docs-archive/apache-airflow-providers/_static/clipboard.min.js create mode 100644 docs-archive/apache-airflow-providers/_static/copy-button.svg create mode 100644 docs-archive/apache-airflow-providers/_static/copybutton.css create mode 100644 docs-archive/apache-airflow-providers/_static/copybutton.js create mode 100644 docs-archive/apache-airflow-providers/_static/copybutton_funcs.js create mode 100644 docs-archive/apache-airflow-providers/_static/doctools.js create mode 100644 docs-archive/apache-airflow-providers/_static/documentation_options.js create mode 100644 docs-archive/apache-airflow-providers/_static/file.png create mode 100644 docs-archive/apache-airflow-providers/_static/jquery-3.6.0.js create mode 100644 docs-archive/apache-airflow-providers/_static/jquery.js create mode 100644 docs-archive/apache-airflow-providers/_static/js/globaltoc.js create mode 100644 docs-archive/apache-airflow-providers/_static/language_data.js create mode 100644 docs-archive/apache-airflow-providers/_static/minus.png create mode 100644 docs-archive/apache-airflow-providers/_static/pin_32.png create mode 100644 docs-archive/apache-airflow-providers/_static/plus.png create mode 100644 docs-archive/apache-airflow-providers/_static/pygments.css create mode 100644 docs-archive/apache-airflow-providers/_static/searchtools.js create mode 100644 docs-archive/apache-airflow-providers/_static/sphinx_highlight.js create mode 100644 docs-archive/apache-airflow-providers/_static/underscore-1.13.1.js create mode 100644 docs-archive/apache-airflow-providers/_static/underscore.js create mode 100644 docs-archive/apache-airflow-providers/core-extensions/auth-backends.html create mode 100644 docs-archive/apache-airflow-providers/core-extensions/connections.html create mode 100644 docs-archive/apache-airflow-providers/core-extensions/extra-links.html create mode 100644 docs-archive/apache-airflow-providers/core-extensions/index.html create mode 100644 docs-archive/apache-airflow-providers/core-extensions/logging.html create mode 100644 docs-archive/apache-airflow-providers/core-extensions/secrets-backends.html create mode 100644 docs-archive/apache-airflow-providers/genindex.html create mode 100644 docs-archive/apache-airflow-providers/howto/create-update-providers.html create mode 100644 docs-archive/apache-airflow-providers/index.html create mode 100644 docs-archive/apache-airflow-providers/installing-from-pypi.html create mode 100644 docs-archive/apache-airflow-providers/installing-from-sources.html create mode 100644 docs-archive/apache-airflow-providers/objects.inv create mode 100644 docs-archive/apache-airflow-providers/operators-and-hooks-ref/apache.html create mode 100644 docs-archive/apache-airflow-providers/operators-and-hooks-ref/aws.html create mode 100644 docs-archive/apache-airflow-providers/operators-and-hooks-ref/azure.html create mode 100644 docs-archive/apache-airflow-providers/operators-and-hooks-ref/google.html create mode 100644 docs-archive/apache-airflow-providers/operators-and-hooks-ref/index.html create mode 100644 docs-archive/apache-airflow-providers/operators-and-hooks-ref/protocol.html create mode 100644 docs-archive/apache-airflow-providers/operators-and-hooks-ref/services.html create mode 100644 docs-archive/apache-airflow-providers/operators-and-hooks-ref/software.html create mode 100644 docs-archive/apache-airflow-providers/packages-ref.html create mode 100644 docs-archive/apache-airflow-providers/search.html create mode 100644 docs-archive/apache-airflow-providers/searchindex.js diff --git a/docs-archive/apache-airflow-providers/.buildinfo b/docs-archive/apache-airflow-providers/.buildinfo new file mode 100644 index 00000000000..88fe84fc194 --- /dev/null +++ b/docs-archive/apache-airflow-providers/.buildinfo @@ -0,0 +1,4 @@ +# Sphinx build info version 1 +# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. +config: 9077078583e37656264e5b70769b0bf7 +tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs-archive/apache-airflow-providers/_modules/index.html b/docs-archive/apache-airflow-providers/_modules/index.html new file mode 100644 index 00000000000..cfd7733eced --- /dev/null +++ b/docs-archive/apache-airflow-providers/_modules/index.html @@ -0,0 +1,763 @@ + + + + + + + + + + + + Overview: module code — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +

All modules for which code is available

+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/_sources/core-extensions/auth-backends.rst.txt b/docs-archive/apache-airflow-providers/_sources/core-extensions/auth-backends.rst.txt new file mode 100644 index 00000000000..325b0c2819a --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/core-extensions/auth-backends.rst.txt @@ -0,0 +1,34 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Auth backends +------------- + +This is a summary of all Apache Airflow Community provided implementations of authentication backends +exposed via community-managed providers. + +Airflow's authentication for web server and API is based on Flask Application Builder's authentication +capabilities. You can read more about those in +`FAB security docs `_. + +You can also +take a look at Auth backends available in the core Airflow in :doc:`apache-airflow:security/webserver` +or see those provided by the community-managed providers: + +.. airflow-auth-backends:: + :tags: None + :header-separator: " diff --git a/docs-archive/apache-airflow-providers/_sources/core-extensions/connections.rst.txt b/docs-archive/apache-airflow-providers/_sources/core-extensions/connections.rst.txt new file mode 100644 index 00000000000..667e0af55f9 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/core-extensions/connections.rst.txt @@ -0,0 +1,35 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Connections +----------- + +This is a summary of all Apache Airflow Community provided implementations of connections +exposed via community-managed providers. + +Airflow can be extended by providers with custom connections. Each provider can define their own custom +connections, that can define their own custom parameters and UI customizations/field behaviours for each +connection, when the connection is managed via Airflow UI. Those connections also define connection types, +that can be used to automatically create Airflow Hooks for specific connection types. + +The connection management is explained in +:doc:`apache-airflow:concepts/connections` and you can also see those +provided by the community-managed providers: + +.. airflow-connections:: + :tags: None + :header-separator: " diff --git a/docs-archive/apache-airflow-providers/_sources/core-extensions/extra-links.rst.txt b/docs-archive/apache-airflow-providers/_sources/core-extensions/extra-links.rst.txt new file mode 100644 index 00000000000..884f5906b27 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/core-extensions/extra-links.rst.txt @@ -0,0 +1,34 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Extra Links +----------- + +This is a summary of all Apache Airflow Community provided implementations of operator extra links +exposed via community-managed providers. + +Airflow can be extended by providers with custom operator extra links. For each operator, you can define +its own extra links that can redirect users to external systems. The extra link buttons +will be available on the task page. + +The operator extra links are explained in +:doc:`apache-airflow:howto/define_extra_link` and here you can also see the extra links +provided by the community-managed providers: + +.. airflow-extra-links:: + :tags: None + :header-separator: " diff --git a/docs-archive/apache-airflow-providers/_sources/core-extensions/index.rst.txt b/docs-archive/apache-airflow-providers/_sources/core-extensions/index.rst.txt new file mode 100644 index 00000000000..63cc7f42f75 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/core-extensions/index.rst.txt @@ -0,0 +1,29 @@ + + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Core Extensions +=============== + +Here is a list of extensions of the core functionalities of ``Apache Airflow``. They can be used to extend +core by implementations of Core features, specific to certain providers. + +.. toctree:: + :maxdepth: 2 + :glob: + + * diff --git a/docs-archive/apache-airflow-providers/_sources/core-extensions/logging.rst.txt b/docs-archive/apache-airflow-providers/_sources/core-extensions/logging.rst.txt new file mode 100644 index 00000000000..ca26263ad5d --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/core-extensions/logging.rst.txt @@ -0,0 +1,28 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Writing logs +------------ + +This is a summary of all Apache Airflow Community provided implementations of writing task logs +exposed via community-managed providers. You can also see logging options available in the core Airflow in +:doc:`apache-airflow:logging-monitoring/logging-tasks` and here you can see those +provided by the community-managed providers: + +.. airflow-logging:: + :tags: None + :header-separator: " diff --git a/docs-archive/apache-airflow-providers/_sources/core-extensions/secrets-backends.rst.txt b/docs-archive/apache-airflow-providers/_sources/core-extensions/secrets-backends.rst.txt new file mode 100644 index 00000000000..26ee3ce882a --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/core-extensions/secrets-backends.rst.txt @@ -0,0 +1,36 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Secret backends +--------------- + +This is a summary of all Apache Airflow Community provided implementations of secret backends +exposed via community-managed providers. + +Airflow has the capability of reading connections, variables and configuration from Secret Backends rather +than from its own Database. While storing such information in Airflow's database is possible, many of the +enterprise customers already have some secret managers storing secrets, and Airflow can tap into those +via providers that implement secrets backends for services Airflow integrates with. + +You can also take a +look at Secret backends available in the core Airflow in +:doc:`apache-airflow:security/secrets/secrets-backend/index` and here you can see the ones +provided by the community-managed providers: + +.. airflow-secrets-backends:: + :tags: None + :header-separator: " diff --git a/docs-archive/apache-airflow-providers/_sources/howto/create-update-providers.rst.txt b/docs-archive/apache-airflow-providers/_sources/howto/create-update-providers.rst.txt new file mode 100644 index 00000000000..173f95c9b50 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/howto/create-update-providers.rst.txt @@ -0,0 +1,395 @@ + + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Community Providers +=================== + +How-to creating a new community provider +---------------------------------------- + +This document gathers the necessary steps to create a new community provider and also guidelines for updating +the existing ones. You should be aware that providers may have distinctions that may not be covered in +this guide. The sequence described was designed to meet the most linear flow possible in order to develop a +new provider. + +Another recommendation that will help you is to look for a provider that works similar to yours. That way it will +help you to set up tests and other dependencies. + +First, you need to set up your local development environment. See `Contribution Quick Start `_ +if you did not set up your local environment yet. We recommend using ``breeze`` to develop locally. This way you +easily be able to have an environment more similar to the one executed by GitHub CI workflow. + + .. code-block:: bash + + ./breeze + +Using the code above you will set up Docker containers. These containers your local code to internal volumes. +In this way, the changes made in your IDE are already applied to the code inside the container and tests can +be carried out quickly. + +In this how-to guide our example provider name will be ````. +When you see this placeholder you must change for your provider name. + + +Initial Code and Unit Tests +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Most likely you have developed a version of the provider using some local customization and now you need to +transfer this code to the Airflow project. Below is described all the initial code structure that +the provider may need. Understand that not all providers will need all the components described in this structure. +If you still have doubts about building your provider, we recommend that you read the initial provider guide and +open a issue on GitHub so the community can help you. + + .. code-block:: bash + + airflow/ + ├── providers// + │ ├── __init__.py + │ ├── example_dags/ + │ │ ├── __init__.py + │ │ └── example_.py + │ ├── hooks/ + │ │ ├── __init__.py + │ │ └── .py + │ ├── operators/ + │ │ ├── __init__.py + │ │ └── .py + │ ├── sensors/ + │ │ ├── __init__.py + │ │ └── .py + │ └── transfers/ + │ ├── __init__.py + │ └── .py + └── tests/providers// + ├── __init__.py + ├── hooks/ + │ ├── __init__.py + │ └── test_.py + ├── operators/ + │ ├── __init__.py + │ ├── test_.py + │ └── test__system.py + ├── sensors/ + │ ├── __init__.py + │ └── test_.py + └── transfers/ + ├── __init__.py + └── test_.py + +Considering that you have already transferred your provider's code to the above structure, it will now be necessary +to create unit tests for each component you created. The example below I have already set up an environment using +breeze and I'll run unit tests for my Hook. + + .. code-block:: bash + + root@fafd8d630e46:/opt/airflow# python -m pytest tests/providers//hook/.py + +Integration tests +^^^^^^^^^^^^^^^^^ + +See `Airflow Integration Tests `_ + + +Documentation +^^^^^^^^^^^^^ + +An important part of building a new provider is the documentation. +Some steps for documentation occurs automatically by ``pre-commit`` see `Installing pre-commit guide `_ + + .. code-block:: bash + + airflow/ + ├── INSTALL + ├── CONTRIBUTING.rst + ├── setup.py + ├── docs/ + │ ├── spelling_wordlist.txt + │ ├── apache-airflow/ + │ │ └── extra-packages-ref.rst + │ ├── integration-logos// + │ │ └── .png + │ └── apache-airflow-providers-/ + │ ├── index.rst + │ ├── commits.rst + │ ├── connections.rst + │ └── operators/ + │ └── .rst + └── providers/ + └── / + ├── provider.yaml + └── CHANGELOG.rst + + +Files automatically updated by pre-commit: + +- ``INSTALL`` in provider + +Files automatically created when the provider is released: + +- ``docs/apache-airflow-providers-/commits.rst`` +- ``/airflow/providers//CHANGELOG`` + +There is a chance that your provider's name is not a common English word. +In this case is necessary to add it to the file ``docs/spelling_wordlist.txt``. This file begin with capitalized words and +lowercase in the second block. + + .. code-block:: bash + + Namespace + Neo4j + Nextdoor + (new line) + Nones + NotFound + Nullable + ... + neo4j + neq + networkUri + (new line) + nginx + nobr + nodash + +Add your provider dependencies into ``provider.yaml`` under ``dependencies`` key.. +If your provider doesn't have any dependency add a empty list. + +In the ``docs/apache-airflow-providers-/connections.rst``: + +- add information how to configure connection for your provider. + +In the ``docs/apache-airflow-providers-/operators/.rst``: + +- add information how to use the Operator. It's important to add examples and additional information if your Operator has extra-parameters. + + .. code-block:: RST + + .. _howto/operator:NewProviderOperator: + + NewProviderOperator + =================== + + Use the :class:`~airflow.providers..operators.NewProviderOperator` to do something + amazing with Airflow! + + Using the Operator + ^^^^^^^^^^^^^^^^^^ + + The NewProviderOperator requires a ``connection_id`` and this other awesome parameter. + You can see an example below: + + .. exampleinclude:: /../../airflow/providers//example_dags/example_.py + :language: python + :start-after: [START howto_operator_] + :end-before: [END howto_operator_] + + +In the ``docs/apache-airflow-providers-new_provider/index.rst``: + +- add all information of the purpose of your provider. It is recommended to check with another provider to help you complete this document as best as possible. + +In the ``airflow/providers//provider.yaml`` add information of your provider: + + .. code-block:: yaml + + package-name: apache-airflow-providers- + name: + description: | + ` `__ + versions: + - 1.0.0 + + integrations: + - integration-name: + external-doc-url: https://www.example.io/ + logo: /integration-logos//.png + how-to-guide: + - /docs/apache-airflow-providers-/operators/.rst + tags: [service] + + operators: + - integration-name: + python-modules: + - airflow.providers..operators. + + hooks: + - integration-name: + python-modules: + - airflow.providers..hooks. + + sensors: + - integration-name: + python-modules: + - airflow.providers..sensors. + + connection-types: + - hook-class-name: airflow.providers..hooks..NewProviderHook + - connection-type: provider-connection-type + + hook-class-names: # deprecated in Airflow 2.2.0 + - airflow.providers..hooks..NewProviderHook + +.. note:: Defining your own connection types + + You only need to add ``connection-types`` in case you have some hooks that have customized UI behavior. However + it is only supported for Airflow 2.2.0. If your providers are also targeting Airflow below 2.2.0 you should + provide the deprecated ``hook-class-names`` array. The ``connection-types`` array allows for optimization + of importing of individual connections and while Airflow 2.2.0 is able to handle both definition, the + ``connection-types`` is recommended. + + For more information see `Custom connection types `_ + + +After changing and creating these files you can build the documentation locally. The two commands below will +serve to accomplish this. The first will build your provider's documentation. The second will ensure that the +main Airflow documentation that involves some steps with the providers is also working. + + .. code-block:: bash + + breeze build-docs --package-filter apache-airflow-providers- + breeze build-docs --package-filter apache-airflow + +Optional provider features +-------------------------- + + .. note:: + + This feature is available in Airflow 2.3+. + +Some providers might provide optional features, which are only available when some packages or libraries +are installed. Such features will typically result in ``ImportErrors`` however those import errors +should be silently ignored rather than pollute the logs of Airflow with false warnings. False warnings +are a very bad pattern, as they tend to turn into blind spots, so avoiding false warnings is encouraged. +However until Airflow 2.3, Airflow had no mechanism to selectively ignore "known" ImportErrors. So +Airflow 2.1 and 2.2 silently ignored all ImportErrors coming from providers with actually lead to +ignoring even important import errors - without giving the clue to Airflow users that there is something +missing in provider dependencies. + +In Airflow 2.3, new exception :class:`~airflow.exceptions.OptionalProviderFeatureException` has been +introduced and Providers can use the exception to signal that the ImportError (or any other error) should +be ignored by Airflow ProvidersManager. However this Exception is only available in Airflow 2.3 so if +providers would like to remain compatible with 2.2, they should continue throwing +the ImportError exception. + +Example code (from Plyvel Hook, part of the Google Provider) explains how such conditional error handling +should be implemented to keep compatibility with 2.2 + + .. code-block:: python + + try: + import plyvel + from plyvel import DB + + from airflow.exceptions import AirflowException + from airflow.hooks.base import BaseHook + + except ImportError as e: + # Plyvel is an optional feature and if imports are missing, it should be silently ignored + # As of Airflow 2.3 and above the operator can throw OptionalProviderFeatureException + try: + from airflow.exceptions import AirflowOptionalProviderFeatureException + except ImportError: + # However, in order to keep backwards-compatibility with Airflow 2.1 and 2.2, if the + # 2.3 exception cannot be imported, the original ImportError should be raised. + # This try/except can be removed when the provider depends on Airflow >= 2.3.0 + raise e + raise AirflowOptionalProviderFeatureException(e) + + +Using Providers with dynamic task mapping +----------------------------------------- + +Airflow 2.3 added `Dynamic Task Mapping `_ +and it added the possibility of assigning a unique key to each task. Which means that when such dynamically +mapped task wants to retrieve a value from XCom (for example in case an extra link should calculated) +it should always check if the ti_key value passed is not None an only then retrieve the XCom value using +XCom.get_value. This allows to keep backwards compatibility with earlier versions of Airflow. + +Typical code to access XCom Value in providers that want to keep backwards compatibility should look similar to +this (note the ``if ti_key is not None:`` condition). + + .. code-block:: python + + def get_link( + self, + operator: BaseOperator, + dttm: datetime | None = None, + ti_key: "TaskInstanceKey" | None = None, + ): + if ti_key is not None: + job_ids = XCom.get_value(key="job_id", ti_key=ti_key) + else: + assert dttm is not None + job_ids = XCom.get_one( + key="job_id", + dag_id=operator.dag.dag_id, + task_id=operator.task_id, + execution_date=dttm, + ) + if not job_ids: + return None + if len(job_ids) < self.index: + return None + job_id = job_ids[self.index] + return BIGQUERY_JOB_DETAILS_LINK_FMT.format(job_id=job_id) + + +Having sensors return XCOM values +--------------------------------- +In Airflow 2.3, sensor operators will be able to return XCOM values. This is achieved by returning an instance of the ``PokeReturnValue`` object at the end of the ``poke()`` method: + + .. code-block:: python + + from airflow.sensors.base import PokeReturnValue + + + class SensorWithXcomValue(BaseSensorOperator): + def poke(self, context: Context) -> Union[bool, PokeReturnValue]: + # ... + is_done = ... # set to true if the sensor should stop poking. + xcom_value = ... # return value of the sensor operator to be pushed to XCOM. + return PokeReturnValue(is_done, xcom_value) + + +To implement a sensor operator that pushes a XCOM value and supports both version 2.3 and pre-2.3, you need to explicitly push the XCOM value if the version is pre-2.3. + + .. code-block:: python + + try: + from airflow.sensors.base import PokeReturnValue + except ImportError: + PokeReturnValue = None + + + class SensorWithXcomValue(BaseSensorOperator): + def poke(self, context: Context) -> bool: + # ... + is_done = ... # set to true if the sensor should stop poking. + xcom_value = ... # return value of the sensor operator to be pushed to XCOM. + if PokeReturnValue is not None: + return PokeReturnValue(is_done, xcom_value) + else: + if is_done: + context["ti"].xcom_push(key="xcom_key", value=xcom_value) + return is_done + + +How-to Update a community provider +---------------------------------- + +See `Provider packages versioning `_ diff --git a/docs-archive/apache-airflow-providers/_sources/index.rst.txt b/docs-archive/apache-airflow-providers/_sources/index.rst.txt new file mode 100644 index 00000000000..e81e03b0460 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/index.rst.txt @@ -0,0 +1,423 @@ + + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Provider packages +----------------- + +Apache Airflow 2 is built in modular way. The "Core" of Apache Airflow provides core scheduler +functionality which allow you to write some basic tasks, but the capabilities of Apache Airflow can +be extended by installing additional packages, called ``providers``. + +Providers can contain operators, hooks, sensor, and transfer operators to communicate with a +multitude of external systems, but they can also extend Airflow core with new capabilities. + +You can install those provider packages separately in order to interface with a given service. The providers +for ``Apache Airflow`` are designed in the way that you can write your own providers easily. The +``Apache Airflow Community`` develops and maintain more than 60 provider packages, but you are free to +develop your own providers - the providers you build have exactly the same capability as the providers +written by the community, so you can release and share those providers with others. + +The full list of community managed providers is available at +`Providers Index `_. + +You can also see index of all community provider's operators and hooks in +:doc:`/operators-and-hooks-ref/index` + +Extending Airflow core functionality +------------------------------------ + +Providers give you the capability of extending core Airflow with extra capabilities. The Core airflow +provides basic and solid functionality of scheduling, the providers extend its capabilities. Here we +describe all the custom capabilities. + +Airflow automatically discovers which providers add those additional capabilities and, once you install +provider package and re-start Airflow, those become automatically available to Airflow Users. + +The summary of the core functionalities that can be extended are available in +:doc:`/core-extensions/index`. + +Auth backends +''''''''''''' + +The providers can add custom authentication backends, that allow you to configure the way how your +web server authenticates your users, integrating it with public or private authentication services. + +You can see all the authentication backends available via community-managed providers in +:doc:`/core-extensions/auth-backends` + +Custom connections +'''''''''''''''''' + +The providers can add custom connection types, extending connection form and handling custom form field +behaviour for the connections defined by the provider. + +You can see all custom connections available via community-managed providers in +:doc:`/core-extensions/connections`. + +Extra links +''''''''''' + +The providers can add extra custom links to operators delivered by the provider. Those will be visible in +task details view of the task. + +You can see all the extra links available via community-managed providers in +:doc:`/core-extensions/extra-links`. + + +Logging +''''''' + +The providers can add additional task logging capabilities. By default ``Apache Airflow`` saves logs for +tasks locally and make them available to Airflow UI via internal http server, however via providers +you can add extra logging capabilities, where Airflow Logs can be written to a remote service and +retrieved from those services. + +You can see all task loggers available via community-managed providers in +:doc:`/core-extensions/logging`. + + +Secret backends +''''''''''''''' + +Airflow has the capability of reading connections, variables and configuration from Secret Backends rather +than from its own Database. + +You can see all secret backends available via community-managed providers in +:doc:`/core-extensions/secrets-backends`. + + +Installing and upgrading providers +---------------------------------- + +Separate provider packages give the possibilities that were not available in 1.10: + +1. You can upgrade to latest version of particular providers without the need of Apache Airflow core upgrade. + +2. You can downgrade to previous version of particular provider in case the new version introduces + some problems, without impacting the main Apache Airflow core package. + +3. You can release and upgrade/downgrade provider packages incrementally, independent from each other. This + means that you can incrementally validate each of the provider package update in your environment, + following the usual tests you have in your environment. + + +Types of providers +------------------ + +Providers have the same capacity - no matter if they are provided by the community or if they are +third-party providers. This chapter explains how community managed providers are versioned and released +and how you can create your own providers. + +Community maintained providers +'''''''''''''''''''''''''''''' + +From the point of view of the community, Airflow is delivered in multiple, separate packages. +The core of Airflow scheduling system is delivered as ``apache-airflow`` package and there are more than +60 provider packages which can be installed separately as so called ``Airflow Provider packages``. +Those packages are available as ``apache-airflow-providers`` packages - for example there is an +``apache-airflow-providers-amazon`` or ``apache-airflow-providers-google`` package). + +Community maintained providers are released and versioned separately from the Airflow releases. We are +following the `Semver `_ versioning scheme for the packages. Some versions of the +provider packages might depend on particular versions of Airflow, but the general approach we have is that +unless there is a good reason, new version of providers should work with recent versions of Airflow 2.x. +Details will vary per-provider and if there is a limitation for particular version of particular provider, +constraining the Airflow version used, it will be included as limitation of dependencies in the provider +package. + +Each community provider has corresponding extra which can be used when installing airflow to install the +provider together with ``Apache Airflow`` - for example you can install airflow with those extras: +``apache-airflow[google,amazon]`` (with correct constraints -see :doc:`apache-airflow:installation/index`) and you +will install the appropriate versions of the ``apache-airflow-providers-amazon`` and +``apache-airflow-providers-google`` packages together with ``Apache Airflow``. + +Some of the community providers have cross-provider dependencies as well. Those are not required +dependencies, they might simply enable certain features (for example transfer operators often create +dependency between different providers. Again, the general approach here is that the providers are backwards +compatible, including cross-dependencies. Any kind of breaking changes and requirements on particular versions of other +provider packages are automatically documented in the release notes of every provider. + +.. note:: + For Airflow 1.10 We also provided ``apache-airflow-backport-providers`` packages that could be installed + with those versions Those were the same providers as for 2.0 but automatically back-ported to work for + Airflow 1.10. The last release of backport providers was done on March 17, 2021 and the backport + providers will no longer be released, since Airflow 1.10 has reached End-Of-Life as of June 17, 2021. + +If you want to contribute to ``Apache Airflow``, you can see how to build and extend community +managed providers in :doc:`howto/create-update-providers`. + +.. _providers:community-maintained-providers: + +Custom provider packages +'''''''''''''''''''''''' + +You can develop and release your own providers. Your custom operators, hooks, sensors, transfer operators +can be packaged together in a standard airflow package and installed using the same mechanisms. +Moreover they can also use the same mechanisms to extend the Airflow Core with auth backends, +custom connections, logging, secret backends and extra operator links as described in the previous chapter. + +How to create your own provider +------------------------------- + +As mentioned in the `Providers `_ +documentation, custom providers can extend Airflow core - they can add extra links to operators as well +as custom connections. You can use build your own providers and install them as packages if you would like +to use the mechanism for your own, custom providers. + +Adding a provider to Airflow is just a matter of building a Python package and adding the right meta-data to +the package. We are using standard mechanism of python to define +`entry points `_ . Your package +needs to define appropriate entry-point ``apache_airflow_provider`` which has to point to a callable +implemented by your package and return a dictionary containing the list of discoverable capabilities +of your package. The dictionary has to follow the +`json-schema specification `_. + +Most of the schema provides extension point for the documentation (which you might want to also use for +your own purpose) but the important fields from the extensibility point of view are those: + +Displaying package information in CLI/API: + +* ``package-name`` - Name of the package for the provider. + +* ``name`` - Human-friendly name of the provider. + +* ``description`` - Additional description of the provider. + +* ``version`` - List of versions of the package (in reverse-chronological order). The first version in the + list is the current package version. It is taken from the version of package installed, not from the + provider_info information. + +Exposing customized functionality to the Airflow's core: + +* ``extra-links`` - this field should contain the list of all operator class names that are adding extra links + capability. See :doc:`apache-airflow:howto/define_extra_link` for description of how to add extra link + capability to the operators of yours. + +* ``connection-types`` - this field should contain the list of all connection types together with hook + class names implementing those custom connection types (providing custom extra fields and + custom field behaviour). This field is available as of Airflow 2.2.0 and it replaces deprecated + ``hook-class-names``. See :doc:`apache-airflow:howto/connection` for more details + +* ``hook-class-names`` (deprecated) - this field should contain the list of all hook class names that provide + custom connection types with custom extra fields and field behaviour. The ``hook-class-names`` array + is deprecated as of Airflow 2.2.0 (for optimization reasons) and will be removed in Airflow 3. If your + providers are targeting Airflow 2.2.0+ you do not have to include the ``hook-class-names`` array, if + you want to also target earlier versions of Airflow 2, you should include both ``hook-class-names`` and + ``connection-types`` arrays. See :doc:`apache-airflow:howto/connection` for more details. + + +When your providers are installed you can query the installed providers and their capabilities with the +``airflow providers`` command. This way you can verify if your providers are properly recognized and whether +they define the extensions properly. See :doc:`apache-airflow:cli-and-env-variables-ref` for details of available CLI +sub-commands. + +When you write your own provider, consider following the +`Naming conventions for provider packages `_ + + +FAQ for Airflow and Providers +----------------------------- + +Upgrading Airflow 2.0 and Providers +''''''''''''''''''''''''''''''''''' + +**When upgrading to a new Airflow version such as 2.0, but possibly 2.0.1 and beyond, is the best practice +to also upgrade provider packages at the same time?** + +It depends on your use case. If you have automated or semi-automated verification of your installation, +that you can run a new version of Airflow including all provider packages, then definitely go for it. +If you rely more on manual testing, it is advised that you upgrade in stages. Depending on your choice +you can either upgrade all used provider packages first, and then upgrade Airflow Core or the other way +round. The first approach - when you first upgrade all providers is probably safer, as you can do it +incrementally, step-by-step replacing provider by provider in your environment. + +Customizing Provider Packages +''''''''''''''''''''''''''''' + +**I have an older version of my provider package which we have lightly customized and is working +fine with my MSSQL installation. I am upgrading my Airflow version. Do I need to upgrade my provider, +or can I keep it as it is?** + +It depends on the scope of customization. There is no need to upgrade the provider packages to later +versions unless you want to upgrade to Airflow version that introduces backwards-incompatible changes. +Generally speaking, with Airflow 2 we are following the `Semver `_ approach where +we will introduce backwards-incompatible changes in Major releases, so all your modifications (as long +as you have not used internal Airflow classes) should work for All Airflow 2.* versions. + + +Creating your own providers +''''''''''''''''''''''''''' + +**When I write my own provider, do I need to do anything special to make it available to others?** + +You do not need to do anything special besides creating the ``apache_airflow_provider`` entry point +returning properly formatted meta-data - dictionary with ``extra-links`` and ``connection-types`` fields +(and deprecated ``hook-class-names`` field if you are also targeting versions of Airflow before 2.2.0). + +Anyone who runs airflow in an environment that has your Python package installed will be able to use the +package as a provider package. + +**What do I need to do to turn a package into a provider?** + +You need to do the following to turn an existing Python package into a provider (see below for examples): + +* Add the ``apache_airflow_provider`` entry point in the ``setup.cfg`` - this tells airflow where to get + the required provider metadata +* Create the function that you refer to in the first step as part of your package: this functions returns a + dictionary that contains all meta-data about your provider package +* If you want Airflow to link to documentation of your Provider in the providers page, make sure + to add "project-url/documentation" `metadata `_ to your package. + This will also add link to your documentation in PyPI. +* note that the dictionary should be compliant with ``airflow/provider_info.schema.json`` JSON-schema + specification. The community-managed providers have more fields there that are used to build + documentation, but the requirement for runtime information only contains several fields which are defined + in the schema: + +.. exampleinclude:: /../../airflow/provider_info.schema.json + :language: json + +Example ``setup.cfg``: + +.. code-block:: cfg + + [options.entry_points] + # the function get_provider_info is defined in myproviderpackage.somemodule + apache_airflow_provider= + provider_info=myproviderpackage.somemodule:get_provider_info + +Example ``myproviderpackage/somemodule.py``: + +.. code-block:: Python + + def get_provider_info(): + return { + "package-name": "my-package-name", + "name": "name", + "description": "a description", + "hook-class-names": [ + "myproviderpackage.hooks.source.SourceHook", + ], + } + +**How do provider packages work under the hood?** + +When running Airflow with your provider package, there will be (at least) three components to your airflow installation: + +* The installation itself (for example, a ``venv`` where you installed airflow with ``pip install apache-airflow``) + together with the related files (e.g. ``dags`` folder) +* The ``apache-airflow`` package +* Your own ``myproviderpackage`` package that is independent of ``apache-airflow`` or your airflow installation, which + can be a local Python package (that you install via ``pip install -e /path/to/my-package``), a normal pip package + (``pip install myproviderpackage``), or any other type of Python package + +In the ``myproviderpackage`` package you need to add the entry point and provide the appropriate metadata as described above. +If you have done that, airflow does the following at runtime: + +* Loop through ALL packages installed in your environment / ``venv`` +* For each package, if the package's ``setup.cfg`` has a section ``[options.entry_points]``, and if that section has a value + for ``apache_airflow_provider``, then get the value for ``provider_info``, e.g. ``myproviderpackage.somemodule:get_provider_info`` +* That value works like an import statement: ``myproviderpackage.somemodule:get_provider_info`` translates to something like + ``from myproviderpackage.somemodule import get_provider_info``, and the ``get_provider_info`` that is being imported should be a + callable, i.e. a function +* This function should return a dictionary with metadata +* If you have custom connection types as part of your package, that metadata will including a field called ``hook-class-names`` + which should be a list of strings of your custom hooks - those strings should also be in an import-like format, e.g. + ``myproviderpackage.hooks.source.SourceHook`` means that there is a class ``SourceHook`` in ``myproviderpackage/hooks/source.py`` + - airflow then imports these hooks and looks for the functions ``get_ui_field_behaviour`` and ``get_connection_form_widgets`` + (both optional) as well as the attributes ``conn_type`` and ``hook_name`` to create the custom connection type in the airflow UI + +**Should I name my provider specifically or should it be created in ``airflow.providers`` package?** + +We have quite a number (>60) of providers managed by the community and we are going to maintain them +together with Apache Airflow. All those providers have well-defined structured and follow the +naming conventions we defined and they are all in ``airflow.providers`` package. If your intention is +to contribute your provider, then you should follow those conventions and make a PR to Apache Airflow +to contribute to it. But you are free to use any package name as long as there are no conflicts with other +names, so preferably choose package that is in your "domain". + +**Is there a convention for a connection id and type?** + +Very good question. Glad that you asked. We usually follow the convention ``_default`` for connection +id and just ```` for connection type. Few examples: + +* ``google_cloud_default`` id and ``google_cloud_platform`` type +* ``aws_default`` id and ``aws`` type + +You should follow this convention. It is important, to use unique names for connection type, +so it should be unique for your provider. If two providers try to add connection with the same type +only one of them will succeed. + +**Can I contribute my own provider to Apache Airflow?** + +Of course, but it's better to check at developer's mailing list whether such contribution will be accepted by +the Community, before investing time to make the provider compliant with community requirements. +The Community only accepts providers that are generic enough, are well documented, fully covered by tests +and with capabilities of being tested by people in the community. So we might not always be in the +position to accept such contributions. + + +After you think that your provider matches the expected values above, you can read +:doc:`howto/create-update-providers` to check all prerequisites for a new +community Provider and discuss it at the `Devlist `_. + +However, in case you have your own, specific provider, which you can maintain on your own or by your +team, you are free to publish the providers in whatever form you find appropriate. The custom and +community-managed providers have exactly the same capabilities. + +**Can I advertise my own provider to Apache Airflow users and share it with others as package in PyPI?** + +Absolutely! We have an `Ecosystem `_ area on our website where +we share non-community managed extensions and work for Airflow. Feel free to make a PR to the page and +add we will evaluate and merge it when we see that such provider can be useful for the community of +Airflow users. + +**Can I charge for the use of my provider?** + +This is something that is outside of our control and domain. As an Apache project, we are +commercial-friendly and there are many businesses built around Apache Airflow and many other +Apache projects. As a community, we provide all the software for free and this will never +change. What 3rd-party developers are doing is not under control of Apache Airflow community. + +Using Backport Providers in Airflow 1.10 +'''''''''''''''''''''''''''''''''''''''' + +**I have an Airflow version (1.10.12) running and it is stable. However, because of a Cloud provider change, +I would like to upgrade the provider package. If I don't need to upgrade the Airflow version anymore, +how do I know that this provider version is compatible with my Airflow version?** + +We have Backport Providers are compatible with 1.10 but they stopped being released on +March 17, 2021. Since then, no new changes to providers for Airflow 2.0 are going to be +released as backport packages. It's the highest time to upgrade to Airflow 2.0. + +When it comes to compatibility of providers with different Airflow 2 versions, each +provider package will keep its own dependencies, and while we expect those providers to be generally +backwards-compatible, particular versions of particular providers might introduce dependencies on +specific Airflow versions. + + +.. toctree:: + :hidden: + :maxdepth: 2 + + Providers + Packages + Operators and hooks + Core Extensions + Update community providers + Installing from sources + Installing from PyPI diff --git a/docs-archive/apache-airflow-providers/_sources/installing-from-pypi.rst.txt b/docs-archive/apache-airflow-providers/_sources/installing-from-pypi.rst.txt new file mode 100644 index 00000000000..227398d6111 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/installing-from-pypi.rst.txt @@ -0,0 +1,42 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Installation from PyPI +---------------------- + +This page describes installations using the ``apache-airflow-providers`` package `published in +PyPI `__. + +Installation tools +'''''''''''''''''' + +Only ``pip`` installation is currently officially supported. + +While there are some successes with using other tools like `poetry `_ or +`pip-tools `_, they do not share the same workflow as +``pip`` - especially when it comes to constraint vs. requirements management. +Installing via ``Poetry`` or ``pip-tools`` is not currently supported. If you wish to install airflow +using those tools you should use the constraints and convert them to appropriate +format and workflow that your tool requires. + +Typical command to install airflow from PyPI looks like below (you need to use the right Airflow version and Python version): + +.. code-block:: + + pip install "apache-airflow-providers-celery" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.3.0/constraints-3.7.txt" + +This is an example, see :doc:`apache-airflow:installation/installing-from-pypi` for more examples, including how to upgrade the providers. diff --git a/docs-archive/apache-airflow-providers/_sources/installing-from-sources.rst.txt b/docs-archive/apache-airflow-providers/_sources/installing-from-sources.rst.txt new file mode 100644 index 00000000000..a4834e344d3 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/installing-from-sources.rst.txt @@ -0,0 +1,119 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + + +Installing Providers from Sources +--------------------------------- + +Released packages +''''''''''''''''' + +.. jinja:: official_download_page + + .. raw:: html + + + + + You can also install ``Apache Airflow Providers`` - as most Python packages - via :doc:`PyPI `. + You can choose different version of Airflow by selecting different version from the drop-down at + the top-left of the page. + + +Release integrity +''''''''''''''''' + +`PGP signatures KEYS `_ + +It is essential that you verify the integrity of the downloaded files using the PGP or SHA signatures. +The PGP signatures can be verified using GPG or PGP. Please download the KEYS as well as the asc +signature files for relevant distribution. It is recommended to get these files from the +main distribution directory and not from the mirrors. + +.. code-block:: bash + + gpg -i KEYS + +or + +.. code-block:: bash + + pgpk -a KEYS + +or + +.. code-block:: bash + + pgp -ka KEYS + +To verify the binaries/sources you can download the relevant asc files for it from main +distribution directory and follow the below guide. + +.. code-block:: bash + + gpg --verify apache-airflow-providers-********.asc apache-airflow-providers-********* + +or + +.. code-block:: bash + + pgpv apache-airflow-providers-********.asc + +or + +.. code-block:: bash + + pgp apache-airflow-providers-********.asc + +Example: + +.. code-block:: console + :substitutions: + + $ gpg --verify apache-airflow-providers-airbyte-1.0.0-source.tar.gz.asc apache-airflow-providers-airbyte-1.0.0-source.tar.gz + gpg: Signature made Sat 11 Sep 12:49:54 2021 BST + gpg: using RSA key CDE15C6E4D3A8EC4ECF4BA4B6674E08AD7DE406F + gpg: issuer "kaxilnaik@apache.org" + gpg: Good signature from "Kaxil Naik " [unknown] + gpg: aka "Kaxil Naik " [unknown] + gpg: WARNING: The key's User ID is not certified with a trusted signature! + gpg: There is no indication that the signature belongs to the owner. + Primary key fingerprint: CDE1 5C6E 4D3A 8EC4 ECF4 BA4B 6674 E08A D7DE 406F + +The "Good signature from ..." is indication that the signatures are correct. +Do not worry about the "not certified with a trusted signature" warning. Most of the certificates used +by release managers are self signed, that's why you get this warning. By importing the server in the +previous step and importing it via ID from ``KEYS`` page, you know that this is a valid Key already. + +For SHA512 sum check, download the relevant ``sha512`` and run the following: + +.. code-block:: bash + + shasum -a 512 apache-airflow-providers-******** | diff - apache-airflow-providers-********.sha512 + +The ``SHASUM`` of the file should match the one provided in ``.sha512`` file. + +Example: + +.. code-block:: bash + :substitutions: + + shasum -a 512 apache-airflow-providers-airbyte-1.0.0-source.tar.gz | diff - apache-airflow-providers-airbyte-1.0.0-source.tar.gz.sha512 diff --git a/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/apache.rst.txt b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/apache.rst.txt new file mode 100644 index 00000000000..96c87d152e4 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/apache.rst.txt @@ -0,0 +1,42 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +ASF: Apache Software Foundation +=============================== + +Airflow supports various software created by `Apache Software Foundation `__. + +Software +-------- + +These integrations allow you to perform various operations within software developed by Apache Software +Foundation. + +.. operators-hooks-ref:: + :tags: apache + :header-separator: " + + +Transfers +--------- + +These integrations allow you to copy data from/to software developed by Apache Software +Foundation. + +.. transfers-ref:: + :tags: apache + :header-separator: " diff --git a/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/aws.rst.txt b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/aws.rst.txt new file mode 100644 index 00000000000..0b39ea55768 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/aws.rst.txt @@ -0,0 +1,43 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +.. _AWS: + +AWS: Amazon Web Services +------------------------ + +Airflow has support for `Amazon Web Services `__. + +All hooks are based on :mod:`airflow.providers.amazon.aws.hooks.base_aws`. + +Services +'''''''' + +These integrations allow you to perform various operations within the Amazon Web Services. + +.. operators-hooks-ref:: + :tags: aws + :header-separator: " + +Transfers +''''''''' + +These integrations allow you to copy data from/to Amazon Web Services. + +.. transfers-ref:: + :tags: aws + :header-separator: " diff --git a/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/azure.rst.txt b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/azure.rst.txt new file mode 100644 index 00000000000..7e4b830c8fa --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/azure.rst.txt @@ -0,0 +1,42 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Azure: Microsoft Azure +---------------------- + +Airflow has limited support for `Microsoft Azure `__. + +Some hooks are based on :mod:`airflow.providers.microsoft.azure.hooks.base_azure` +which authenticate Azure's Python SDK Clients. + +Services +'''''''' + +These integrations allow you to perform various operations within the Microsoft Azure. + +.. operators-hooks-ref:: + :tags: azure + :header-separator: " + +Transfers +''''''''' + +These integrations allow you to copy data from/to Microsoft Azure. + +.. transfers-ref:: + :tags: azure + :header-separator: " diff --git a/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/google.rst.txt b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/google.rst.txt new file mode 100644 index 00000000000..762ea0e5d65 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/google.rst.txt @@ -0,0 +1,83 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +.. _Google: + +Google +------ + +Airflow has support for the `Google service `__. + +All hooks are based on :class:`airflow.providers.google.common.hooks.base_google.GoogleBaseHook`. Some integration +also use :mod:`airflow.providers.google.common.hooks.discovery_api`. + +See the :doc:`Google Cloud connection type ` documentation to +configure connections to Google services. + +.. _GCP: + +Google Cloud +'''''''''''' + +Airflow has extensive support for the `Google Cloud `__. + +.. note:: + You can learn how to use Google Cloud integrations by analyzing the + `source code of the Google Cloud example DAGs + `_ + + +Services +"""""""" + +These integrations allow you to perform various operations within the Google Cloud. + +.. operators-hooks-ref:: + :tags: gcp + :header-separator: ! + + +Transfers +""""""""" + +These integrations allow you to copy data from/to Google Cloud. + +.. transfers-ref:: + :tags: gcp + :header-separator: ! + + +Google Marketing Platform +''''''''''''''''''''''''' + +.. note:: + You can learn how to use Google Marketing Platform integrations by analyzing the + `source code `_ + of the example DAGs. + + +.. operators-hooks-ref:: + :tags: gmp + :header-separator: ! + + +Other Google operators and hooks +'''''''''''''''''''''''''''''''' + +.. operators-hooks-ref:: + :tags: google + :header-separator: ! diff --git a/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/index.rst.txt b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/index.rst.txt new file mode 100644 index 00000000000..5d98392e6ef --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/index.rst.txt @@ -0,0 +1,28 @@ + + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Operators and Hooks Reference +============================= + +Here is a list of operators and hooks that are released independently of the Airflow core. A list of core operators is available in the documentation for ``apache-airflow``: :doc:`Core Operators and Hooks Reference `. + +.. toctree:: + :maxdepth: 3 + :glob: + + * diff --git a/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/protocol.rst.txt b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/protocol.rst.txt new file mode 100644 index 00000000000..7908f2aaacc --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/protocol.rst.txt @@ -0,0 +1,38 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Protocol integrations +--------------------- + +Protocols +''''''''' + +These integrations allow you to perform various operations within various services using standardized +communication protocols or interface. + +.. operators-hooks-ref:: + :tags: protocol + :header-separator: " + +Transfers +''''''''' + +These integrations allow you to copy data. + +.. transfers-ref:: + :tags: protocol + :header-separator: " diff --git a/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/services.rst.txt b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/services.rst.txt new file mode 100644 index 00000000000..e492c3d4971 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/services.rst.txt @@ -0,0 +1,38 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Services +-------- + +Services +'''''''' + +These integrations allow you to perform various operations within various services. + +.. operators-hooks-ref:: + :tags: service + :header-separator: " + + +Transfers +''''''''' + +These integrations allow you to perform various operations within various services. + +.. transfers-ref:: + :tags: service + :header-separator: " diff --git a/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/software.rst.txt b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/software.rst.txt new file mode 100644 index 00000000000..ae4cd53c869 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/operators-and-hooks-ref/software.rst.txt @@ -0,0 +1,38 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Software integrations +--------------------- + +Software +'''''''' + +These integrations allow you to perform various operations using various software. + +.. operators-hooks-ref:: + :tags: software + :header-separator: " + + +Transfers +''''''''' + +These integrations allow you to copy data. + +.. transfers-ref:: + :tags: software + :header-separator: " diff --git a/docs-archive/apache-airflow-providers/_sources/packages-ref.rst.txt b/docs-archive/apache-airflow-providers/_sources/packages-ref.rst.txt new file mode 100644 index 00000000000..b818acd1ed4 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_sources/packages-ref.rst.txt @@ -0,0 +1,62 @@ + .. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + .. http://www.apache.org/licenses/LICENSE-2.0 + + .. Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +Providers packages reference +'''''''''''''''''''''''''''' + +Here's the list of the provider packages and what they enable: + + +.. contents:: :local: + +.. jinja:: providers_ctx + + {% for package in providers %} + + .. provider:: {{ package["package-name"] }} + + ``{{ package["package-name"] }}`` + {{ "=" * (package["package-name"]|length + 4) }} + + {% if package["description"] %} + {{ package["description"] }} + {% endif %} + + {% if package["versions"] %} + To install, run: + + .. code-block:: bash + + pip install '{{ package["package-name"] }}' + + :Available versions: {% for version in package["versions"] %}``{{ version }}``{% if not loop.last %}, {% else %}.{% endif %}{%- endfor %} + + :Reference: `PyPI Repository `__ + {% if package["python-module"] %} + :Python API Reference: :mod:`{{ package["python-module"] }}` + {% endif %} + {% else %} + + .. warning:: + + This package has not yet been released. + + {% if package["python-module"] %} + :Python API Reference: :mod:`{{ package["python-module"] }}` + {% endif %} + {% endif %} + {% endfor %} diff --git a/docs-archive/apache-airflow-providers/_static/_gen/css/main-custom.min.css b/docs-archive/apache-airflow-providers/_static/_gen/css/main-custom.min.css new file mode 100644 index 00000000000..f3ff099c333 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/_gen/css/main-custom.min.css @@ -0,0 +1 @@ +@charset "UTF-8";@import "https://fonts.googleapis.com/css?family=Rubik:500&display=swap";@import "https://fonts.googleapis.com/css?family=Roboto:400,400i,500,700&display=swap";@import "https://fonts.googleapis.com/css?family=Roboto+Mono:400,700&display=swap";.header__large--cerulean-blue{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#017cee}.header__large--shamrock{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#00ad46}.header__large--bright-sky-blue{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#0cb6ff}.header__large--melon{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#ff7557}.header__large--vermillion{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#e43921}.header__large--aqua{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#11e1ee}.header__large--shamrock-green{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#04d659}.header__large--aqua-blue{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#00c7d4}.header__large--white{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#fff}.header__large--brownish-grey{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#707070}.header__large--very-light-pink{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#cbcbcb}.header__large--slate-grey{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#636365}.header__large--greyish-brown,#header-canvas .text-area--header{font-family:rubik,sans-serif;font-weight:500;font-size:72px;line-height:1.17;color:#51504f}.header__medium--cerulean-blue{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#017cee}.header__medium--shamrock{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#00ad46}.header__medium--bright-sky-blue{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#0cb6ff}.header__medium--melon{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#ff7557}.header__medium--vermillion{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#e43921}.header__medium--aqua{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#11e1ee}.header__medium--shamrock-green{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#04d659}.header__medium--aqua-blue{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#00c7d4}.header__medium--white{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#fff}.header__medium--brownish-grey{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#707070}.header__medium--very-light-pink{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#cbcbcb}.header__medium--slate-grey{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#636365}.header__medium--greyish-brown,.page-header{font-family:rubik,sans-serif;font-weight:500;font-size:60px;line-height:1.23;color:#51504f}.header__small--cerulean-blue{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#017cee}.header__small--shamrock{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#00ad46}.header__small--bright-sky-blue{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#0cb6ff}.header__small--melon{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#ff7557}.header__small--vermillion{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#e43921}.header__small--aqua{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#11e1ee}.header__small--shamrock-green{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#04d659}.header__small--aqua-blue{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#00c7d4}.header__small--white{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#fff}.header__small--brownish-grey{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#707070}.header__small--very-light-pink{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#cbcbcb}.header__small--slate-grey{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#636365}.header__small--greyish-brown,.community--committers-header,.community--header-join,.blogpost-content__metadata--title{font-family:rubik,sans-serif;font-weight:500;font-size:48px;line-height:1.25;color:#51504f}.header__xsmall--cerulean-blue{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#017cee}.header__xsmall--shamrock{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#00ad46}.header__xsmall--bright-sky-blue{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#0cb6ff}.header__xsmall--melon{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#ff7557}.header__xsmall--vermillion{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#e43921}.header__xsmall--aqua{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#11e1ee}.header__xsmall--shamrock-green{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#04d659}.header__xsmall--aqua-blue{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#00c7d4}.header__xsmall--white{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#fff}.header__xsmall--brownish-grey{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#707070}.header__xsmall--very-light-pink{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#cbcbcb}.header__xsmall--slate-grey{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#636365}.header__xsmall--greyish-brown,.text-with-icon-item--header,.feature-item--header{font-family:rubik,sans-serif;font-weight:500;font-size:36px;line-height:1.22;color:#51504f}.subtitle__large--cerulean-blue,.box-event__meetup--location{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#017cee}.subtitle__large--shamrock{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#00ad46}.subtitle__large--bright-sky-blue{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#0cb6ff}.subtitle__large--melon{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#ff7557}.subtitle__large--vermillion{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#e43921}.subtitle__large--aqua{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#11e1ee}.subtitle__large--shamrock-green{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#04d659}.subtitle__large--aqua-blue{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#00c7d4}.subtitle__large--white{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#fff}.subtitle__large--brownish-grey,#header-canvas .text-area--subheader,.blogpost-content__metadata--description,.page-subtitle,.quote--text{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#707070}.subtitle__large--very-light-pink{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#cbcbcb}.subtitle__large--slate-grey{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#636365}.subtitle__large--greyish-brown,.markdown-content h1,.markdown-content h2,.markdown-content h3,.markdown-content h4,.markdown-content h5,.box-event__blogpost--header{font-family:roboto,sans-serif;font-weight:500;font-size:24px;line-height:1.5;color:#51504f}.subtitle__medium--cerulean-blue,ol.counter-blue li::before{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#017cee}.subtitle__medium--shamrock{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#00ad46}.subtitle__medium--bright-sky-blue{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#0cb6ff}.subtitle__medium--melon{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#ff7557}.subtitle__medium--vermillion{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#e43921}.subtitle__medium--aqua{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#11e1ee}.subtitle__medium--shamrock-green{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#04d659}.subtitle__medium--aqua-blue{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#00c7d4}.subtitle__medium--white{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#fff}.subtitle__medium--brownish-grey,.box-event__integration--name{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#707070}.subtitle__medium--very-light-pink{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#cbcbcb}.subtitle__medium--slate-grey{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#636365}.subtitle__medium--greyish-brown,.roadmap .td-sidebar nav>ul>li>a{font-family:roboto,sans-serif;font-weight:500;font-size:18px;line-height:1.33;color:#51504f}.bodytext__medium--cerulean-blue,.blogpost-content__metadata--author,.new-entry--link,.tag,.box-event__meetup--next-meetup,.box-event__blogpost--author{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#017cee}.bodytext__medium--shamrock{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#00ad46}.bodytext__medium--bright-sky-blue{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#0cb6ff}.bodytext__medium--melon{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#ff7557}.bodytext__medium--vermillion{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#e43921}.bodytext__medium--aqua{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#11e1ee}.bodytext__medium--shamrock-green{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#04d659}.bodytext__medium--aqua-blue{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#00c7d4}.bodytext__medium--white,footer .footer-section span{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#fff}.bodytext__medium--brownish-grey,.sidebar__version-selector a,.roadmap .td-sidebar li>a,.roadmap .breadcrumb-item a,.install--description,.blogpost-content__metadata--date,.video-list__item .video-list__item--title,.text-with-icon-item--text,.feature-item--text,.markdown-content p,.markdown-content span,.box-event__meetup--members,.box-event__case-study--quote,.box-event__blogpost--date,.box-event__blogpost--description,ol.counter-blue li,ul.ticks-blue li{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#707070}.bodytext__medium--very-light-pink{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#cbcbcb}.bodytext__medium--slate-grey{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#636365}.bodytext__medium--greyish-brown,.navbar__text-link,.install__accordions-content--header,.list-link,.quote--author,.box-event__committer--nick{font-family:roboto,sans-serif;font-weight:400;font-size:16px;line-height:1.63;color:#51504f}.bodytext__mobile--cerulean-blue{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#017cee}.bodytext__mobile--shamrock{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#00ad46}.bodytext__mobile--bright-sky-blue{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#0cb6ff}.bodytext__mobile--melon{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#ff7557}.bodytext__mobile--vermillion{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#e43921}.bodytext__mobile--aqua{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#11e1ee}.bodytext__mobile--shamrock-green{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#04d659}.bodytext__mobile--aqua-blue{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#00c7d4}.bodytext__mobile--white{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#fff}.bodytext__mobile--brownish-grey{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#707070}.bodytext__mobile--very-light-pink{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#cbcbcb}.bodytext__mobile--slate-grey{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#636365}.bodytext__mobile--greyish-brown{font-family:roboto,sans-serif;font-weight:400;font-size:14px;line-height:1.57;color:#51504f}.bodytext__small--cerulean-blue{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#017cee}.bodytext__small--shamrock{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#00ad46}.bodytext__small--bright-sky-blue{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#0cb6ff}.bodytext__small--melon{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#ff7557}.bodytext__small--vermillion{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#e43921}.bodytext__small--aqua{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#11e1ee}.bodytext__small--shamrock-green{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#04d659}.bodytext__small--aqua-blue{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#00c7d4}.bodytext__small--white{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#fff}.bodytext__small--brownish-grey{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#707070}.bodytext__small--very-light-pink{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#cbcbcb}.bodytext__small--slate-grey{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#636365}.bodytext__small--greyish-brown{font-family:roboto,sans-serif;font-weight:400;font-size:12px;line-height:1.33;color:#51504f}.bodytext__xsmall--cerulean-blue{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#017cee}.bodytext__xsmall--shamrock{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#00ad46}.bodytext__xsmall--bright-sky-blue{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#0cb6ff}.bodytext__xsmall--melon{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#ff7557}.bodytext__xsmall--vermillion{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#e43921}.bodytext__xsmall--aqua{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#11e1ee}.bodytext__xsmall--shamrock-green{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#04d659}.bodytext__xsmall--aqua-blue{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#00c7d4}.bodytext__xsmall--white{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#fff}.bodytext__xsmall--brownish-grey{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#707070}.bodytext__xsmall--very-light-pink{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#cbcbcb}.bodytext__xsmall--slate-grey{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#636365}.bodytext__xsmall--greyish-brown{font-family:roboto,sans-serif;font-weight:400;font-size:10px;line-height:2.6;color:#51504f}.monotext--cerulean-blue{font-family:roboto mono,monospace;color:#017cee;font-size:14px;line-height:1.71}.monotext--shamrock{font-family:roboto mono,monospace;color:#00ad46;font-size:14px;line-height:1.71}.monotext--bright-sky-blue{font-family:roboto mono,monospace;color:#0cb6ff;font-size:14px;line-height:1.71}.monotext--melon{font-family:roboto mono,monospace;color:#ff7557;font-size:14px;line-height:1.71}.monotext--vermillion{font-family:roboto mono,monospace;color:#e43921;font-size:14px;line-height:1.71}.monotext--aqua{font-family:roboto mono,monospace;color:#11e1ee;font-size:14px;line-height:1.71}.monotext--shamrock-green{font-family:roboto mono,monospace;color:#04d659;font-size:14px;line-height:1.71}.monotext--aqua-blue{font-family:roboto mono,monospace;color:#00c7d4;font-size:14px;line-height:1.71}.monotext--white{font-family:roboto mono,monospace;color:#fff;font-size:14px;line-height:1.71}.monotext--brownish-grey,pre span,.markdown-content pre span{font-family:roboto mono,monospace;color:#707070;font-size:14px;line-height:1.71}.monotext--very-light-pink{font-family:roboto mono,monospace;color:#cbcbcb;font-size:14px;line-height:1.71}.monotext--slate-grey{font-family:roboto mono,monospace;color:#636365;font-size:14px;line-height:1.71}.monotext--greyish-brown{font-family:roboto mono,monospace;color:#51504f;font-size:14px;line-height:1.71}.font-weight-normal{font-weight:400!important}.font-weight-500{font-weight:500!important}.font-weight-bold{font-weight:700!important}details.accordion{padding:40px 30px;border-bottom:solid 1px #cbcbcb;-webkit-transition:ease 1s;-o-transition:ease 1s;transition:ease 1s}details.accordion:first-of-type{border-top:solid 1px #cbcbcb}details.accordion summary{position:relative;display:block;outline:none}details.accordion summary::-webkit-details-marker{display:none}details.accordion .accordion__summary-content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;max-width:750px;margin-right:40px}details.accordion .accordion__summary-content--icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;width:60px;margin-right:42px}details.accordion .accordion__summary-content--header{margin-bottom:20px}details.accordion .accordion__arrow{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:absolute;width:36px;height:36px;top:0;right:0;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;border:solid 1px #017cee;border-radius:50%}details.accordion .accordion__arrow svg{-webkit-transition:ease-out .2s;-o-transition:ease-out .2s;transition:ease-out .2s}details.accordion[open] .accordion__arrow svg{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}details.accordion .accordion__content{margin-top:30px;margin-right:36px}details.accordion .accordion__content.indented{margin-left:102px}@media(max-width:1280px){details.accordion{padding:30px 0}details.accordion .accordion__summary-content--icon{-webkit-box-align:unset;-webkit-align-items:unset;-ms-flex-align:unset;align-items:unset;margin-right:20px;margin-top:28px}details.accordion .accordion__arrow{width:28px;height:28px;top:5px}details.accordion .accordion__content.indented{margin-left:80px}details.accordion .accordion__content ol.counter-blue{margin-left:-38px!important}}button{cursor:pointer;border:1px solid;border-radius:5px;padding:9px 29px;-webkit-transition:all ease-out .2s;-o-transition:all ease-out .2s;transition:all ease-out .2s}button:disabled{cursor:not-allowed}button.btn-filled{border-color:#017cee;background-color:#017cee}button.btn-filled:hover{border-color:#0cb6ff;background-color:#0cb6ff}button.btn-with-icon{padding:14px 20px}button.btn-with-icon svg{height:30px;width:auto;padding-right:15px}button.btn-with-icon span{display:inline-block;line-height:30px;vertical-align:middle}button.btn-hollow{background-color:#fff}button.btn-hollow.btn-blue{color:#017cee;border-color:#017cee}button.btn-hollow.btn-blue:disabled{color:#cbcbcb;border-color:#cbcbcb}button.btn-hollow.btn-blue:hover:enabled{color:#fff;background-color:#017cee}button.btn-hollow.btn-brown{border-color:#cbcbcb}button.btn-hollow.btn-brown:hover{background-color:#51504f;border-color:#51504f}button.btn-hollow.btn-brown:hover span{color:#fff}button.btn-hollow.btn-brown:hover svg path{fill:#fff}button.with-box-shadow{-webkit-box-shadow:0 2px 6px 0 rgba(0,0,0,.12);box-shadow:0 2px 6px rgba(0,0,0,.12)}@media(max-width:1280px){button{padding:4px 17px}}ol.counter-blue,ul.ticks-blue{list-style:none;margin-bottom:0}ol.counter-blue li,ul.ticks-blue li{position:relative;padding-left:10px}ol.counter-blue li::before,ul.ticks-blue li::before{position:absolute;border:solid 1px #017cee;border-radius:50%}ol.counter-blue{counter-reset:custom-counter;padding-left:-webkit-calc(26px + 2px);padding-left:calc(26px + 2px)}ol.counter-blue li{counter-increment:custom-counter;margin-bottom:25px}ol.counter-blue li::before{content:counter(custom-counter);-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;top:-2px;left:-webkit-calc(-1 * 26px);left:calc(-1 * 26px);width:26px;height:26px;text-align:center;line-height:26px}ul.ticks-blue{padding-left:-webkit-calc(24px + 2px);padding-left:calc(24px + 2px)}ul.ticks-blue li{margin-bottom:22px}ul.ticks-blue li::before{content:"";left:-webkit-calc(-1 * 24px);left:calc(-1 * 24px);width:24px;height:24px;background-position:50%;background-repeat:no-repeat;background-image:url(/images/tick.svg)}.list-items{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-20px;-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch}@media(max-width:1280px){.list-items{margin:auto;max-width:580px}}@media(max-width:640px){.list-items{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}}.list-item{width:25%;padding:20px}@media(min-width:1920px){.list-item{width:20%}}@media(max-width:1280px){.list-item{padding:10px;width:50%}}@media(max-width:640px){.list-item{width:100%}}.list-item--wide{width:50%}@media(max-width:1280px){.list-item--wide{width:100%}}.card{border:solid 1px #cbcbcb;border-radius:5px;padding:30px 10px;height:100%}.box-event{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.box-event__blogpost{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;padding:0 20px}.box-event__blogpost--metadata{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:20px}.box-event__blogpost--header{margin-bottom:4px}.box-event__blogpost--author{font-weight:500}.box-event__blogpost--description{margin-bottom:20px}.box-event__case-study{padding:18px 18px 0;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.box-event__case-study--logo{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:60px;width:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.box-event__case-study--logo svg,.box-event__case-study--logo img{max-height:100%;max-width:100%}.box-event__case-study--quote{font-style:italic;margin:30px 0 20px;text-align:center}.box-event__case-study--quote::before{content:"“"}.box-event__case-study--quote::after{content:"”"}.box-event__committer--nick{font-weight:500;margin-top:12px}.box-event__committer--social-media-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.box-event__committer--social-media-icon{margin:0 6px}.box-event__meetup--location{margin-bottom:10px;text-align:center}.box-event__meetup--members{margin-bottom:30px}.box-event__meetup--members span{vertical-align:middle}.box-event__meetup--next-meetup{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;min-height:52px;margin-bottom:20px;text-align:center}.box-event__integration{height:208px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.box-event__integration--logo{margin:auto 0;-webkit-filter:grayscale(1);filter:grayscale(1);opacity:.6;max-width:100%;max-height:100%}.box-event__integration--name{font-weight:700;text-align:center}.box-event__integration:hover .box-event__integration--logo{-webkit-filter:none;filter:none;opacity:1}.box-event.hoverable-icon svg,.box-event.hoverable-icon img{-webkit-filter:grayscale(1);filter:grayscale(1);opacity:.6;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}.box-event.hoverable-icon:hover svg,.box-event.hoverable-icon:hover img{-webkit-filter:none;filter:none;opacity:1}@media(max-width:640px){.box-event__blogpost--metadata{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.box-event__blogpost--date{margin-top:17px}}.avatar{border-radius:50%;width:80px;height:80px}.quote{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;border-bottom:solid 1px #cbcbcb;padding:0 78px 60px}.quote--text{text-align:center;font-weight:400}.quote--text::before{content:"“"}.quote--text::after{content:"”"}.quote--author{text-align:center;font-weight:500;margin-bottom:32px}.quote--logo{max-height:140px;margin:0 auto}@media(max-width:640px){.quote{padding:0 0 40px}}.pager{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin-top:60px}.case-study-page{max-width:790px!important;margin:60px auto 0}@media(max-width:640px){.case-study-page{margin-top:40px}}.markdown-content h1,.markdown-content h2,.markdown-content h3,.markdown-content h4,.markdown-content h5{margin-top:40px;margin-bottom:20px}.markdown-content p,.markdown-content span{margin-bottom:30px;margin-top:20px}.markdown-content img{width:100%}.markdown-content table{border-collapse:collapse;width:100%}.markdown-content th{background:#ccc}.markdown-content th,.markdown-content td{border:1px solid #ccc;padding:8px}.markdown-content tr:nth-child(even){background:#efefef}.markdown-content tr:hover{background:#d1d1d1}.markdown-content li{color:#707070}.base-layout{padding:123px 0 40px}.base-layout--button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:-webkit-sticky;position:sticky;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin-left:auto;margin-right:40px;bottom:40px;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;z-index:1}@media(max-width:1280px){.base-layout{padding:76px 0 60px}.base-layout--button{display:none}}.page-header{text-align:center;margin-bottom:16px}@media(max-width:1280px){.page-header{font-size:36px!important;line-height:1.22!important}}.page-subtitle{text-align:center;font-weight:400!important;margin-bottom:80px}@media(max-width:1280px){.page-subtitle{font-family:roboto,sans-serif!important;font-size:16px!important;line-height:1.63!important;margin-bottom:30px}}.container{margin-top:44px;max-width:1200px}@media(min-width:1920px){.container{max-width:1510px}}@media(max-width:1280px){.container>*{max-width:630px;margin-left:auto;margin-right:auto}.container .no-width-restriction{max-width:none}}@media(max-width:640px){.container>*{max-width:306px}}.container-fluid{padding-left:20px;padding-right:20px}.show-more-button{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin:60px auto 0}@media(max-width:1280px){.show-more-button{margin-top:30px}}@media(max-width:1280px){.desktop-only{display:none}}@media(min-width:calc(1280px + 1px)){.no-desktop{display:none}}@media(min-width:calc(640px + 1px)){.mobile-only{display:none}}.features-list{margin:76px auto 100px;max-width:720px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}@media(min-width:1920px){.features-list{max-width:unset;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-top:0}}@media(max-width:640px){.features-list{margin-top:0}}.feature-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:44px auto 0}.feature-item--icon-box{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;max-width:150px;width:100%;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-top:18px}.feature-item--text-box{margin-left:60px}@media(min-width:1920px),(max-width:1280px){.feature-item{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.feature-item--icon-box{margin-top:0;margin-bottom:20px;max-width:unset}.feature-item--text-box{margin-left:0;text-align:center}}@media(min-width:1920px){.feature-item{margin-top:60px;max-width:392px;margin-left:40px;margin-right:40px}}@media(max-width:1280px){.feature-item{margin-top:40px;max-width:260px}.feature-item svg{height:60px;width:auto}.feature-item--header{font-family:roboto,sans-serif!important;font-size:24px!important;line-height:1.5!important}.feature-item--text{font-size:14px!important;line-height:1.57!important}}.text-with-icon-list{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:940px;margin:0 auto 100px;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.text-with-icon-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;max-width:410px;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-top:54px}.text-with-icon-item svg{height:100px}.text-with-icon-item--header{text-align:center;margin-top:23px}.text-with-icon-item--text{text-align:center}@media(min-width:1920px){.text-with-icon-list{max-width:unset}.text-with-icon-item{max-width:305px}}@media(max-width:1280px){.text-with-icon-item{margin-top:30px;max-width:276px}.text-with-icon-item svg{width:70px;height:70px}.text-with-icon-item--header{font-family:roboto,sans-serif;font-size:24px;line-height:1.5;margin-top:16px}.text-with-icon-item--text{font-size:14px;line-height:1.57}}@media(max-width:640px){.text-with-icon-list{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}}.video-section{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border:solid 1px #cbcbcb;padding:40px}@media(max-width:1280px){.video-section{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;max-width:560px;margin:0 auto;padding:20px}}.video-wrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.video-wrapper .video-container{display:none}.video-wrapper .video-container:last-child{display:block}.video-wrapper .anchor{position:fixed}.video-wrapper .anchor:target+.video-container{display:block}.video-wrapper .anchor:target+.video-container~.video-container{display:none}.video-list-wrapper{overflow-y:auto;max-height:403px;max-width:370px;width:100%;margin-left:40px}@media(max-width:1280px){.video-list-wrapper{max-width:unset;margin-left:0}}.video-list-wrapper::-webkit-scrollbar{-webkit-appearance:none}.video-list-wrapper::-webkit-scrollbar-thumb{border-radius:8px;border:2px solid #fff;background-color:rgba(0,0,0,.5)}.video-list-wrapper::-webkit-scrollbar:vertical{width:9px}.video-list{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.video-list__item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;border-bottom:solid 1px #cbcbcb;padding:16px 0}.video-list__item .video-list__item--title{margin-left:9px;vertical-align:middle}.video-list__item--icon-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.video-list__item:hover .video-list__item--title,.video-list__item.active .video-list__item--title{font-weight:500}.video-list__item:hover svg path,.video-list__item.active svg path{fill:#707070;stroke:none}.tag{display:block;background-color:rgba(1,124,238,.25);padding:1px 15px;border-radius:5px;-webkit-transition:.2s;-o-transition:.2s;transition:.2s;margin:7px}.tag.active,.tag:hover{background-color:#017cee;color:#fff}.tags-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin:-7px}@media(max-width:640px){.tags-container{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-bottom:7px}}.all-tags-container{margin:30px 0}.blog__list-items-wrapper{max-width:1200px;margin:30px auto 0}@media(max-width:1280px){.blog__list-items-wrapper{max-width:580px}}.new-entry{margin-bottom:20px}.new-entry--link{font-weight:500}@media(max-width:1280px){.new-entry{margin-bottom:10px;padding-left:10px}}.blogpost-content{max-width:790px;margin:0 auto}.blogpost-content--header-wrapper{border-bottom:solid 1px #cbcbcb}.blogpost-content__metadata--container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:30px}.blogpost-content__metadata--title{margin-bottom:20px}.blogpost-content__metadata--author{font-weight:500;margin-bottom:30px;margin-right:17px}.blogpost-content__metadata--social-media-icon{margin-right:7px}.blogpost-content__metadata--description{font-weight:400;margin-bottom:30px}.blogpost-content__metadata--date{margin-top:17px}@media(max-width:640px){.blogpost-content__metadata--container{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-bottom:19px}.blogpost-content__metadata--title{font-family:roboto,sans-serif!important;font-size:24px!important;line-height:1.5!important;max-width:272px;margin-bottom:13px}.blogpost-content__metadata--author{margin-bottom:20px}.blogpost-content__metadata--description{font-family:roboto,sans-serif!important;font-weight:400!important;font-size:16px!important;line-height:1.63!important;margin-bottom:20px}}.blog-pager{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;max-width:1200px;margin:60px auto 0}.blog-pager .pager{margin-top:40px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.home-page-layout.base-layout{padding-top:70px}@media(max-width:640px){.home-page-layout.base-layout{padding-top:16px}}.principles-header{margin-top:20px;margin-bottom:4px}.integrations-header{margin-bottom:60px}@media(max-width:640px){.integrations-header{margin-bottom:30px}}#integrations .list-items{margin-top:40px}@media(max-width:640px){#integrations .list-items{margin-top:20px}}.video-section-container{margin:80px auto;max-width:1200px}@media(max-width:640px){.video-section-container{margin:60px 0}}.host-header{margin-bottom:6px}.meetups{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.meetups>.list-items{margin-top:40px;margin-bottom:40px;width:100%}@media(max-width:1280px){.meetups>.list-items{margin-top:30px;margin-bottom:30px}}@media(max-width:640px){.meetups>.list-items{margin-bottom:10px}}.meetups-page.page-subtitle{margin-bottom:0}.list-link{text-decoration:underline}.community--header-container{max-width:936px;margin:0 auto}.community--header-join{text-align:center}.community--accordion-container{margin:60px 18px}.community--committers-header{text-align:center;margin-top:70px;margin-bottom:40px}.community--committers-header.large-margin{margin-top:100px;margin-bottom:40px}@media(min-width:1920px){.community .list-items{max-width:1220px;margin-right:auto;margin-left:auto}.community .list-item{width:25%}}@media(max-width:1280px){.community--header-container{max-width:580px}.community--header-join{font-family:roboto,sans-serif!important;font-size:24px!important;line-height:1.5!important}.community--accordion-container{margin:40px 0}.community--committers-header{font-size:36px!important;line-height:1.22!important;margin-top:60px}.community--committers-header.large-margin{margin-top:60px;margin-bottom:40px}.community--button-container{margin-top:20px}}.install .page-subtitle{margin-bottom:45px}.install--headers-wrapper{max-width:936px;margin:0 auto}.install--description{text-align:center;margin:45px 0 60px}.install--description a{color:#017cee;text-decoration:underline}.install__accordions--wrapper{max-width:900px;margin:60px auto}.install__accordions-content--header{font-weight:500}.install__accordions-content--list-wrapper{margin-bottom:40px}.install__accordions-content--methods-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-bottom:20px}.install__accordions-content--method-box{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:270px;height:160px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;border:solid 1px #cbcbcb;border-radius:5px;margin-right:40px}@media(max-width:1280px){.install .page-subtitle{margin-bottom:30px}.install--headers-wrapper{max-width:580px}.install--description{margin-top:30px;margin-bottom:30px}.install__accordions--wrapper{max-width:580px;margin-top:40px;margin-bottom:0}}@media(max-width:640px){.install__accordions-content--methods-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-bottom:0;margin-right:-36px}.install__accordions-content--method-box{margin-right:0;margin-bottom:20px}}footer{min-height:unset}footer .footer-section{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}footer .footer-section__media-section{padding:60px 60px 30px;background-color:#51504f}footer .footer-section__media-section--link{margin-right:30px}footer .footer-section__media-section--button-with-text{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}footer .footer-section__media-section--text{margin-right:20px}footer .footer-section__policies-section{padding:30px 60px;background-color:#636365;font-size:12px;-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}footer .footer-section__policies-section span{font-size:12px}footer .footer-section__policies-section--policies{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}footer .footer-section__policies-section--policy-item::before{content:"\00a0\00a0"}footer .footer-section__policies-section--policy-item::after{content:"\00a0\00a0|";color:#fff}footer .footer-section__policies-section--policy-item:last-of-type::after{content:"\00a0\00a0|\00a0\00a0"}footer .footer-section__policies-section--disclaimer{display:block;max-width:600px;color:#cbcbcb!important;margin-top:16px}@media(min-width:1920px){footer .footer-section__policies-section--disclaimer{max-width:800px}}footer .dropdown-toggle::after{color:#fff;vertical-align:middle}@media(max-width:1280px){footer .footer-section{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}footer .footer-section span{font-size:14px!important;line-height:1.57!important}footer .footer-section__media-section{padding:30px 40px}footer .footer-section__media-section svg{height:31px;width:auto}footer .footer-section__media-section--link{margin-right:20px}footer .footer-section__media-section--button-with-text{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;margin-bottom:47px}footer .footer-section__media-section--text{margin-right:0;margin-bottom:16px}footer .footer-section__policies-section{padding:30px 40px}footer .footer-section__policies-section--policies{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}footer .footer-section__policies-section--policy-item::before,footer .footer-section__policies-section--policy-item::after,footer .footer-section__policies-section--policy-item:last-of-type::before,footer .footer-section__policies-section--policy-item:last-of-type::after{content:""}footer .footer-section__policies-section--language-toggle{margin:17px 0 35px}}.navbar{position:fixed;top:0;width:100%;background-color:#fff;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;border-bottom:solid 1px #cbcbcb;z-index:32;padding:30px 60px}.navbar__menu-container{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.navbar__menu-content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding-top:16px;padding-left:88px}.navbar__links-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.navbar__text-link{margin-right:30px;position:relative;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.navbar__text-link::before,.navbar__text-link::after{content:"";position:absolute;top:100%;width:0;right:0;height:2px;background-color:#017cee;-webkit-transition:.2s ease-out;-o-transition:.2s ease-out;transition:.2s ease-out}.navbar__text-link:hover,.navbar__text-link.active{color:#51504f}.navbar__text-link:hover::before,.navbar__text-link:hover::after,.navbar__text-link.active::before,.navbar__text-link.active::after{width:100%;left:0}.navbar--box-shadow{-webkit-box-shadow:0 2px 6px 0 rgba(0,0,0,.12);box-shadow:0 2px 6px rgba(0,0,0,.12)}@media(max-width:1280px){.navbar{padding:20px}.navbar__icon-container svg{width:93px;height:auto}.navbar__menu-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;padding-left:0;padding-top:0}.navbar__drawer-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.navbar__toggle-button{border:none;background:0 0;padding:0;position:relative;width:26px;height:20px}.navbar__toggle-button--icon{position:absolute;top:0;bottom:0;left:0;right:0;visibility:hidden;opacity:0;-webkit-transition:.2s ease-out;-o-transition:.2s ease-out;transition:.2s ease-out}.navbar__toggle-button--icon.visible{visibility:visible;opacity:1}.navbar__drawer{position:fixed;top:77px;left:0;width:100%;height:-webkit-calc(100% - 77px);height:calc(100% - 77px);background-color:#fff;-webkit-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translateX(100%);-webkit-transition:.2s ease-out;-o-transition:.2s ease-out;transition:.2s ease-out;padding:40px 40px 30px}.navbar__drawer--open{-webkit-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}.navbar__links-container{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.navbar__text-link{margin-right:0;margin-bottom:10px}.navbar__text-link:last-child{margin-bottom:20px}}#header{position:relative;margin:123px -20px 0;min-height:-webkit-calc(100vh - 123px);min-height:calc(100vh - 123px)}#header-canvas{padding:0;margin:0;position:absolute;width:100%;height:100%;top:0;left:0;right:0;bottom:0}#header-canvas .text-area{max-width:706px;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}#header-canvas .text-area--header{text-align:center;margin-bottom:20px}#header-canvas .text-area--subheader{font-weight:400!important;text-align:center;margin-bottom:20px}#header-canvas canvas{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1}@media(min-width:1920px){#header-canvas .text-area--header{font-size:90px}}@media(max-width:1280px){#header{margin:77px -20px 0;min-height:-webkit-calc(100vh - 77px);min-height:calc(100vh - 77px)}#header-canvas .text-area{max-width:450px}#header-canvas .text-area--header{margin-bottom:14px}#header-canvas .text-area--subheader{margin-bottom:26px}}@media(max-width:640px){#header-canvas .text-area{max-width:290px}#header-canvas .text-area--header{font-size:48px!important;line-height:1.25!important}#header-canvas .text-area--subheader{font-size:16px!important;line-height:1.63!important}}.roadmap{margin-top:40px}.roadmap main{padding-left:40px}.roadmap .breadcrumb{padding-bottom:0;margin-bottom:30px}.roadmap .breadcrumb-item+.breadcrumb-item{padding-left:4px}.roadmap .breadcrumb-item+.breadcrumb-item::before{color:#707070;padding-right:0}.roadmap .td-sidebar{position:-webkit-sticky;position:sticky;top:163px;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;max-height:-webkit-calc(100vh - 163px);max-height:calc(100vh - 163px);max-width:270px;min-width:270px;width:100%;overflow-y:auto;padding-top:12px;padding-left:15px;padding-bottom:30px;margin-left:40px;background-color:#f9f9f9;border:none}.roadmap .td-sidebar::-webkit-scrollbar{-webkit-appearance:none}.roadmap .td-sidebar::-webkit-scrollbar-thumb{border-radius:8px;border:2px solid #fff;background-color:rgba(0,0,0,.5)}.roadmap .td-sidebar::-webkit-scrollbar:vertical{width:9px}.roadmap .td-sidebar__inner{position:static;height:unset}.roadmap .td-sidebar li>a{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.roadmap .td-sidebar li>a.active{color:#017cee}.roadmap .td-sidebar .searchb-box{margin-bottom:26px}.roadmap .td-sidebar .searchb-box .search-form{width:100%}.roadmap .td-sidebar .toctree li{list-style:none;font-family:roboto,sans-serif;font-size:16px;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.63;letter-spacing:normal;color:#707070}.roadmap .td-sidebar .toctree ul{padding-left:15px;display:none}.roadmap .td-sidebar .toctree>ul,.roadmap .td-sidebar .toctree li.current>ul{display:block}.roadmap .td-sidebar .toctree .caption{font-family:roboto,sans-serif;font-size:18px;font-weight:700;font-stretch:normal;font-style:normal;line-height:1.33;letter-spacing:normal;color:#51504f;padding-bottom:13px;text-transform:uppercase;margin-bottom:0}.roadmap .td-sidebar .toctree .current{color:#017cee;font-weight:500}.roadmap .td-sidebar .toctree .current>a:not([href="#"]){color:#017cee}.roadmap .td-sidebar .toctree a .toctree-expand{display:inline-block;position:relative;height:1em}.roadmap .td-sidebar .toctree a .toctree-expand::before{position:absolute;top:6px;left:-12px;content:'►';font-size:7px}.roadmap .td-sidebar .toctree .current>a>.toctree-expand:before{content:'▼'}.roadmap .td-sidebar-nav__section{padding-right:0}.roadmap .td-sidebar-nav>.td-sidebar-nav__section .td-sidebar-nav__section{list-style:none;position:relative;margin-left:10px}.roadmap .td-sidebar-nav>.td-sidebar-nav__section .td-sidebar-nav__section::before{content:'►';position:absolute;top:6px;left:-12px;font-size:8px;color:#51504f}.roadmap .td-sidebar-nav>.td-sidebar-nav__section .td-sidebar-nav__section>ul{display:none}.roadmap .td-sidebar-nav>.td-sidebar-nav__section .td-sidebar-nav__section.current-section::before{content:'▼'}.roadmap .td-sidebar-nav>.td-sidebar-nav__section .td-sidebar-nav__section.current-section>ul{display:block}.roadmap .wy-nav-side-toc{position:-webkit-sticky;position:sticky;top:163px;overflow-x:hidden;overflow-y:auto;width:280px;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;max-height:-webkit-calc(100vh - 163px);max-height:calc(100vh - 163px);font-size:14px;line-height:1.43}.roadmap .wy-nav-side-toc::-webkit-scrollbar{-webkit-appearance:none}.roadmap .wy-nav-side-toc::-webkit-scrollbar-thumb{border-radius:8px;border:2px solid #fff;background-color:rgba(0,0,0,.5)}.roadmap .wy-nav-side-toc::-webkit-scrollbar:vertical{width:9px}.roadmap .wy-nav-side-toc ul,.roadmap .wy-nav-side-toc ol{padding:0;list-style:none none}.roadmap .wy-nav-side-toc li{list-style:none}.roadmap .wy-nav-side-toc .wy-menu-vertical>ul,.roadmap .wy-nav-side-toc .wy-menu-vertical li.current>ul{padding-left:1px}.roadmap .wy-nav-side-toc .wy-menu-vertical a{display:inline-block;padding:.4045em 0;color:#707070}.roadmap .wy-nav-side-toc .wy-menu-vertical li a{border-left:solid 2px #cbcbcb;padding-left:-webkit-calc(1.25em + 1px);padding-left:calc(1.25em + 1px)}.roadmap .wy-nav-side-toc .wy-menu-vertical li.current{margin-left:-1px}.roadmap .wy-nav-side-toc .wy-menu-vertical li.current>a{border-left:solid 4px #017cee;color:#017cee}.roadmap .wy-nav-side-toc .wy-menu-vertical li li>a{padding-left:2.427em}.roadmap .wy-nav-side-toc .wy-menu-vertical li li li>a{padding-left:4.045em}.roadmap .wy-nav-side-toc .wy-menu-vertical li li li li>a{padding-left:5.663em}@media(max-width:1280px){.roadmap main{padding-left:0}.roadmap .td-sidebar{position:static;background-color:transparent;padding:0;margin:0;max-width:unset;height:530px}}.search-form{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:344px;padding:8px 20px;border:solid 1px #cbcbcb;border-radius:5px;margin:60px auto 0}.search-form__input{font-family:roboto,sans-serif;font-size:16px;color:#707070;line-height:1.63;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding-right:10px;border:none;background:0 0;outline:none;float:left}.search-form__button{border:none;background-color:transparent;padding:0}@media(max-width:1280px){.search-form{width:270px;padding:3px 20px;margin-top:30px}}.rating-container{margin-top:40px}.rating{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.rate-star{cursor:pointer;margin-right:13px}.rate-star svg path{fill:none;stroke:#51504f}.rate-star:hover svg path,.rate-star:hover~.rate-star svg path{fill:#017cee;stroke:none}.rst-content{color:#707070}.rst-content h1{margin-top:0;margin-bottom:30px;font-weight:500;font-family:rubik,sans-serif;color:#51504f;font-size:225%}.rst-content h2,.rst-content h3,.rst-content h4,.rst-content h5,.rst-content h6,.rst-content p{font-family:roboto,sans-serif;color:#707070}.rst-content h2,.rst-content h3,.rst-content h4,.rst-content h5,.rst-content h6{margin-top:40px;margin-bottom:20px;font-weight:500}.rst-content p{line-height:1.63;margin:0 0 30px;font-size:16px;overflow-wrap:break-word}.rst-content h2{font-size:150%}.rst-content h3{font-size:125%}.rst-content h4{font-size:115%}.rst-content h5{font-size:110%}.rst-content h6{font-size:100%}.rst-content code{max-width:100%;color:#51504f;padding:0 5px;font-family:roboto mono,monospace;overflow-x:auto}.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .admonition-todo,.rst-content .admonition{padding:9px 10px;line-height:24px;margin-bottom:24px;background:#e7f2fa}@media(max-width:768px){.rst-content .admonition p:not(.admonition-title){font-size:12px;line-height:1.83}}.rst-content .admonition-title:before{content:"!";background-color:#fff;border-radius:50%;padding:0 4px;margin-right:5px}.rst-content .admonition-title{color:#fff;font-weight:500;font-size:10px;line-height:2.1;display:block;background:#68d1ff;margin:-10px;padding:0 12px;margin-bottom:9px}.rst-content .danger,.rst-content .error{background:#fdece9}.rst-content .danger::before,.rst-content .error::before{color:#fdece9}.rst-content .danger .admonition-title,.rst-content .error .admonition-title{background:#ee8170}.rst-content .danger .admonition-title::before,.rst-content .error .admonition-title::before{color:#ee8170}.rst-content .attention,.rst-content .caution{background:#fff8f6}.rst-content .warning{background:#f8f8f8}.rst-content .attention .admonition-title,.rst-content .caution .admonition-title{background:#ffa996}.rst-content .attention .admonition-title::before,.rst-content .caution .admonition-title::before{color:#ffa996}.rst-content .warning .admonition-title{background:#a6a6a6}.rst-content .warning .admonition-title::before{color:#a6a6a6}.rst-content .note,.rst-content .seealso{background:#f3fbff}.rst-content .note .admonition-title,.rst-content .seealso .admonition-title{background:#68d2fe}.rst-content .note .admonition-title::before,.rst-content .seealso .admonition-title::before{color:#68d2fe}.rst-content .hint{background:#f2fef6}.rst-content .important{background:#e6f9fc}.rst-content .tip{background:#e5f7ec}.rst-content .hint .admonition-title{background:#63e598}.rst-content .hint .admonition-title::before{color:#63e598}.rst-content .important .admonition-title{background:#5bdae3}.rst-content .important .admonition-title::before{color:#5bdae3}.rst-content .tip .admonition-title{background:#5bcb88}.rst-content .tip .admonition-title::before{color:#5bcb88}.rst-content .note p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.rst-content .seealso p:last-child,.rst-content .admonition p:last-child{margin-bottom:0}.rst-content img{max-width:100%;height:auto}.rst-content div.figure{margin-bottom:24px}.rst-content div.figure p.caption{font-style:italic}.rst-content div.figure p:last-child.caption{margin-bottom:0}.rst-content div.figure.align-center{text-align:center}.rst-content .section>img,.rst-content .section>a>img{margin-bottom:24px}.rst-content abbr[title]{text-decoration:none}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content pre{background-color:#f2f8fe}.rst-content pre.literal-block,.rst-content .linenodiv pre{font-family:roboto mono,monospace;font-size:12px;line-height:1.4}@media print{.rst-content div[class^=highlight],.rst-content div[class^=highlight] pre{white-space:pre-wrap}}.rst-content .admonition table{border-color:rgba(0,0,0,.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:0 0!important;border-color:rgba(0,0,0,.1)!important}.rst-content .section ol p,.rst-content .section ul p{margin-bottom:12px}.rst-content .section ol li p:last-child,.rst-content .section ul li p:last-child{margin-bottom:0}.rst-content .section ol p:last-child,.rst-content .section ul p:last-child{margin-bottom:24px}.rst-content .topic-title{font-weight:700;margin-bottom:12px}.rst-content .toc-backref{color:inherit}.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content .toctree-wrapper p.caption .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink,.rst-content table>caption .headerlink,.rst-content .code-block-caption .headerlink{visibility:hidden;font-size:0}.rst-content h1 .headerlink:after,.rst-content h2 .headerlink:after,.rst-content .toctree-wrapper p.caption .headerlink:after,.rst-content h3 .headerlink:after,.rst-content h4 .headerlink:after,.rst-content h5 .headerlink:after,.rst-content h6 .headerlink:after,.rst-content dl dt .headerlink:after,.rst-content p.caption .headerlink:after,.rst-content table>caption .headerlink:after,.rst-content .code-block-caption .headerlink:after{content:url(/images/anchor.svg);vertical-align:bottom;padding-left:8px}.rst-content h1:hover .headerlink:after,.rst-content h2:hover .headerlink:after,.rst-content .toctree-wrapper p.caption:hover .headerlink:after,.rst-content h3:hover .headerlink:after,.rst-content h4:hover .headerlink:after,.rst-content h5:hover .headerlink:after,.rst-content h6:hover .headerlink:after,.rst-content dl dt:hover .headerlink:after,.rst-content p.caption:hover .headerlink:after,.rst-content table>caption:hover .headerlink:after,.rst-content .code-block-caption:hover .headerlink:after{visibility:visible}.rst-content table>caption .headerlink:after{font-size:12px}.rst-content .footnote-reference,.rst-content .citation-reference{vertical-align:baseline;position:relative;top:-.4em;line-height:0;font-size:90%}.rst-content table.docutils,.rst-content table.field-list{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.rst-content table.docutils caption,.rst-content table.field-list caption{padding:1em 0;text-align:center}.rst-content table.docutils td,.rst-content table.docutils th,.rst-content table.field-list th{margin:0;overflow:visible}.rst-content table.docutils td{padding:10px 31px}.rst-content table.docutils th,.rst-content table.field-list th{padding:11px 31px}.rst-content table.docutils td:first-child,.rst-content table.field-list td:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list th:first-child{border-left-width:0}.rst-content table.docutils thead,.rst-content table.field-list thead{text-align:left;vertical-align:bottom;white-space:nowrap}.rst-content table.docutils thead th,.rst-content table.field-list thead th{border-bottom:solid 1px rgba(81,80,79,.3);border-left:solid 1px rgba(81,80,79,.3)}.rst-content table.docutils thead th p,.rst-content table.field-list thead th p{font-weight:700;font-size:18px;color:#51504f;line-height:1.33;margin-bottom:0}.rst-content table.docutils td,.rst-content table.field-list td{background-color:transparent;vertical-align:middle}.rst-content td p:last-child,.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child{margin-bottom:0}.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td{background-color:rgba(112,112,112,5%)}.rst-content table.docutils{border:1px solid rgba(81,80,79,.3)}.rst-content table.docutils td{border-bottom:1px solid rgba(81,80,79,.3);border-left:1px solid rgba(81,80,79,.3)}.rst-content table.docutils tbody>tr:last-child td{border-bottom-width:0}.rst-content .wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.rst-content .wy-table-responsive table{margin-bottom:0!important}.rst-content .wy-table-responsive table th{white-space:nowrap}.rst-content code big,.rst-content tt em,.rst-content code em{font-size:100%!important;line-height:normal}.rst-content code.literal{color:#e74c3c}.rst-content code.xref,.rst-content a code{font-weight:700;color:#707070}.rst-content pre,.rst-content kbd{font-family:roboto mono,monospace}.rst-content kbd{background-color:inherit;color:inherit;-webkit-box-shadow:none;box-shadow:none;border:none;font-size:100%}.rst-content a code{color:#2980b9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:700;margin-bottom:12px;word-break:break-word}.rst-content dl p,.rst-content dl table,.rst-content dl ul,.rst-content dl ol{margin-bottom:12px!important}.rst-content dl dd{margin:0 0 12px 24px;line-height:24px}.rst-content dl:not(.docutils){margin-bottom:24px}.rst-content dl:not(.docutils) dt{font-family:roboto mono,monospace;display:table;margin:6px 0;font-size:100%;line-height:1.63;background:#f3fbff;color:#51504f;border-top:solid 4px #68d1ff;padding:8px 10px;position:relative}@media(max-width:768px){.rst-content dl:not(.docutils) dt{font-size:10px}}.rst-content dl:not(.docutils) dt:before{color:#68d1ff}.rst-content dl:not(.docutils) dt .headerlink{color:#707070;font-size:100%!important}.rst-content dl:not(.docutils) dt .fn-backref{color:#0cb6ff}.rst-content dl:not(.docutils) dl dt{margin-bottom:6px;border:none;border-left:solid 8px #a6a6a6;background:#f8f8f8;color:#707070}.rst-content dl:not(.docutils) dl dt .headerlink{color:#707070;font-size:100%!important}.rst-content dl:not(.docutils) dt:first-child{margin-top:0}.rst-content dl:not(.docutils) code{font-weight:700}.rst-content dl:not(.docutils) code.descname,.rst-content dl:not(.docutils) code.descclassname{background-color:transparent;border:none;padding:0;font-size:100%!important}.rst-content dl:not(.docutils) code.descname{font-weight:700}.rst-content dl:not(.docutils) .optional{display:inline-block;padding:0 4px;color:#51504f;font-weight:700}.rst-content dl:not(.docutils) .property{display:inline-block;padding-right:8px}.rst-content p.rubric{margin-bottom:12px;font-weight:700}.rst-content .versionmodified{font-style:italic}.rst-content .example-header{position:relative;background:#017cee;padding:8px 16px;margin-bottom:0}.rst-content .example-block-wrapper pre{margin:0;width:unset;border-top-left-radius:0;border-top-right-radius:0}.rst-content .example-header--with-button{padding-right:166px}@media(max-width:768px){.rst-content .example-header--with-button{padding-right:100px}}.rst-content .example-header:after{content:'';display:table;clear:both}.rst-content .example-title{display:block;padding:4px;margin-right:16px;color:#fff;overflow-x:auto}@media(max-width:768px){.rst-content .example-title{overflow-wrap:initial;font-size:12px}}.rst-content .example-header-button{top:8px;right:16px;position:absolute}.rst-content .example-header+.highlight-python{margin-top:0!important}.rst-content .viewcode-button{display:inline-block;padding:8px 16px;border:0;margin:0;color:#fff;font-weight:700;line-height:1;text-decoration:underline;text-overflow:ellipsis;overflow:hidden;text-transform:lowercase;vertical-align:middle;white-space:nowrap}@media(max-width:768px){.rst-content .viewcode-button{font-size:12px;padding:7px 0}}.rst-content .viewcode-button:visited{color:#404040}.rst-content .viewcode-button:hover,.rst-content .viewcode-button:focus{color:#404040}@media(min-width:1024px){.rst-content .section::before{display:block;content:" ";margin-top:-83px;height:83px;visibility:hidden}}.content-drawer-wrapper{display:none}@media(max-width:1280px){.content-drawer-wrapper{display:block;margin-bottom:30px}}.content-drawer-wrapper .navbar{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;left:0}.content-drawer-wrapper .navbar--hidden{display:none}.content-drawer-container{position:fixed;top:77px;left:0;width:100%;height:100%;background-color:#fff;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%);-webkit-transition:.2s ease-out;-o-transition:.2s ease-out;transition:.2s ease-out;z-index:100}.content-drawer-container--open{-webkit-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}.content-drawer{padding:20px 40px}.content-drawer__toggle-button{border:none;background:0 0;padding:0;position:relative;width:26px;height:20px}.content-drawer__toggle-button--icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;visibility:hidden;opacity:0;-webkit-transition:.2s ease-out;-o-transition:.2s ease-out;transition:.2s ease-out}.content-drawer__toggle-button--icon svg{margin-right:10px}.content-drawer__toggle-button--icon.visible{visibility:visible;opacity:1}.dropdown-menu{font-family:roboto,sans-serif}.dropdown-toggle::after{color:#51504f}.sidebar__version-selector{margin-bottom:22px}.chroma,.highlight{background-color:#fff}.chroma .lntd,.highlight .lntd{vertical-align:top;padding:0;margin:0;border:0}.chroma .lntable,.highlight .lntable{border-spacing:0;padding:0;margin:0;border:0;width:auto;overflow:auto;display:block}.chroma .hl,.highlight .hl{display:block;width:100%;background-color:#ffc}.chroma .lnt,.chroma .ln,.highlight .lnt,.highlight .ln{margin-right:.4em;padding:0 .4em;color:#7f7f7f}.chroma .k,.chroma .kc,.chroma .kd,.chroma .kn,.chroma .kp,.chroma .kr,.highlight .k,.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr{color:#00f}.chroma .kt,.chroma .nc,.highlight .kt,.highlight .nc{color:#2b91af}.chroma .s,.chroma .sa,.chroma .sb,.chroma .sc,.chroma .dl,.chroma .sd,.chroma .s2,.chroma .se,.chroma .sh,.chroma .si,.chroma .sx,.chroma .sr,.chroma .s1,.chroma .ss,.highlight .s,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .dl,.highlight .sd,.highlight .s2,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx,.highlight .sr,.highlight .s1,.highlight .ss{color:#a31515}.chroma .ow,.highlight .ow{color:#00f}.chroma .c,.chroma .ch,.chroma .cm,.chroma .c1,.chroma .cs,.highlight .c,.highlight .ch,.highlight .cm,.highlight .c1,.highlight .cs{color:green}.chroma .cp,.chroma .cpf,.highlight .cp,.highlight .cpf{color:#00f}.chroma .ge,.highlight .ge{font-style:italic}.chroma .gh,.chroma .gp,.chroma .gs,.chroma .gu,.highlight .gh,.highlight .gp,.highlight .gs,.highlight .gu{font-weight:700}pre{margin:40px 0;padding:16px 20px;border:solid 1px #cbcbcb;border-radius:5px;width:100%}.share-section--icons-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.share-section--icon{margin-right:12px;cursor:pointer}.four-oh-four{height:-webkit-calc(100vh - 123px);height:calc(100vh - 123px);position:relative}.four-oh-four__text-container{position:relative;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-align:center}@media(min-width:768px){.list-providers{-webkit-column-count:2;-moz-column-count:2;column-count:2}}@media(min-width:1000px){.list-providers{-webkit-column-count:3;-moz-column-count:3;column-count:3}} \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/_static/_gen/css/main.min.css b/docs-archive/apache-airflow-providers/_static/_gen/css/main.min.css new file mode 100644 index 00000000000..0ccc485909e --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/_gen/css/main.min.css @@ -0,0 +1,7 @@ +@import "https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i";@fa-font-path:"../webfonts";/*!* Bootstrap v4.1.3 (https://getbootstrap.com/) +* Copyright 2011-2018 The Bootstrap Authors +* Copyright 2011-2018 Twitter, Inc. +* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)*/:root{--blue:#72A1E5;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#BA5A31;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#888;--gray-dark:#333;--primary:#30638E;--secondary:#FFA630;--success:#3772FF;--info:#C0E0DE;--warning:#ED6A5A;--danger:#ED6A5A;--light:#D3F3EE;--dark:#403F4C;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:"Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--font-family-monospace:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width: device-width; }article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:open sans,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol;font-size:1rem;font-weight:400;line-height:1.5;color:#222;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#3176d9;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#1e53a0;text-decoration:none}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):hover,a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,liberation mono,courier new,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#888;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}button,html [type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{padding:0;border-style:none}input[type=radio],input[type=checkbox]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2;color:inherit}h1,.h1{font-size:2.25rem}h2,.h2{font-size:2rem}h3,.h3{font-size:1.5rem}h4,.h4{font-size:1.35rem}h5,.h5{font-size:1.15rem}h6,.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:3rem;font-weight:700;line-height:1.2}.display-2{font-size:2.5rem;font-weight:700;line-height:1.2}.display-3{font-size:2rem;font-weight:700;line-height:1.2}.display-4{font-size:1.75rem;font-weight:700;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#888}.blockquote-footer::before{content:"\2014 \00A0"}.img-fluid,.td-content img{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#888}code{font-size:87.5%;color:#c97300;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#222;border-radius:.2rem;-webkit-box-shadow:inset 0 -.1rem 0 rgba(0,0,0,.25);box-shadow:inset 0 -.1rem rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;font-size:87.5%;color:#222}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:576px){.container{max-width:540px}}@media(min-width:768px){.container{max-width:720px}}@media(min-width:992px){.container{max-width:960px}}@media(min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col-xl,.col-xl-auto,.col-xl-12,.col-xl-11,.col-xl-10,.col-xl-9,.col-xl-8,.col-xl-7,.col-xl-6,.col-xl-5,.col-xl-4,.col-xl-3,.col-xl-2,.col-xl-1,.col-lg,.col-lg-auto,.col-lg-12,.col-lg-11,.col-lg-10,.col-lg-9,.col-lg-8,.col-lg-7,.col-lg-6,.col-lg-5,.col-lg-4,.col-lg-3,.col-lg-2,.col-lg-1,.col-md,.col-md-auto,.col-md-12,.col-md-11,.col-md-10,.col-md-9,.col-md-8,.col-md-7,.col-md-6,.col-md-5,.col-md-4,.col-md-3,.col-md-2,.col-md-1,.col-sm,.col-sm-auto,.col-sm-12,.col-sm-11,.col-sm-10,.col-sm-9,.col-sm-8,.col-sm-7,.col-sm-6,.col-sm-5,.col-sm-4,.col-sm-3,.col-sm-2,.col-sm-1,.col,.col-auto,.col-12,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2,.col-1{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:none;width:auto;max-width:none}.col-1{-webkit-box-flex:0;-webkit-flex:0 0 8.33333333%;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.col-2{-webkit-box-flex:0;-webkit-flex:0 0 16.66666667%;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.col-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-webkit-flex:0 0 33.33333333%;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.col-5{-webkit-box-flex:0;-webkit-flex:0 0 41.66666667%;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.col-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-webkit-flex:0 0 58.33333333%;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.col-8{-webkit-box-flex:0;-webkit-flex:0 0 66.66666667%;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.col-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-webkit-flex:0 0 83.33333333%;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.col-11{-webkit-box-flex:0;-webkit-flex:0 0 91.66666667%;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.col-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-webkit-order:13;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-webkit-order:4;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-webkit-order:5;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-webkit-order:6;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-webkit-order:7;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-webkit-order:8;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-webkit-order:9;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-webkit-order:10;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-webkit-order:11;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-webkit-order:12;-ms-flex-order:12;order:12}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}@media(min-width:576px){.col-sm{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:none;width:auto;max-width:none}.col-sm-1{-webkit-box-flex:0;-webkit-flex:0 0 8.33333333%;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.col-sm-2{-webkit-box-flex:0;-webkit-flex:0 0 16.66666667%;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-webkit-flex:0 0 33.33333333%;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.col-sm-5{-webkit-box-flex:0;-webkit-flex:0 0 41.66666667%;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.col-sm-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-webkit-flex:0 0 58.33333333%;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.col-sm-8{-webkit-box-flex:0;-webkit-flex:0 0 66.66666667%;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.col-sm-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-webkit-flex:0 0 83.33333333%;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.col-sm-11{-webkit-box-flex:0;-webkit-flex:0 0 91.66666667%;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.col-sm-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-webkit-order:13;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-webkit-order:4;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-webkit-order:5;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-webkit-order:6;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-webkit-order:7;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-webkit-order:8;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-webkit-order:9;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-webkit-order:10;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-webkit-order:11;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-webkit-order:12;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}}@media(min-width:768px){.col-md{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:none;width:auto;max-width:none}.col-md-1{-webkit-box-flex:0;-webkit-flex:0 0 8.33333333%;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.col-md-2{-webkit-box-flex:0;-webkit-flex:0 0 16.66666667%;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-webkit-flex:0 0 33.33333333%;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.col-md-5{-webkit-box-flex:0;-webkit-flex:0 0 41.66666667%;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.col-md-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-webkit-flex:0 0 58.33333333%;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.col-md-8{-webkit-box-flex:0;-webkit-flex:0 0 66.66666667%;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.col-md-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-webkit-flex:0 0 83.33333333%;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.col-md-11{-webkit-box-flex:0;-webkit-flex:0 0 91.66666667%;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.col-md-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-webkit-order:13;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-webkit-order:4;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-webkit-order:5;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-webkit-order:6;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-webkit-order:7;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-webkit-order:8;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-webkit-order:9;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-webkit-order:10;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-webkit-order:11;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-webkit-order:12;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}}@media(min-width:992px){.col-lg{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:none;width:auto;max-width:none}.col-lg-1{-webkit-box-flex:0;-webkit-flex:0 0 8.33333333%;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.col-lg-2{-webkit-box-flex:0;-webkit-flex:0 0 16.66666667%;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-webkit-flex:0 0 33.33333333%;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-5{-webkit-box-flex:0;-webkit-flex:0 0 41.66666667%;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.col-lg-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-webkit-flex:0 0 58.33333333%;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.col-lg-8{-webkit-box-flex:0;-webkit-flex:0 0 66.66666667%;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.col-lg-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-webkit-flex:0 0 83.33333333%;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.col-lg-11{-webkit-box-flex:0;-webkit-flex:0 0 91.66666667%;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.col-lg-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-webkit-order:13;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-webkit-order:4;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-webkit-order:5;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-webkit-order:6;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-webkit-order:7;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-webkit-order:8;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-webkit-order:9;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-webkit-order:10;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-webkit-order:11;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-webkit-order:12;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}}@media(min-width:1200px){.col-xl{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:none;width:auto;max-width:none}.col-xl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.33333333%;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.col-xl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.66666667%;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.33333333%;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.col-xl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.66666667%;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.col-xl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.33333333%;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.col-xl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.66666667%;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.col-xl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.33333333%;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.col-xl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.66666667%;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.col-xl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-webkit-order:13;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-webkit-order:4;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-webkit-order:5;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-webkit-order:6;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-webkit-order:7;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-webkit-order:8;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-webkit-order:9;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-webkit-order:10;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-webkit-order:11;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-webkit-order:12;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}}.table,.td-content>table,.td-box .row.section>table{width:100%;margin-bottom:1rem;background-color:transparent}.table th,.td-content>table th,.td-box .row.section>table th,.table td,.td-content>table td,.td-box .row.section>table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th,.td-content>table thead th,.td-box .row.section>table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody,.td-content>table tbody+tbody,.td-box .row.section>table tbody+tbody{border-top:2px solid #dee2e6}.table .table,.td-content>table .table,.table .td-content>table,.td-content>table .td-content>table,.td-box .row.section>table .table,.td-box .row.section>table .td-content>table,.table .td-box .row.section>table,.td-content>table .td-box .row.section>table,.td-box .table .row.section>table,.td-box .td-content>table .row.section>table,.td-box .row.section>table .row.section>table{background-color:#fff}.table-sm th,.table-sm td{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered th,.table-bordered td{border:1px solid #dee2e6}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd),.td-content>table tbody tr:nth-of-type(odd),.td-box .row.section>table tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,5%)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#c5d3df}.table-hover .table-primary:hover{background-color:#b5c7d6}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#b5c7d6}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#ffe6c5}.table-hover .table-secondary:hover{background-color:#ffdbac}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#ffdbac}.table-success,.table-success>th,.table-success>td{background-color:#c7d8ff}.table-hover .table-success:hover{background-color:#aec6ff}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#aec6ff}.table-info,.table-info>th,.table-info>td{background-color:#edf6f6}.table-hover .table-info:hover{background-color:#dceeee}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#dceeee}.table-warning,.table-warning>th,.table-warning>td{background-color:#fad5d1}.table-hover .table-warning:hover{background-color:#f8c0ba}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#f8c0ba}.table-danger,.table-danger>th,.table-danger>td{background-color:#fad5d1}.table-hover .table-danger:hover{background-color:#f8c0ba}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f8c0ba}.table-light,.table-light>th,.table-light>td{background-color:#f3fcfa}.table-hover .table-light:hover{background-color:#dff7f2}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#dff7f2}.table-dark,.table-dark>th,.table-dark>td{background-color:#cac9cd}.table-hover .table-dark:hover{background-color:#bdbcc1}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#bdbcc1}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th,.td-content>table .thead-dark th,.td-box .row.section>table .thead-dark th{color:#fff;background-color:#222;border-color:#353535}.table .thead-light th,.td-content>table .thead-light th,.td-box .row.section>table .thead-light th{color:#495057;background-color:#eee;border-color:#dee2e6}.table-dark{color:#fff;background-color:#222}.table-dark th,.table-dark td,.table-dark thead th{border-color:#353535}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd),.td-content>table.table-dark tbody tr:nth-of-type(odd),.td-box .row.section>table.table-dark tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,5%)}.table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media(max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-sm>.table-bordered{border:0}}@media(max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-md>.table-bordered{border:0}}@media(max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-lg>.table-bordered{border:0}}@media(max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-xl>.table-bordered{border:0}}.table-responsive,.td-content>table,.td-box .row.section>table{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table-bordered,.td-content>table>.table-bordered,.td-box .row.section>table>.table-bordered{border:0}.form-control{display:block;width:100%;height:-webkit-calc(2.25rem + 2px);height:calc(2.25rem + 2px);padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border-radius:.25rem;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.form-control{-webkit-transition:none;-o-transition:none;transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#6fa3ce;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(48,99,142,.25);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(48,99,142,.25)}.form-control::-webkit-input-placeholder{color:#888;opacity:1}.form-control::-moz-placeholder{color:#888;opacity:1}.form-control:-ms-input-placeholder{color:#888;opacity:1}.form-control::placeholder{color:#888;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eee;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:-webkit-calc(.375rem + 1px);padding-top:calc(.375rem + 1px);padding-bottom:-webkit-calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:-webkit-calc(.5rem + 1px);padding-top:calc(.5rem + 1px);padding-bottom:-webkit-calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:-webkit-calc(.25rem + 1px);padding-top:calc(.25rem + 1px);padding-bottom:-webkit-calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#222;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:-webkit-calc(1.8125rem + 2px);height:calc(1.8125rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:-webkit-calc(2.875rem + 2px);height:calc(2.875rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#888}.form-check-label{margin-bottom:0}.form-check-inline{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#3772ff}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(55,114,255,.9);border-radius:.25rem}.was-validated .form-control:valid,.form-control.is-valid,.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#3772ff}.was-validated .form-control:valid:focus,.form-control.is-valid:focus,.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#3772ff;-webkit-box-shadow:0 0 0 .2rem rgba(55,114,255,.25);box-shadow:0 0 0 .2rem rgba(55,114,255,.25)}.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip{display:block}.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip,.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip{display:block}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#3772ff}.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip,.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip{display:block}.was-validated .custom-control-input:valid~.custom-control-label,.custom-control-input.is-valid~.custom-control-label{color:#3772ff}.was-validated .custom-control-input:valid~.custom-control-label::before,.custom-control-input.is-valid~.custom-control-label::before{background-color:#b7ccff}.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip,.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip{display:block}.was-validated .custom-control-input:valid:checked~.custom-control-label::before,.custom-control-input.is-valid:checked~.custom-control-label::before{background:#6a96ff -webkit-gradient(linear,left top,left bottom,from(#80a6ff),to(#6a96ff))repeat-x;background:#6a96ff -webkit-linear-gradient(top,#80a6ff,#6a96ff)repeat-x;background:#6a96ff -o-linear-gradient(top,#80a6ff,#6a96ff)repeat-x;background:#6a96ff linear-gradient(180deg,#80a6ff,#6a96ff)repeat-x}.was-validated .custom-control-input:valid:focus~.custom-control-label::before,.custom-control-input.is-valid:focus~.custom-control-label::before{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(55,114,255,.25);box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(55,114,255,.25)}.was-validated .custom-file-input:valid~.custom-file-label,.custom-file-input.is-valid~.custom-file-label{border-color:#3772ff}.was-validated .custom-file-input:valid~.custom-file-label::after,.custom-file-input.is-valid~.custom-file-label::after{border-color:inherit}.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip,.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip{display:block}.was-validated .custom-file-input:valid:focus~.custom-file-label,.custom-file-input.is-valid:focus~.custom-file-label{-webkit-box-shadow:0 0 0 .2rem rgba(55,114,255,.25);box-shadow:0 0 0 .2rem rgba(55,114,255,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#ed6a5a}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(237,106,90,.9);border-radius:.25rem}.was-validated .form-control:invalid,.form-control.is-invalid,.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#ed6a5a}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus,.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#ed6a5a;-webkit-box-shadow:0 0 0 .2rem rgba(237,106,90,.25);box-shadow:0 0 0 .2rem rgba(237,106,90,.25)}.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip,.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip{display:block}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#ed6a5a}.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip,.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip{display:block}.was-validated .custom-control-input:invalid~.custom-control-label,.custom-control-input.is-invalid~.custom-control-label{color:#ed6a5a}.was-validated .custom-control-input:invalid~.custom-control-label::before,.custom-control-input.is-invalid~.custom-control-label::before{background-color:#fad2cd}.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip,.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip{display:block}.was-validated .custom-control-input:invalid:checked~.custom-control-label::before,.custom-control-input.is-invalid:checked~.custom-control-label::before{background:#f29488 -webkit-gradient(linear,left top,left bottom,from(#f4a49a),to(#f29488))repeat-x;background:#f29488 -webkit-linear-gradient(top,#f4a49a,#f29488)repeat-x;background:#f29488 -o-linear-gradient(top,#f4a49a,#f29488)repeat-x;background:#f29488 linear-gradient(180deg,#f4a49a,#f29488)repeat-x}.was-validated .custom-control-input:invalid:focus~.custom-control-label::before,.custom-control-input.is-invalid:focus~.custom-control-label::before{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(237,106,90,.25);box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(237,106,90,.25)}.was-validated .custom-file-input:invalid~.custom-file-label,.custom-file-input.is-invalid~.custom-file-label{border-color:#ed6a5a}.was-validated .custom-file-input:invalid~.custom-file-label::after,.custom-file-input.is-invalid~.custom-file-label::after{border-color:inherit}.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip,.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip{display:block}.was-validated .custom-file-input:invalid:focus~.custom-file-label,.custom-file-input.is-invalid:focus~.custom-file-label{-webkit-box-shadow:0 0 0 .2rem rgba(237,106,90,.25);box-shadow:0 0 0 .2rem rgba(237,106,90,.25)}.form-inline{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media(min-width:576px){.form-inline label{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:none;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.btn{-webkit-transition:none;-o-transition:none;transition:none}}.btn:hover,.btn:focus{text-decoration:none}.btn:focus,.btn.focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(48,99,142,.25);box-shadow:0 0 0 .2rem rgba(48,99,142,.25)}.btn.disabled,.btn:disabled{opacity:.65;-webkit-box-shadow:none;box-shadow:none}.btn:not(:disabled):not(.disabled){cursor:pointer}.btn:not(:disabled):not(.disabled):active,.btn:not(:disabled):not(.disabled).active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn:not(:disabled):not(.disabled):active:focus,.btn:not(:disabled):not(.disabled).active:focus{-webkit-box-shadow:0 0 0 .2rem rgba(48,99,142,.25),inset 0 3px 5px rgba(0,0,0,.125);box-shadow:0 0 0 .2rem rgba(48,99,142,.25),inset 0 3px 5px rgba(0,0,0,.125)}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background:#30638e -webkit-gradient(linear,left top,left bottom,from(#4f7a9f),to(#30638E))repeat-x;background:#30638e -webkit-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e -o-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x;border-color:#30638e;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-primary:hover{color:#fff;background:#264f71 -webkit-gradient(linear,left top,left bottom,from(#476987),to(#264f71))repeat-x;background:#264f71 -webkit-linear-gradient(top,#476987,#264f71)repeat-x;background:#264f71 -o-linear-gradient(top,#476987,#264f71)repeat-x;background:#264f71 linear-gradient(180deg,#476987,#264f71)repeat-x;border-color:#234868}.btn-primary:focus,.btn-primary.focus{-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(48,99,142,.5);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(48,99,142,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#30638e;border-color:#30638e}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#234868;background-image:none;border-color:#20425e}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(48,99,142,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(48,99,142,.5)}.btn-secondary{color:#fff;background:#ffa630 -webkit-gradient(linear,left top,left bottom,from(#ffb34f),to(#FFA630))repeat-x;background:#ffa630 -webkit-linear-gradient(top,#ffb34f,#FFA630)repeat-x;background:#ffa630 -o-linear-gradient(top,#ffb34f,#FFA630)repeat-x;background:#ffa630 linear-gradient(180deg,#ffb34f,#FFA630)repeat-x;border-color:#ffa630;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-secondary:hover{color:#fff;background:#ff960a -webkit-gradient(linear,left top,left bottom,from(#ffa52f),to(#ff960a))repeat-x;background:#ff960a -webkit-linear-gradient(top,#ffa52f,#ff960a)repeat-x;background:#ff960a -o-linear-gradient(top,#ffa52f,#ff960a)repeat-x;background:#ff960a linear-gradient(180deg,#ffa52f,#ff960a)repeat-x;border-color:#fc9000}.btn-secondary:focus,.btn-secondary.focus{-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(255,166,48,.5);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(255,166,48,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#ffa630;border-color:#ffa630}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#fc9000;background-image:none;border-color:#ef8800}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(255,166,48,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(255,166,48,.5)}.btn-success{color:#fff;background:#3772ff -webkit-gradient(linear,left top,left bottom,from(#5587ff),to(#3772FF))repeat-x;background:#3772ff -webkit-linear-gradient(top,#5587ff,#3772FF)repeat-x;background:#3772ff -o-linear-gradient(top,#5587ff,#3772FF)repeat-x;background:#3772ff linear-gradient(180deg,#5587ff,#3772FF)repeat-x;border-color:#3772ff;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-success:hover{color:#fff;background:#1157ff -webkit-gradient(linear,left top,left bottom,from(#3470ff),to(#1157ff))repeat-x;background:#1157ff -webkit-linear-gradient(top,#3470ff,#1157ff)repeat-x;background:#1157ff -o-linear-gradient(top,#3470ff,#1157ff)repeat-x;background:#1157ff linear-gradient(180deg,#3470ff,#1157ff)repeat-x;border-color:#044eff}.btn-success:focus,.btn-success.focus{-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(55,114,255,.5);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(55,114,255,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#3772ff;border-color:#3772ff}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#044eff;background-image:none;border-color:#0049f6}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(55,114,255,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(55,114,255,.5)}.btn-info{color:#222;background:#c0e0de -webkit-gradient(linear,left top,left bottom,from(#c9e5e3),to(#C0E0DE))repeat-x;background:#c0e0de -webkit-linear-gradient(top,#c9e5e3,#C0E0DE)repeat-x;background:#c0e0de -o-linear-gradient(top,#c9e5e3,#C0E0DE)repeat-x;background:#c0e0de linear-gradient(180deg,#c9e5e3,#C0E0DE)repeat-x;border-color:#c0e0de;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-info:hover{color:#fff;background:#a6d3d1 -webkit-gradient(linear,left top,left bottom,from(#b4dad8),to(#a6d3d1))repeat-x;background:#a6d3d1 -webkit-linear-gradient(top,#b4dad8,#a6d3d1)repeat-x;background:#a6d3d1 -o-linear-gradient(top,#b4dad8,#a6d3d1)repeat-x;background:#a6d3d1 linear-gradient(180deg,#b4dad8,#a6d3d1)repeat-x;border-color:#9ecfcc}.btn-info:focus,.btn-info.focus{-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(192,224,222,.5);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(192,224,222,.5)}.btn-info.disabled,.btn-info:disabled{color:#222;background-color:#c0e0de;border-color:#c0e0de}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#9ecfcc;background-image:none;border-color:#95cbc8}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(192,224,222,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(192,224,222,.5)}.btn-warning{color:#fff;background:#ed6a5a -webkit-gradient(linear,left top,left bottom,from(#f08073),to(#ED6A5A))repeat-x;background:#ed6a5a -webkit-linear-gradient(top,#f08073,#ED6A5A)repeat-x;background:#ed6a5a -o-linear-gradient(top,#f08073,#ED6A5A)repeat-x;background:#ed6a5a linear-gradient(180deg,#f08073,#ED6A5A)repeat-x;border-color:#ed6a5a;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-warning:hover{color:#fff;background:#e94b38 -webkit-gradient(linear,left top,left bottom,from(#ed6655),to(#e94b38))repeat-x;background:#e94b38 -webkit-linear-gradient(top,#ed6655,#e94b38)repeat-x;background:#e94b38 -o-linear-gradient(top,#ed6655,#e94b38)repeat-x;background:#e94b38 linear-gradient(180deg,#ed6655,#e94b38)repeat-x;border-color:#e8402c}.btn-warning:focus,.btn-warning.focus{-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(237,106,90,.5);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(237,106,90,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#ed6a5a;border-color:#ed6a5a}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#e8402c;background-image:none;border-color:#e73621}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(237,106,90,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(237,106,90,.5)}.btn-danger{color:#fff;background:#ed6a5a -webkit-gradient(linear,left top,left bottom,from(#f08073),to(#ED6A5A))repeat-x;background:#ed6a5a -webkit-linear-gradient(top,#f08073,#ED6A5A)repeat-x;background:#ed6a5a -o-linear-gradient(top,#f08073,#ED6A5A)repeat-x;background:#ed6a5a linear-gradient(180deg,#f08073,#ED6A5A)repeat-x;border-color:#ed6a5a;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger:hover{color:#fff;background:#e94b38 -webkit-gradient(linear,left top,left bottom,from(#ed6655),to(#e94b38))repeat-x;background:#e94b38 -webkit-linear-gradient(top,#ed6655,#e94b38)repeat-x;background:#e94b38 -o-linear-gradient(top,#ed6655,#e94b38)repeat-x;background:#e94b38 linear-gradient(180deg,#ed6655,#e94b38)repeat-x;border-color:#e8402c}.btn-danger:focus,.btn-danger.focus{-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(237,106,90,.5);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(237,106,90,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#ed6a5a;border-color:#ed6a5a}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#e8402c;background-image:none;border-color:#e73621}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(237,106,90,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(237,106,90,.5)}.btn-light{color:#222;background:#d3f3ee -webkit-gradient(linear,left top,left bottom,from(#daf5f1),to(#D3F3EE))repeat-x;background:#d3f3ee -webkit-linear-gradient(top,#daf5f1,#D3F3EE)repeat-x;background:#d3f3ee -o-linear-gradient(top,#daf5f1,#D3F3EE)repeat-x;background:#d3f3ee linear-gradient(180deg,#daf5f1,#D3F3EE)repeat-x;border-color:#d3f3ee;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-light:hover{color:#222;background:#b5ebe2 -webkit-gradient(linear,left top,left bottom,from(#c0eee7),to(#b5ebe2))repeat-x;background:#b5ebe2 -webkit-linear-gradient(top,#c0eee7,#b5ebe2)repeat-x;background:#b5ebe2 -o-linear-gradient(top,#c0eee7,#b5ebe2)repeat-x;background:#b5ebe2 linear-gradient(180deg,#c0eee7,#b5ebe2)repeat-x;border-color:#abe8df}.btn-light:focus,.btn-light.focus{-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(211,243,238,.5);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(211,243,238,.5)}.btn-light.disabled,.btn-light:disabled{color:#222;background-color:#d3f3ee;border-color:#d3f3ee}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#222;background-color:#abe8df;background-image:none;border-color:#a1e5db}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(211,243,238,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(211,243,238,.5)}.btn-dark{color:#fff;background:#403f4c -webkit-gradient(linear,left top,left bottom,from(#5d5c67),to(#403F4C))repeat-x;background:#403f4c -webkit-linear-gradient(top,#5d5c67,#403F4C)repeat-x;background:#403f4c -o-linear-gradient(top,#5d5c67,#403F4C)repeat-x;background:#403f4c linear-gradient(180deg,#5d5c67,#403F4C)repeat-x;border-color:#403f4c;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-dark:hover{color:#fff;background:#2e2e37 -webkit-gradient(linear,left top,left bottom,from(#4e4d55),to(#2e2e37))repeat-x;background:#2e2e37 -webkit-linear-gradient(top,#4e4d55,#2e2e37)repeat-x;background:#2e2e37 -o-linear-gradient(top,#4e4d55,#2e2e37)repeat-x;background:#2e2e37 linear-gradient(180deg,#4e4d55,#2e2e37)repeat-x;border-color:#292830}.btn-dark:focus,.btn-dark.focus{-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(64,63,76,.5);box-shadow:inset 0 1px rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .2rem rgba(64,63,76,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#403f4c;border-color:#403f4c}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#292830;background-image:none;border-color:#232229}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(64,63,76,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(64,63,76,.5)}.btn-outline-primary{color:#30638e;background-color:transparent;background-image:none;border-color:#30638e}.btn-outline-primary:hover{color:#fff;background-color:#30638e;border-color:#30638e}.btn-outline-primary:focus,.btn-outline-primary.focus{-webkit-box-shadow:0 0 0 .2rem rgba(48,99,142,.5);box-shadow:0 0 0 .2rem rgba(48,99,142,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#30638e;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#30638e;border-color:#30638e}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(48,99,142,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(48,99,142,.5)}.btn-outline-secondary{color:#ffa630;background-color:transparent;background-image:none;border-color:#ffa630}.btn-outline-secondary:hover{color:#fff;background-color:#ffa630;border-color:#ffa630}.btn-outline-secondary:focus,.btn-outline-secondary.focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,166,48,.5);box-shadow:0 0 0 .2rem rgba(255,166,48,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#ffa630;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#ffa630;border-color:#ffa630}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(255,166,48,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(255,166,48,.5)}.btn-outline-success{color:#3772ff;background-color:transparent;background-image:none;border-color:#3772ff}.btn-outline-success:hover{color:#fff;background-color:#3772ff;border-color:#3772ff}.btn-outline-success:focus,.btn-outline-success.focus{-webkit-box-shadow:0 0 0 .2rem rgba(55,114,255,.5);box-shadow:0 0 0 .2rem rgba(55,114,255,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#3772ff;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#3772ff;border-color:#3772ff}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(55,114,255,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(55,114,255,.5)}.btn-outline-info{color:#c0e0de;background-color:transparent;background-image:none;border-color:#c0e0de}.btn-outline-info:hover{color:#222;background-color:#c0e0de;border-color:#c0e0de}.btn-outline-info:focus,.btn-outline-info.focus{-webkit-box-shadow:0 0 0 .2rem rgba(192,224,222,.5);box-shadow:0 0 0 .2rem rgba(192,224,222,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#c0e0de;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#222;background-color:#c0e0de;border-color:#c0e0de}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(192,224,222,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(192,224,222,.5)}.btn-outline-warning{color:#ed6a5a;background-color:transparent;background-image:none;border-color:#ed6a5a}.btn-outline-warning:hover{color:#fff;background-color:#ed6a5a;border-color:#ed6a5a}.btn-outline-warning:focus,.btn-outline-warning.focus{-webkit-box-shadow:0 0 0 .2rem rgba(237,106,90,.5);box-shadow:0 0 0 .2rem rgba(237,106,90,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ed6a5a;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#ed6a5a;border-color:#ed6a5a}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(237,106,90,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(237,106,90,.5)}.btn-outline-danger{color:#ed6a5a;background-color:transparent;background-image:none;border-color:#ed6a5a}.btn-outline-danger:hover{color:#fff;background-color:#ed6a5a;border-color:#ed6a5a}.btn-outline-danger:focus,.btn-outline-danger.focus{-webkit-box-shadow:0 0 0 .2rem rgba(237,106,90,.5);box-shadow:0 0 0 .2rem rgba(237,106,90,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#ed6a5a;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#ed6a5a;border-color:#ed6a5a}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(237,106,90,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(237,106,90,.5)}.btn-outline-light{color:#d3f3ee;background-color:transparent;background-image:none;border-color:#d3f3ee}.btn-outline-light:hover{color:#222;background-color:#d3f3ee;border-color:#d3f3ee}.btn-outline-light:focus,.btn-outline-light.focus{-webkit-box-shadow:0 0 0 .2rem rgba(211,243,238,.5);box-shadow:0 0 0 .2rem rgba(211,243,238,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#d3f3ee;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#222;background-color:#d3f3ee;border-color:#d3f3ee}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(211,243,238,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(211,243,238,.5)}.btn-outline-dark{color:#403f4c;background-color:transparent;background-image:none;border-color:#403f4c}.btn-outline-dark:hover{color:#fff;background-color:#403f4c;border-color:#403f4c}.btn-outline-dark:focus,.btn-outline-dark.focus{-webkit-box-shadow:0 0 0 .2rem rgba(64,63,76,.5);box-shadow:0 0 0 .2rem rgba(64,63,76,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#403f4c;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#403f4c;border-color:#403f4c}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(64,63,76,.5);box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .2rem rgba(64,63,76,.5)}.btn-link{font-weight:400;color:#3176d9;background-color:transparent}.btn-link:hover{color:#1e53a0;text-decoration:none;background-color:transparent;border-color:transparent}.btn-link:focus,.btn-link.focus{text-decoration:none;border-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link:disabled,.btn-link.disabled{color:#888;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.fade{-webkit-transition:none;-o-transition:none;transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}@media screen and (prefers-reduced-motion:reduce){.collapsing{-webkit-transition:none;-o-transition:none;transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#222;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem;-webkit-box-shadow:0 .5rem 1rem rgba(0,0,0,.175);box-shadow:0 .5rem 1rem rgba(0,0,0,.175)}.dropdown-menu-right{right:0;left:auto}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=top],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #eee}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#222;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#151515;text-decoration:none;background:#f8f9fa -webkit-gradient(linear,left top,left bottom,from(#f9fafb),to(#f8f9fa))repeat-x;background:#f8f9fa -webkit-linear-gradient(top,#f9fafb,#f8f9fa)repeat-x;background:#f8f9fa -o-linear-gradient(top,#f9fafb,#f8f9fa)repeat-x;background:#f8f9fa linear-gradient(180deg,#f9fafb,#f8f9fa)repeat-x}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background:#30638e -webkit-gradient(linear,left top,left bottom,from(#4f7a9f),to(#30638E))repeat-x;background:#30638e -webkit-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e -o-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x}.dropdown-item.disabled,.dropdown-item:disabled{color:#888;background-color:transparent;background-image:none}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#888;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#222}.btn-group,.btn-group-vertical{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:initial}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group,.btn-group-vertical .btn+.btn,.btn-group-vertical .btn+.btn-group,.btn-group-vertical .btn-group+.btn,.btn-group-vertical .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group.show .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.show .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn-group-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.btn-group-vertical .btn,.btn-group-vertical .btn-group{width:100%}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.custom-select,.input-group>.custom-file{position:relative;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:auto;width:1%;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus~.custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:last-child),.input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-prepend,.input-group-append{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#eee;border:1px solid #ccc;border-radius:.25rem}.input-group-text input[type=radio],.input-group-text input[type=checkbox]{margin-top:0}.input-group-lg>.form-control,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{height:-webkit-calc(2.875rem + 2px);height:calc(2.875rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.form-control,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{height:-webkit-calc(1.8125rem + 2px);height:calc(1.8125rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;background:#30638e -webkit-gradient(linear,left top,left bottom,from(#4f7a9f),to(#30638E))repeat-x;background:#30638e -webkit-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e -o-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x;-webkit-box-shadow:none;box-shadow:none}.custom-control-input:focus~.custom-control-label::before{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(48,99,142,.25);box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(48,99,142,.25)}.custom-control-input:active~.custom-control-label::before{color:#fff;background-color:#95bbdb;-webkit-box-shadow:none;box-shadow:none}.custom-control-input:disabled~.custom-control-label{color:#888}.custom-control-input:disabled~.custom-control-label::before{background-color:#eee}.custom-control-label{position:relative;margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6;-webkit-box-shadow:inset 0 .25rem .25rem rgba(0,0,0,.1);box-shadow:inset 0 .25rem .25rem rgba(0,0,0,.1)}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:50%;-webkit-background-size:50% 50%;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background:#30638e -webkit-gradient(linear,left top,left bottom,from(#4f7a9f),to(#30638E))repeat-x;background:#30638e -webkit-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e -o-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 8 8%22%3E%3Cpath fill=%22%23fff%22 d=%22M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z%22/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{background:#30638e -webkit-gradient(linear,left top,left bottom,from(#4f7a9f),to(#30638E))repeat-x;background:#30638e -webkit-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e -o-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x;-webkit-box-shadow:none;box-shadow:none}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 4 4%22%3E%3Cpath stroke=%22%23fff%22 d=%22M0 2h4%22/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(48,99,142,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(48,99,142,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::before{background:#30638e -webkit-gradient(linear,left top,left bottom,from(#4f7a9f),to(#30638E))repeat-x;background:#30638e -webkit-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e -o-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%22-4 -4 8 8%22%3E%3Ccircle r=%223%22 fill=%22%23fff%22/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(48,99,142,.5)}.custom-select{display:inline-block;width:100%;height:-webkit-calc(2.25rem + 2px);height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 4 5%22%3E%3Cpath fill=%22%23333%22 d=%22M2 0 0 2h4zm0 5L0 3h4z%22/%3E%3C/svg%3E")no-repeat right .75rem center;-webkit-background-size:8px 10px;background-size:8px 10px;border:1px solid #ccc;border-radius:.25rem;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.075);box-shadow:inset 0 1px 2px rgba(0,0,0,.075);-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#6fa3ce;outline:0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 0 .2rem rgba(111,163,206,.5);box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 0 .2rem rgba(111,163,206,.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#888;background-color:#eee}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:-webkit-calc(1.8125rem + 2px);height:calc(1.8125rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:-webkit-calc(2.875rem + 2px);height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:-webkit-calc(2.25rem + 2px);height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:-webkit-calc(2.25rem + 2px);height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#6fa3ce;-webkit-box-shadow:0 0 0 .2rem rgba(48,99,142,.25);box-shadow:0 0 0 .2rem rgba(48,99,142,.25)}.custom-file-input:focus~.custom-file-label::after{border-color:#6fa3ce}.custom-file-input:disabled~.custom-file-label{background-color:#eee}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:-webkit-calc(2.25rem + 2px);height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ccc;border-radius:.25rem;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:2.25rem;padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background:#eee -webkit-gradient(linear,left top,left bottom,from(#f1f1f1),to(#eee))repeat-x;background:#eee -webkit-linear-gradient(top,#f1f1f1,#eee)repeat-x;background:#eee -o-linear-gradient(top,#f1f1f1,#eee)repeat-x;background:#eee linear-gradient(180deg,#f1f1f1,#eee)repeat-x;border-left:1px solid #ccc;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;padding-left:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(48,99,142,.25);box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(48,99,142,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(48,99,142,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(48,99,142,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background:#30638e -webkit-gradient(linear,left top,left bottom,from(#4f7a9f),to(#30638E))repeat-x;background:#30638e -webkit-linear-gradient(top,#4f7a9f,#30638E)repeat-x;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x;border:0;border-radius:1rem;-webkit-box-shadow:0 .1rem .25rem rgba(0,0,0,.1);box-shadow:0 .1rem .25rem rgba(0,0,0,.1);-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media screen and (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;-o-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background:#95bbdb -webkit-gradient(linear,left top,left bottom,from(#a5c5e1),to(#95bbdb))repeat-x;background:#95bbdb -webkit-linear-gradient(top,#a5c5e1,#95bbdb)repeat-x;background:#95bbdb linear-gradient(180deg,#a5c5e1,#95bbdb)repeat-x}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem;-webkit-box-shadow:inset 0 .25rem .25rem rgba(0,0,0,.1);box-shadow:inset 0 .25rem .25rem rgba(0,0,0,.1)}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x;border:0;border-radius:1rem;box-shadow:0 .1rem .25rem rgba(0,0,0,.1);-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media screen and (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-webkit-transition:none;-o-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background:#95bbdb linear-gradient(180deg,#a5c5e1,#95bbdb)repeat-x}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem;box-shadow:inset 0 .25rem .25rem rgba(0,0,0,.1)}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x;border:0;border-radius:1rem;box-shadow:0 .1rem .25rem rgba(0,0,0,.1);-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;appearance:none}@media screen and (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-webkit-transition:none;-o-transition:none;transition:none}}.custom-range::-ms-thumb:active{background:#95bbdb linear-gradient(180deg,#a5c5e1,#95bbdb)repeat-x}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem;box-shadow:inset 0 .25rem .25rem rgba(0,0,0,.1)}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-control-label::before,.custom-file-label,.custom-select{-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{-webkit-transition:none;-o-transition:none;transition:none}}.nav{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#888}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#eee #eee #dee2e6}.nav-tabs .nav-link.disabled{color:#888;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#30638e}.nav-fill .nav-item{-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:auto;text-align:center}.nav-justified .nav-item{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat 50%;-webkit-background-size:100% 100%;background-size:100% 100%}@media(max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media(min-width:576px){.navbar-expand-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media(max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media(min-width:768px){.navbar-expand-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media(max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media(min-width:992px){.navbar-expand-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media(max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media(min-width:1200px){.navbar-expand-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox=%220 0 30 30%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath stroke=%22rgba(0, 0, 0, 0.5)%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-miterlimit=%2210%22 d=%22M4 7h22M4 15h22M4 23h22%22/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.75);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox=%220 0 30 30%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath stroke=%22rgba(255, 255, 255, 0.75)%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-miterlimit=%2210%22 d=%22M4 7h22M4 15h22M4 23h22%22/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:rgba(255,255,255,.75)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card,.td-content .highlight{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr,.td-content .highlight>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child,.td-content .highlight>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child,.td-content .highlight>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,3%);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:-webkit-calc(.25rem - 1px)-webkit-calc(.25rem - 1px)0 0;border-radius:calc(.25rem - 1px)calc(.25rem - 1px)0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,3%);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 -webkit-calc(.25rem - 1px)-webkit-calc(.25rem - 1px);border-radius:0 0 calc(.25rem - 1px)calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:-webkit-calc(.25rem - 1px);border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:-webkit-calc(.25rem - 1px);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:-webkit-calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:-webkit-calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:-webkit-calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.card-deck .card,.card-deck .td-content .highlight,.td-content .card-deck .highlight{margin-bottom:15px}@media(min-width:576px){.card-deck{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card,.card-deck .td-content .highlight,.td-content .card-deck .highlight{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1 0 0%;-ms-flex:1 0 0%;flex:1 0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.card-group>.card,.td-content .card-group>.highlight{margin-bottom:15px}@media(min-width:576px){.card-group{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card,.td-content .card-group>.highlight{-webkit-box-flex:1;-webkit-flex:1 0 0%;-ms-flex:1 0 0%;flex:1 0;margin-bottom:0}.card-group>.card+.card,.td-content .card-group>.highlight+.card,.td-content .card-group>.card+.highlight,.td-content .card-group>.highlight+.highlight{margin-left:0;border-left:0}.card-group>.card:first-child,.td-content .card-group>.highlight:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:first-child .card-img-top,.td-content .card-group>.highlight:first-child .card-img-top,.card-group>.card:first-child .card-header,.td-content .card-group>.highlight:first-child .card-header{border-top-right-radius:0}.card-group>.card:first-child .card-img-bottom,.td-content .card-group>.highlight:first-child .card-img-bottom,.card-group>.card:first-child .card-footer,.td-content .card-group>.highlight:first-child .card-footer{border-bottom-right-radius:0}.card-group>.card:last-child,.td-content .card-group>.highlight:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:last-child .card-img-top,.td-content .card-group>.highlight:last-child .card-img-top,.card-group>.card:last-child .card-header,.td-content .card-group>.highlight:last-child .card-header{border-top-left-radius:0}.card-group>.card:last-child .card-img-bottom,.td-content .card-group>.highlight:last-child .card-img-bottom,.card-group>.card:last-child .card-footer,.td-content .card-group>.highlight:last-child .card-footer{border-bottom-left-radius:0}.card-group>.card:only-child,.td-content .card-group>.highlight:only-child{border-radius:.25rem}.card-group>.card:only-child .card-img-top,.td-content .card-group>.highlight:only-child .card-img-top,.card-group>.card:only-child .card-header,.td-content .card-group>.highlight:only-child .card-header{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-group>.card:only-child .card-img-bottom,.td-content .card-group>.highlight:only-child .card-img-bottom,.card-group>.card:only-child .card-footer,.td-content .card-group>.highlight:only-child .card-footer{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-group>.card:not(:first-child):not(:last-child):not(:only-child),.td-content .card-group>.highlight:not(:first-child):not(:last-child):not(:only-child){border-radius:0}.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,.td-content .card-group>.highlight:not(:first-child):not(:last-child):not(:only-child) .card-img-top,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.td-content .card-group>.highlight:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,.td-content .card-group>.highlight:not(:first-child):not(:last-child):not(:only-child) .card-header,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,.td-content .card-group>.highlight:not(:first-child):not(:last-child):not(:only-child) .card-footer{border-radius:0}}.card-columns .card,.card-columns .td-content .highlight,.td-content .card-columns .highlight{margin-bottom:.75rem}@media(min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card,.card-columns .td-content .highlight,.td-content .card-columns .highlight{display:inline-block;width:100%}}.accordion .card:not(:first-of-type):not(:last-of-type),.accordion .td-content .highlight:not(:first-of-type):not(:last-of-type),.td-content .accordion .highlight:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion .card:not(:first-of-type) .card-header:first-child,.accordion .td-content .highlight:not(:first-of-type) .card-header:first-child,.td-content .accordion .highlight:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion .card:first-of-type,.accordion .td-content .highlight:first-of-type,.td-content .accordion .highlight:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion .card:last-of-type,.accordion .td-content .highlight:last-of-type,.td-content .accordion .highlight:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.breadcrumb{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#eee;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#888;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#888}.pagination{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#888;background-color:#fff;border:1px solid rgba(0,0,0,.1)}.page-link:hover{z-index:2;color:#1e53a0;text-decoration:none;background-color:#eee;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(48,99,142,.25);box-shadow:0 0 0 .2rem rgba(48,99,142,.25)}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#30638e;border-color:#2a567b}.page-item.disabled .page-link{color:#dee2e6;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#30638e}.badge-primary[href]:hover,.badge-primary[href]:focus{color:#fff;text-decoration:none;background-color:#234868}.badge-secondary{color:#fff;background-color:#ffa630}.badge-secondary[href]:hover,.badge-secondary[href]:focus{color:#fff;text-decoration:none;background-color:#fc9000}.badge-success{color:#fff;background-color:#3772ff}.badge-success[href]:hover,.badge-success[href]:focus{color:#fff;text-decoration:none;background-color:#044eff}.badge-info{color:#222;background-color:#c0e0de}.badge-info[href]:hover,.badge-info[href]:focus{color:#222;text-decoration:none;background-color:#9ecfcc}.badge-warning{color:#fff;background-color:#ed6a5a}.badge-warning[href]:hover,.badge-warning[href]:focus{color:#fff;text-decoration:none;background-color:#e8402c}.badge-danger{color:#fff;background-color:#ed6a5a}.badge-danger[href]:hover,.badge-danger[href]:focus{color:#fff;text-decoration:none;background-color:#e8402c}.badge-light{color:#222;background-color:#d3f3ee}.badge-light[href]:hover,.badge-light[href]:focus{color:#222;text-decoration:none;background-color:#abe8df}.badge-dark{color:#fff;background-color:#403f4c}.badge-dark[href]:hover,.badge-dark[href]:focus{color:#fff;text-decoration:none;background-color:#292830}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#eee;border-radius:.3rem}@media(min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#19334a;background:#d6e0e8 -webkit-gradient(linear,left top,left bottom,from(#dce5eb),to(#d6e0e8))repeat-x;background:#d6e0e8 -webkit-linear-gradient(top,#dce5eb,#d6e0e8)repeat-x;background:#d6e0e8 -o-linear-gradient(top,#dce5eb,#d6e0e8)repeat-x;background:#d6e0e8 linear-gradient(180deg,#dce5eb,#d6e0e8)repeat-x;border-color:#c5d3df}.alert-primary hr{border-top-color:#b5c7d6}.alert-primary .alert-link{color:#0c1924}.alert-secondary{color:#855619;background:#ffedd6 -webkit-gradient(linear,left top,left bottom,from(#fff0dc),to(#ffedd6))repeat-x;background:#ffedd6 -webkit-linear-gradient(top,#fff0dc,#ffedd6)repeat-x;background:#ffedd6 -o-linear-gradient(top,#fff0dc,#ffedd6)repeat-x;background:#ffedd6 linear-gradient(180deg,#fff0dc,#ffedd6)repeat-x;border-color:#ffe6c5}.alert-secondary hr{border-top-color:#ffdbac}.alert-secondary .alert-link{color:#5a3a11}.alert-success{color:#1d3b85;background:#d7e3ff -webkit-gradient(linear,left top,left bottom,from(#dde7ff),to(#d7e3ff))repeat-x;background:#d7e3ff -webkit-linear-gradient(top,#dde7ff,#d7e3ff)repeat-x;background:#d7e3ff -o-linear-gradient(top,#dde7ff,#d7e3ff)repeat-x;background:#d7e3ff linear-gradient(180deg,#dde7ff,#d7e3ff)repeat-x;border-color:#c7d8ff}.alert-success hr{border-top-color:#aec6ff}.alert-success .alert-link{color:#14285b}.alert-info{color:#647473;background:#f2f9f8 -webkit-gradient(linear,left top,left bottom,from(#f4faf9),to(#f2f9f8))repeat-x;background:#f2f9f8 -webkit-linear-gradient(top,#f4faf9,#f2f9f8)repeat-x;background:#f2f9f8 -o-linear-gradient(top,#f4faf9,#f2f9f8)repeat-x;background:#f2f9f8 linear-gradient(180deg,#f4faf9,#f2f9f8)repeat-x;border-color:#edf6f6}.alert-info hr{border-top-color:#dceeee}.alert-info .alert-link{color:#4c5958}.alert-warning{color:#7b372f;background:#fbe1de -webkit-gradient(linear,left top,left bottom,from(#fce6e3),to(#fbe1de))repeat-x;background:#fbe1de -webkit-linear-gradient(top,#fce6e3,#fbe1de)repeat-x;background:#fbe1de -o-linear-gradient(top,#fce6e3,#fbe1de)repeat-x;background:#fbe1de linear-gradient(180deg,#fce6e3,#fbe1de)repeat-x;border-color:#fad5d1}.alert-warning hr{border-top-color:#f8c0ba}.alert-warning .alert-link{color:#562721}.alert-danger{color:#7b372f;background:#fbe1de -webkit-gradient(linear,left top,left bottom,from(#fce6e3),to(#fbe1de))repeat-x;background:#fbe1de -webkit-linear-gradient(top,#fce6e3,#fbe1de)repeat-x;background:#fbe1de -o-linear-gradient(top,#fce6e3,#fbe1de)repeat-x;background:#fbe1de linear-gradient(180deg,#fce6e3,#fbe1de)repeat-x;border-color:#fad5d1}.alert-danger hr{border-top-color:#f8c0ba}.alert-danger .alert-link{color:#562721}.alert-light{color:#6e7e7c;background:#f6fdfc -webkit-gradient(linear,left top,left bottom,from(#f7fdfc),to(#f6fdfc))repeat-x;background:#f6fdfc -webkit-linear-gradient(top,#f7fdfc,#f6fdfc)repeat-x;background:#f6fdfc -o-linear-gradient(top,#f7fdfc,#f6fdfc)repeat-x;background:#f6fdfc linear-gradient(180deg,#f7fdfc,#f6fdfc)repeat-x;border-color:#f3fcfa}.alert-light hr{border-top-color:#dff7f2}.alert-light .alert-link{color:#566361}.alert-dark{color:#212128;background:#d9d9db -webkit-gradient(linear,left top,left bottom,from(#dfdfe0),to(#d9d9db))repeat-x;background:#d9d9db -webkit-linear-gradient(top,#dfdfe0,#d9d9db)repeat-x;background:#d9d9db -o-linear-gradient(top,#dfdfe0,#d9d9db)repeat-x;background:#d9d9db linear-gradient(180deg,#dfdfe0,#d9d9db)repeat-x;border-color:#cac9cd}.alert-dark hr{border-top-color:#bdbcc1}.alert-dark .alert-link{color:#0a0a0c}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#eee;border-radius:.25rem;-webkit-box-shadow:inset 0 .1rem .1rem rgba(0,0,0,.1);box-shadow:inset 0 .1rem .1rem rgba(0,0,0,.1)}.progress-bar{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#30638e;-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}@media screen and (prefers-reduced-motion:reduce){.progress-bar{-webkit-transition:none;-o-transition:none;transition:none}}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:1rem 1rem;background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;-o-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}.media{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.media-body{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.list-group{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#222;background-color:#eee}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item:hover,.list-group-item:focus{z-index:1;text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#888;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#30638e;border-color:#30638e}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-item-primary{color:#19334a;background-color:#c5d3df}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#19334a;background-color:#b5c7d6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#19334a;border-color:#19334a}.list-group-item-secondary{color:#855619;background-color:#ffe6c5}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#855619;background-color:#ffdbac}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#855619;border-color:#855619}.list-group-item-success{color:#1d3b85;background-color:#c7d8ff}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#1d3b85;background-color:#aec6ff}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#1d3b85;border-color:#1d3b85}.list-group-item-info{color:#647473;background-color:#edf6f6}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#647473;background-color:#dceeee}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#647473;border-color:#647473}.list-group-item-warning{color:#7b372f;background-color:#fad5d1}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#7b372f;background-color:#f8c0ba}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#7b372f;border-color:#7b372f}.list-group-item-danger{color:#7b372f;background-color:#fad5d1}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#7b372f;background-color:#f8c0ba}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#7b372f;border-color:#7b372f}.list-group-item-light{color:#6e7e7c;background-color:#f3fcfa}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#6e7e7c;background-color:#dff7f2}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#6e7e7c;border-color:#6e7e7c}.list-group-item-dark{color:#212128;background-color:#cac9cd}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#212128;background-color:#bdbcc1}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#212128;border-color:#212128}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:not(:disabled):not(.disabled){cursor:pointer}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{color:#000;text-decoration:none;opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}@media screen and (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{-webkit-transition:none;-o-transition:none;transition:none}}.modal.show .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-dialog-centered{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;min-height:-webkit-calc(100% - (.5rem * 2));min-height:calc(100% - (.5rem * 2))}.modal-dialog-centered::before{display:block;height:-webkit-calc(100vh - (.5rem * 2));height:calc(100vh - (.5rem * 2));content:""}.modal-content{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;-webkit-box-shadow:0 .25rem .5rem rgba(0,0,0,.5);box-shadow:0 .25rem .5rem rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #eee;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:auto;padding:1rem}.modal-footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #eee}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:-webkit-calc(100% - (1.75rem * 2));min-height:calc(100% - (1.75rem * 2))}.modal-dialog-centered::before{height:-webkit-calc(100vh - (1.75rem * 2));height:calc(100vh - (1.75rem * 2))}.modal-content{-webkit-box-shadow:0 .5rem 1rem rgba(0,0,0,.5);box-shadow:0 .5rem 1rem rgba(0,0,0,.5)}.modal-sm{max-width:300px}}@media(min-width:992px){.modal-lg{max-width:800px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:open sans,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^=top]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^=top] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^=top] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^=right]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^=right] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^=right] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^=bottom] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^=bottom] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^=left]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^=left] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^=left] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:open sans,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;-webkit-box-shadow:0 .25rem .5rem rgba(0,0,0,.2);box-shadow:0 .25rem .5rem rgba(0,0,0,.2)}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^=top]{margin-bottom:.5rem}.bs-popover-top .arrow,.bs-popover-auto[x-placement^=top] .arrow{bottom:-webkit-calc((.5rem + 1px) * -1);bottom:calc((.5rem + 1px) * -1)}.bs-popover-top .arrow::before,.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::after{border-width:.5rem .5rem 0}.bs-popover-top .arrow::before,.bs-popover-auto[x-placement^=top] .arrow::before{bottom:0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::after{bottom:1px;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^=right]{margin-left:.5rem}.bs-popover-right .arrow,.bs-popover-auto[x-placement^=right] .arrow{left:-webkit-calc((.5rem + 1px) * -1);left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right .arrow::before,.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::after{border-width:.5rem .5rem .5rem 0}.bs-popover-right .arrow::before,.bs-popover-auto[x-placement^=right] .arrow::before{left:0;border-right-color:rgba(0,0,0,.25)}.bs-popover-right .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::after{left:1px;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^=bottom]{margin-top:.5rem}.bs-popover-bottom .arrow,.bs-popover-auto[x-placement^=bottom] .arrow{top:-webkit-calc((.5rem + 1px) * -1);top:calc((.5rem + 1px) * -1)}.bs-popover-bottom .arrow::before,.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::after{border-width:0 .5rem .5rem}.bs-popover-bottom .arrow::before,.bs-popover-auto[x-placement^=bottom] .arrow::before{top:0;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::after{top:1px;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^=left]{margin-right:.5rem}.bs-popover-left .arrow,.bs-popover-auto[x-placement^=left] .arrow{right:-webkit-calc((.5rem + 1px) * -1);right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left .arrow::before,.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::after{border-width:.5rem 0 .5rem .5rem}.bs-popover-left .arrow::before,.bs-popover-auto[x-placement^=left] .arrow::before{right:0;border-left-color:rgba(0,0,0,.25)}.bs-popover-left .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::after{right:1px;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:inherit;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:-webkit-calc(.3rem - 1px);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:-webkit-calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#222}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block;-webkit-transition:-webkit-transform .6s ease;transition:-webkit-transform .6s ease;-o-transition:-o-transform .6s ease;transition:transform .6s ease;transition:transform .6s ease,-webkit-transform .6s ease,-o-transform .6s ease}@media screen and (prefers-reduced-motion:reduce){.carousel-item.active,.carousel-item-next,.carousel-item-prev{-webkit-transition:none;-o-transition:none;transition:none}}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}@supports((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-item-next,.active.carousel-item-right{-webkit-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translateX(100%)}@supports((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-next,.active.carousel-item-right{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.carousel-item-prev,.active.carousel-item-left{-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}@supports((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-prev,.active.carousel-item-left{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.carousel-fade .carousel-item{opacity:0;-webkit-transition-duration:.6s;-o-transition-duration:.6s;transition-duration:.6s;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0}.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active,.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev{-webkit-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}@supports((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active,.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0;background:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.25)),to(rgba(0,0,0,.1%)));background:-webkit-linear-gradient(left,rgba(0,0,0,.25),rgba(0,0,0,.1%));background:-o-linear-gradient(left,rgba(0,0,0,.25),rgba(0,0,0,.1%));background:linear-gradient(90deg,rgba(0,0,0,.25),rgba(0,0,0,.1%))}.carousel-control-next{right:0;background:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.25)),to(rgba(0,0,0,.1%)));background:-webkit-linear-gradient(right,rgba(0,0,0,.25),rgba(0,0,0,.1%));background:-o-linear-gradient(right,rgba(0,0,0,.25),rgba(0,0,0,.1%));background:linear-gradient(270deg,rgba(0,0,0,.25),rgba(0,0,0,.1%))}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%;-webkit-background-size:100% 100%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill=%22%23fff%22 viewBox=%220 0 8 8%22%3E%3Cpath d=%22M5.25.0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25.0z%22/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 fill=%22%23fff%22 viewBox=%220 0 8 8%22%3E%3Cpath d=%22M2.75.0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z%22/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;left:0;z-index:15;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{position:relative;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:initial;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:rgba(255,255,255,.5)}.carousel-indicators li::before{position:absolute;top:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li::after{position:absolute;bottom:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#30638e!important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#234868!important}.bg-secondary{background-color:#ffa630!important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#fc9000!important}.bg-success{background-color:#3772ff!important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#044eff!important}.bg-info{background-color:#c0e0de!important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#9ecfcc!important}.bg-warning{background-color:#ed6a5a!important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#e8402c!important}.bg-danger{background-color:#ed6a5a!important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#e8402c!important}.bg-light{background-color:#d3f3ee!important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#abe8df!important}.bg-dark{background-color:#403f4c!important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#292830!important}.bg-gradient-primary{background:#30638e -webkit-gradient(linear,left top,left bottom,from(#4f7a9f),to(#30638E))repeat-x!important;background:#30638e -webkit-linear-gradient(top,#4f7a9f,#30638E)repeat-x!important;background:#30638e -o-linear-gradient(top,#4f7a9f,#30638E)repeat-x!important;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x!important}.bg-gradient-secondary{background:#ffa630 -webkit-gradient(linear,left top,left bottom,from(#ffb34f),to(#FFA630))repeat-x!important;background:#ffa630 -webkit-linear-gradient(top,#ffb34f,#FFA630)repeat-x!important;background:#ffa630 -o-linear-gradient(top,#ffb34f,#FFA630)repeat-x!important;background:#ffa630 linear-gradient(180deg,#ffb34f,#FFA630)repeat-x!important}.bg-gradient-success{background:#3772ff -webkit-gradient(linear,left top,left bottom,from(#5587ff),to(#3772FF))repeat-x!important;background:#3772ff -webkit-linear-gradient(top,#5587ff,#3772FF)repeat-x!important;background:#3772ff -o-linear-gradient(top,#5587ff,#3772FF)repeat-x!important;background:#3772ff linear-gradient(180deg,#5587ff,#3772FF)repeat-x!important}.bg-gradient-info{background:#c0e0de -webkit-gradient(linear,left top,left bottom,from(#c9e5e3),to(#C0E0DE))repeat-x!important;background:#c0e0de -webkit-linear-gradient(top,#c9e5e3,#C0E0DE)repeat-x!important;background:#c0e0de -o-linear-gradient(top,#c9e5e3,#C0E0DE)repeat-x!important;background:#c0e0de linear-gradient(180deg,#c9e5e3,#C0E0DE)repeat-x!important}.bg-gradient-warning{background:#ed6a5a -webkit-gradient(linear,left top,left bottom,from(#f08073),to(#ED6A5A))repeat-x!important;background:#ed6a5a -webkit-linear-gradient(top,#f08073,#ED6A5A)repeat-x!important;background:#ed6a5a -o-linear-gradient(top,#f08073,#ED6A5A)repeat-x!important;background:#ed6a5a linear-gradient(180deg,#f08073,#ED6A5A)repeat-x!important}.bg-gradient-danger{background:#ed6a5a -webkit-gradient(linear,left top,left bottom,from(#f08073),to(#ED6A5A))repeat-x!important;background:#ed6a5a -webkit-linear-gradient(top,#f08073,#ED6A5A)repeat-x!important;background:#ed6a5a -o-linear-gradient(top,#f08073,#ED6A5A)repeat-x!important;background:#ed6a5a linear-gradient(180deg,#f08073,#ED6A5A)repeat-x!important}.bg-gradient-light{background:#d3f3ee -webkit-gradient(linear,left top,left bottom,from(#daf5f1),to(#D3F3EE))repeat-x!important;background:#d3f3ee -webkit-linear-gradient(top,#daf5f1,#D3F3EE)repeat-x!important;background:#d3f3ee -o-linear-gradient(top,#daf5f1,#D3F3EE)repeat-x!important;background:#d3f3ee linear-gradient(180deg,#daf5f1,#D3F3EE)repeat-x!important}.bg-gradient-dark{background:#403f4c -webkit-gradient(linear,left top,left bottom,from(#5d5c67),to(#403F4C))repeat-x!important;background:#403f4c -webkit-linear-gradient(top,#5d5c67,#403F4C)repeat-x!important;background:#403f4c -o-linear-gradient(top,#5d5c67,#403F4C)repeat-x!important;background:#403f4c linear-gradient(180deg,#5d5c67,#403F4C)repeat-x!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#30638e!important}.border-secondary{border-color:#ffa630!important}.border-success{border-color:#3772ff!important}.border-info{border-color:#c0e0de!important}.border-warning{border-color:#ed6a5a!important}.border-danger{border-color:#ed6a5a!important}.border-light{border-color:#d3f3ee!important}.border-dark{border-color:#403f4c!important}.border-white{border-color:#fff!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-circle{border-radius:50%!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media(min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.85714286%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;-ms-flex:1 1 auto!important;flex:auto!important}.flex-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-webkit-flex-shrink:0!important;-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-webkit-flex-shrink:1!important;-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}@media(min-width:576px){.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;-ms-flex:1 1 auto!important;flex:auto!important}.flex-sm-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-webkit-flex-shrink:0!important;-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-webkit-flex-shrink:1!important;-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media(min-width:768px){.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;-ms-flex:1 1 auto!important;flex:auto!important}.flex-md-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-webkit-flex-shrink:0!important;-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-webkit-flex-shrink:1!important;-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media(min-width:992px){.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;-ms-flex:1 1 auto!important;flex:auto!important}.flex-lg-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-webkit-flex-shrink:0!important;-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-webkit-flex-shrink:1!important;-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media(min-width:1200px){.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;-ms-flex:1 1 auto!important;flex:auto!important}.flex-xl-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-webkit-flex-shrink:0!important;-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-webkit-flex-shrink:1!important;-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media(min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media(min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media(min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media(min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{-webkit-box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important;box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{-webkit-box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important;box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{-webkit-box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important;box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{-webkit-box-shadow:none!important;box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media(min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media(min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media(min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media(min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,liberation mono,courier new,monospace}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media(min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media(min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media(min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media(min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#30638e!important}a.text-primary:hover,a.text-primary:focus{color:#234868!important}.text-secondary{color:#ffa630!important}a.text-secondary:hover,a.text-secondary:focus{color:#fc9000!important}.text-success{color:#3772ff!important}a.text-success:hover,a.text-success:focus{color:#044eff!important}.text-info{color:#c0e0de!important}a.text-info:hover,a.text-info:focus{color:#9ecfcc!important}.text-warning{color:#ed6a5a!important}a.text-warning:hover,a.text-warning:focus{color:#e8402c!important}.text-danger{color:#ed6a5a!important}a.text-danger:hover,a.text-danger:focus{color:#e8402c!important}.text-light{color:#d3f3ee!important}a.text-light:hover,a.text-light:focus{color:#abe8df!important}.text-dark{color:#403f4c!important}a.text-dark:hover,a.text-dark:focus{color:#292830!important}.text-body{color:#222!important}.text-muted{color:#888!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,*::before,*::after{text-shadow:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title)")"}pre{white-space:pre-wrap!important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table,.td-content>table,.td-box .row.section>table{border-collapse:collapse!important}.table td,.td-content>table td,.td-box .row.section>table td,.table th,.td-content>table th,.td-box .row.section>table th{background-color:#fff!important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#dee2e6}.table .thead-dark th,.td-content>table .thead-dark th,.td-box .row.section>table .thead-dark th{color:inherit;border-color:#dee2e6}}/*!* Font Awesome Free 5.10.1 by @fontawesome - https://fontawesome.com +* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)*/.fa,.fas,.far,.fal,.fad,.fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fas.fa-pull-left,.far.fa-pull-left,.fal.fa-pull-left,.fab.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fas.fa-pull-right,.far.fa-pull-right,.fal.fa-pull-right,.fab.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;-o-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);-o-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-o-keyframes fa-spin{0%{-o-transform:rotate(0);transform:rotate(0)}100%{-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(-1,-1);-ms-transform:scale(-1,-1);-o-transform:scale(-1,-1);transform:scale(-1,-1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-flip-both{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}/*!* Font Awesome Free 5.10.1 by @fontawesome - https://fontawesome.com +* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)*/@font-face{font-family:'font awesome 5 free';font-style:normal;font-weight:900;font-display:auto;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix)format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2)format("woff2"),url(../webfonts/fa-solid-900.woff)format("woff"),url(../webfonts/fa-solid-900.ttf)format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome)format("svg")}.fa,.fas{font-family:'font awesome 5 free';font-weight:900}/*!* Font Awesome Free 5.10.1 by @fontawesome - https://fontawesome.com +* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)*/@font-face{font-family:'font awesome 5 brands';font-style:normal;font-weight:400;font-display:auto;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix)format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2)format("woff2"),url(../webfonts/fa-brands-400.woff)format("woff"),url(../webfonts/fa-brands-400.ttf)format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome)format("svg")}.fab{font-family:'font awesome 5 brands'}.td-border-top{border:none;border-top:1px solid #eee}.td-border-none{border:none}.td-block-padding,.td-default main section{padding-top:4rem;padding-bottom:4rem}@media(min-width:768px){.td-block-padding,.td-default main section{padding-top:5rem;padding-bottom:5rem}}.td-overlay{position:relative}.td-overlay::after{content:"";position:absolute;top:0;right:0;bottom:0;left:0}.td-overlay--dark::after{background-color:rgba(64,63,76,.3)}.td-overlay--light::after{background-color:rgba(211,243,238,.3)}.td-overlay__inner{position:relative;z-index:1}@media(min-width:992px){.td-max-width-on-larger-screens,.td-content>pre,.td-content>.highlight,.td-content>.lead,.td-content>h1,.td-content>h2,.td-content>ul,.td-content>ol,.td-content>p,.td-content>blockquote,.td-content>dl dd,.td-content .footnotes,.td-content>.alert{max-width:80%}}.td-box--height-min{min-height:300px}.td-box--height-med{min-height:400px}.td-box--height-max{min-height:500px}.td-box--height-full{min-height:100vh}@media(min-width:768px){.td-box--height-min{min-height:450px}.td-box--height-med{min-height:500px}.td-box--height-max{min-height:650px}}.td-box .row.section{padding-left:5rem;padding-right:5rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.td-box .row{padding-left:5rem;padding-right:5rem;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.td-box.linkbox{padding:5rem}.td-box--0{color:#fff;background-color:#403f4c}.td-box--0 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#403f4c transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--0 p>a{color:#d9e5f8}.td-box--10.td-box--gradient{background:#403f4c -webkit-gradient(linear,left top,left bottom,from(#5d5c67),to(#403F4C))repeat-x!important;background:#403f4c -webkit-linear-gradient(top,#5d5c67,#403F4C)repeat-x!important;background:#403f4c -o-linear-gradient(top,#5d5c67,#403F4C)repeat-x!important;background:#403f4c linear-gradient(180deg,#5d5c67,#403F4C)repeat-x!important}.td-box--1{color:#fff;background-color:#30638e}.td-box--1 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#30638e transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--1 p>a{color:#cadcf5}.td-box--11.td-box--gradient{background:#30638e -webkit-gradient(linear,left top,left bottom,from(#4f7a9f),to(#30638E))repeat-x!important;background:#30638e -webkit-linear-gradient(top,#4f7a9f,#30638E)repeat-x!important;background:#30638e -o-linear-gradient(top,#4f7a9f,#30638E)repeat-x!important;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x!important}.td-box--2{color:#fff;background-color:#ffa630}.td-box--2 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#ffa630 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--2 p>a{color:#abc7f0}.td-box--12.td-box--gradient{background:#ffa630 -webkit-gradient(linear,left top,left bottom,from(#ffb34f),to(#FFA630))repeat-x!important;background:#ffa630 -webkit-linear-gradient(top,#ffb34f,#FFA630)repeat-x!important;background:#ffa630 -o-linear-gradient(top,#ffb34f,#FFA630)repeat-x!important;background:#ffa630 linear-gradient(180deg,#ffb34f,#FFA630)repeat-x!important}.td-box--3{color:#222;background-color:#c0e0de}.td-box--3 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#c0e0de transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--3 p>a{color:#638ac1}.td-box--13.td-box--gradient{background:#c0e0de -webkit-gradient(linear,left top,left bottom,from(#c9e5e3),to(#C0E0DE))repeat-x!important;background:#c0e0de -webkit-linear-gradient(top,#c9e5e3,#C0E0DE)repeat-x!important;background:#c0e0de -o-linear-gradient(top,#c9e5e3,#C0E0DE)repeat-x!important;background:#c0e0de linear-gradient(180deg,#c9e5e3,#C0E0DE)repeat-x!important}.td-box--4{color:#222;background-color:#fff}.td-box--4 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#fff transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--4 p>a{color:#72a1e5}.td-box--14.td-box--gradient{background:#fff -webkit-gradient(linear,left top,left bottom,from(white),to(white))repeat-x!important;background:#fff -webkit-linear-gradient(top,white,white)repeat-x!important;background:#fff -o-linear-gradient(top,white,white)repeat-x!important;background:#fff linear-gradient(180deg,white,white)repeat-x!important}.td-box--5{color:#fff;background-color:#888}.td-box--5 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#888 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--5 p>a{color:#b4cdf1}.td-box--15.td-box--gradient{background:#888 -webkit-gradient(linear,left top,left bottom,from(#9a9a9a),to(#888))repeat-x!important;background:#888 -webkit-linear-gradient(top,#9a9a9a,#888)repeat-x!important;background:#888 -o-linear-gradient(top,#9a9a9a,#888)repeat-x!important;background:#888 linear-gradient(180deg,#9a9a9a,#888)repeat-x!important}.td-box--6{color:#fff;background-color:#3772ff}.td-box--6 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#3772ff transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--6 p>a{color:#a9c6ef}.td-box--16.td-box--gradient{background:#3772ff -webkit-gradient(linear,left top,left bottom,from(#5587ff),to(#3772FF))repeat-x!important;background:#3772ff -webkit-linear-gradient(top,#5587ff,#3772FF)repeat-x!important;background:#3772ff -o-linear-gradient(top,#5587ff,#3772FF)repeat-x!important;background:#3772ff linear-gradient(180deg,#5587ff,#3772FF)repeat-x!important}.td-box--7{color:#fff;background-color:#ed6a5a}.td-box--7 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#ed6a5a transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--7 p>a{color:#a5c3ee}.td-box--17.td-box--gradient{background:#ed6a5a -webkit-gradient(linear,left top,left bottom,from(#f08073),to(#ED6A5A))repeat-x!important;background:#ed6a5a -webkit-linear-gradient(top,#f08073,#ED6A5A)repeat-x!important;background:#ed6a5a -o-linear-gradient(top,#f08073,#ED6A5A)repeat-x!important;background:#ed6a5a linear-gradient(180deg,#f08073,#ED6A5A)repeat-x!important}.td-box--8{color:#fff;background-color:#403f4c}.td-box--8 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#403f4c transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--8 p>a{color:#d9e5f8}.td-box--18.td-box--gradient{background:#403f4c -webkit-gradient(linear,left top,left bottom,from(#5d5c67),to(#403F4C))repeat-x!important;background:#403f4c -webkit-linear-gradient(top,#5d5c67,#403F4C)repeat-x!important;background:#403f4c -o-linear-gradient(top,#5d5c67,#403F4C)repeat-x!important;background:#403f4c linear-gradient(180deg,#5d5c67,#403F4C)repeat-x!important}.td-box--9{color:#fff;background-color:#ed6a5a}.td-box--9 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#ed6a5a transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--9 p>a{color:#a5c3ee}.td-box--19.td-box--gradient{background:#ed6a5a -webkit-gradient(linear,left top,left bottom,from(#f08073),to(#ED6A5A))repeat-x!important;background:#ed6a5a -webkit-linear-gradient(top,#f08073,#ED6A5A)repeat-x!important;background:#ed6a5a -o-linear-gradient(top,#f08073,#ED6A5A)repeat-x!important;background:#ed6a5a linear-gradient(180deg,#f08073,#ED6A5A)repeat-x!important}.td-box--10{color:#fff;background-color:#30638e}.td-box--10 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#30638e transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--10 p>a{color:#cadcf5}.td-box--110.td-box--gradient{background:#30638e -webkit-gradient(linear,left top,left bottom,from(#4f7a9f),to(#30638E))repeat-x!important;background:#30638e -webkit-linear-gradient(top,#4f7a9f,#30638E)repeat-x!important;background:#30638e -o-linear-gradient(top,#4f7a9f,#30638E)repeat-x!important;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x!important}.td-box--11{color:#fff;background-color:#ffa630}.td-box--11 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#ffa630 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--11 p>a{color:#abc7f0}.td-box--111.td-box--gradient{background:#ffa630 -webkit-gradient(linear,left top,left bottom,from(#ffb34f),to(#FFA630))repeat-x!important;background:#ffa630 -webkit-linear-gradient(top,#ffb34f,#FFA630)repeat-x!important;background:#ffa630 -o-linear-gradient(top,#ffb34f,#FFA630)repeat-x!important;background:#ffa630 linear-gradient(180deg,#ffb34f,#FFA630)repeat-x!important}.td-box--12{color:#222;background-color:#fff}.td-box--12 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#fff transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--12 p>a{color:#72a1e5}.td-box--112.td-box--gradient{background:#fff -webkit-gradient(linear,left top,left bottom,from(white),to(white))repeat-x!important;background:#fff -webkit-linear-gradient(top,white,white)repeat-x!important;background:#fff -o-linear-gradient(top,white,white)repeat-x!important;background:#fff linear-gradient(180deg,white,white)repeat-x!important}.td-box--13{color:#222;background-color:#c0e0de}.td-box--13 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#c0e0de transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--13 p>a{color:#638ac1}.td-box--113.td-box--gradient{background:#c0e0de -webkit-gradient(linear,left top,left bottom,from(#c9e5e3),to(#C0E0DE))repeat-x!important;background:#c0e0de -webkit-linear-gradient(top,#c9e5e3,#C0E0DE)repeat-x!important;background:#c0e0de -o-linear-gradient(top,#c9e5e3,#C0E0DE)repeat-x!important;background:#c0e0de linear-gradient(180deg,#c9e5e3,#C0E0DE)repeat-x!important}.td-box--cerulean-blue{color:#fff;background-color:#017cee}.td-box--cerulean-blue .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#017cee transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--cerulean-blue p>a{color:#bdd3f3}.td-box--1cerulean-blue.td-box--gradient{background:#017cee -webkit-gradient(linear,left top,left bottom,from(#2790f1),to(#017cee))repeat-x!important;background:#017cee -webkit-linear-gradient(top,#2790f1,#017cee)repeat-x!important;background:#017cee -o-linear-gradient(top,#2790f1,#017cee)repeat-x!important;background:#017cee linear-gradient(180deg,#2790f1,#017cee)repeat-x!important}.td-box--shamrock{color:#fff;background-color:#00ad46}.td-box--shamrock .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#00ad46 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--shamrock p>a{color:#cfdff6}.td-box--1shamrock.td-box--gradient{background:#00ad46 -webkit-gradient(linear,left top,left bottom,from(#26b962),to(#00ad46))repeat-x!important;background:#00ad46 -webkit-linear-gradient(top,#26b962,#00ad46)repeat-x!important;background:#00ad46 -o-linear-gradient(top,#26b962,#00ad46)repeat-x!important;background:#00ad46 linear-gradient(180deg,#26b962,#00ad46)repeat-x!important}.td-box--bright-sky-blue{color:#fff;background-color:#0cb6ff}.td-box--bright-sky-blue .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#0cb6ff transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--bright-sky-blue p>a{color:#b5cef1}.td-box--1bright-sky-blue.td-box--gradient{background:#0cb6ff -webkit-gradient(linear,left top,left bottom,from(#30c1ff),to(#0cb6ff))repeat-x!important;background:#0cb6ff -webkit-linear-gradient(top,#30c1ff,#0cb6ff)repeat-x!important;background:#0cb6ff -o-linear-gradient(top,#30c1ff,#0cb6ff)repeat-x!important;background:#0cb6ff linear-gradient(180deg,#30c1ff,#0cb6ff)repeat-x!important}.td-box--melon{color:#fff;background-color:#ff7557}.td-box--melon .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#ff7557 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--melon p>a{color:#a0c0ee}.td-box--1melon.td-box--gradient{background:#ff7557 -webkit-gradient(linear,left top,left bottom,from(#ff8a70),to(#ff7557))repeat-x!important;background:#ff7557 -webkit-linear-gradient(top,#ff8a70,#ff7557)repeat-x!important;background:#ff7557 -o-linear-gradient(top,#ff8a70,#ff7557)repeat-x!important;background:#ff7557 linear-gradient(180deg,#ff8a70,#ff7557)repeat-x!important}.td-box--vermillion{color:#fff;background-color:#e43921}.td-box--vermillion .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#e43921 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--vermillion p>a{color:#b7cff2}.td-box--1vermillion.td-box--gradient{background:#e43921 -webkit-gradient(linear,left top,left bottom,from(#e85742),to(#e43921))repeat-x!important;background:#e43921 -webkit-linear-gradient(top,#e85742,#e43921)repeat-x!important;background:#e43921 -o-linear-gradient(top,#e85742,#e43921)repeat-x!important;background:#e43921 linear-gradient(180deg,#e85742,#e43921)repeat-x!important}.td-box--aqua{color:#fff;background-color:#11e1ee}.td-box--aqua .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#11e1ee transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--aqua p>a{color:#b9d0f2}.td-box--1aqua.td-box--gradient{background:#11e1ee -webkit-gradient(linear,left top,left bottom,from(#35e6f1),to(#11e1ee))repeat-x!important;background:#11e1ee -webkit-linear-gradient(top,#35e6f1,#11e1ee)repeat-x!important;background:#11e1ee -o-linear-gradient(top,#35e6f1,#11e1ee)repeat-x!important;background:#11e1ee linear-gradient(180deg,#35e6f1,#11e1ee)repeat-x!important}.td-box--shamrock-green{color:#fff;background-color:#04d659}.td-box--shamrock-green .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#04d659 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--shamrock-green p>a{color:#c3d7f4}.td-box--1shamrock-green.td-box--gradient{background:#04d659 -webkit-gradient(linear,left top,left bottom,from(#2adc72),to(#04d659))repeat-x!important;background:#04d659 -webkit-linear-gradient(top,#2adc72,#04d659)repeat-x!important;background:#04d659 -o-linear-gradient(top,#2adc72,#04d659)repeat-x!important;background:#04d659 linear-gradient(180deg,#2adc72,#04d659)repeat-x!important}.td-box--aqua-blue{color:#fff;background-color:#00c7d4}.td-box--aqua-blue .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#00c7d4 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--aqua-blue p>a{color:#c4d8f4}.td-box--1aqua-blue.td-box--gradient{background:#00c7d4 -webkit-gradient(linear,left top,left bottom,from(#26cfda),to(#00c7d4))repeat-x!important;background:#00c7d4 -webkit-linear-gradient(top,#26cfda,#00c7d4)repeat-x!important;background:#00c7d4 -o-linear-gradient(top,#26cfda,#00c7d4)repeat-x!important;background:#00c7d4 linear-gradient(180deg,#26cfda,#00c7d4)repeat-x!important}.td-box--white{color:#222;background-color:#fff}.td-box--white .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#fff transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--white p>a{color:#72a1e5}.td-box--1white.td-box--gradient{background:#fff -webkit-gradient(linear,left top,left bottom,from(white),to(#ffffff))repeat-x!important;background:#fff -webkit-linear-gradient(top,white,#ffffff)repeat-x!important;background:#fff -o-linear-gradient(top,white,#ffffff)repeat-x!important;background:#fff linear-gradient(180deg,white,#ffffff)repeat-x!important}.td-box--brownish-grey{color:#fff;background-color:#707070}.td-box--brownish-grey .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#707070 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--brownish-grey p>a{color:#c1d6f4}.td-box--1brownish-grey.td-box--gradient{background:#707070 -webkit-gradient(linear,left top,left bottom,from(#858585),to(#707070))repeat-x!important;background:#707070 -webkit-linear-gradient(top,#858585,#707070)repeat-x!important;background:#707070 -o-linear-gradient(top,#858585,#707070)repeat-x!important;background:#707070 linear-gradient(180deg,#858585,#707070)repeat-x!important}.td-box--very-light-pink{color:#222;background-color:#cbcbcb}.td-box--very-light-pink .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#cbcbcb transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--very-light-pink p>a{color:#6287bd}.td-box--1very-light-pink.td-box--gradient{background:#cbcbcb -webkit-gradient(linear,left top,left bottom,from(lightgray),to(#cbcbcb))repeat-x!important;background:#cbcbcb -webkit-linear-gradient(top,lightgray,#cbcbcb)repeat-x!important;background:#cbcbcb -o-linear-gradient(top,lightgray,#cbcbcb)repeat-x!important;background:#cbcbcb linear-gradient(180deg,lightgray,#cbcbcb)repeat-x!important}.td-box--slate-grey{color:#fff;background-color:#636365}.td-box--slate-grey .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#636365 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--slate-grey p>a{color:#c8daf5}.td-box--1slate-grey.td-box--gradient{background:#636365 -webkit-gradient(linear,left top,left bottom,from(#7a7a7c),to(#636365))repeat-x!important;background:#636365 -webkit-linear-gradient(top,#7a7a7c,#636365)repeat-x!important;background:#636365 -o-linear-gradient(top,#7a7a7c,#636365)repeat-x!important;background:#636365 linear-gradient(180deg,#7a7a7c,#636365)repeat-x!important}.td-box--greyish-brown{color:#fff;background-color:#51504f}.td-box--greyish-brown .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#51504f transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--greyish-brown p>a{color:#d3e2f7}.td-box--1greyish-brown.td-box--gradient{background:#51504f -webkit-gradient(linear,left top,left bottom,from(#6b6a69),to(#51504f))repeat-x!important;background:#51504f -webkit-linear-gradient(top,#6b6a69,#51504f)repeat-x!important;background:#51504f -o-linear-gradient(top,#6b6a69,#51504f)repeat-x!important;background:#51504f linear-gradient(180deg,#6b6a69,#51504f)repeat-x!important}.td-box--primary{color:#fff;background-color:#30638e}.td-box--primary .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#30638e transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--primary p>a{color:#cadcf5}.td-box--1primary.td-box--gradient{background:#30638e -webkit-gradient(linear,left top,left bottom,from(#4f7a9f),to(#30638E))repeat-x!important;background:#30638e -webkit-linear-gradient(top,#4f7a9f,#30638E)repeat-x!important;background:#30638e -o-linear-gradient(top,#4f7a9f,#30638E)repeat-x!important;background:#30638e linear-gradient(180deg,#4f7a9f,#30638E)repeat-x!important}.td-box--secondary{color:#fff;background-color:#ffa630}.td-box--secondary .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#ffa630 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--secondary p>a{color:#abc7f0}.td-box--1secondary.td-box--gradient{background:#ffa630 -webkit-gradient(linear,left top,left bottom,from(#ffb34f),to(#FFA630))repeat-x!important;background:#ffa630 -webkit-linear-gradient(top,#ffb34f,#FFA630)repeat-x!important;background:#ffa630 -o-linear-gradient(top,#ffb34f,#FFA630)repeat-x!important;background:#ffa630 linear-gradient(180deg,#ffb34f,#FFA630)repeat-x!important}.td-box--success{color:#fff;background-color:#3772ff}.td-box--success .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#3772ff transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--success p>a{color:#a9c6ef}.td-box--1success.td-box--gradient{background:#3772ff -webkit-gradient(linear,left top,left bottom,from(#5587ff),to(#3772FF))repeat-x!important;background:#3772ff -webkit-linear-gradient(top,#5587ff,#3772FF)repeat-x!important;background:#3772ff -o-linear-gradient(top,#5587ff,#3772FF)repeat-x!important;background:#3772ff linear-gradient(180deg,#5587ff,#3772FF)repeat-x!important}.td-box--info{color:#222;background-color:#c0e0de}.td-box--info .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#c0e0de transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--info p>a{color:#638ac1}.td-box--1info.td-box--gradient{background:#c0e0de -webkit-gradient(linear,left top,left bottom,from(#c9e5e3),to(#C0E0DE))repeat-x!important;background:#c0e0de -webkit-linear-gradient(top,#c9e5e3,#C0E0DE)repeat-x!important;background:#c0e0de -o-linear-gradient(top,#c9e5e3,#C0E0DE)repeat-x!important;background:#c0e0de linear-gradient(180deg,#c9e5e3,#C0E0DE)repeat-x!important}.td-box--warning{color:#fff;background-color:#ed6a5a}.td-box--warning .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#ed6a5a transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--warning p>a{color:#a5c3ee}.td-box--1warning.td-box--gradient{background:#ed6a5a -webkit-gradient(linear,left top,left bottom,from(#f08073),to(#ED6A5A))repeat-x!important;background:#ed6a5a -webkit-linear-gradient(top,#f08073,#ED6A5A)repeat-x!important;background:#ed6a5a -o-linear-gradient(top,#f08073,#ED6A5A)repeat-x!important;background:#ed6a5a linear-gradient(180deg,#f08073,#ED6A5A)repeat-x!important}.td-box--danger{color:#fff;background-color:#ed6a5a}.td-box--danger .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#ed6a5a transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--danger p>a{color:#a5c3ee}.td-box--1danger.td-box--gradient{background:#ed6a5a -webkit-gradient(linear,left top,left bottom,from(#f08073),to(#ED6A5A))repeat-x!important;background:#ed6a5a -webkit-linear-gradient(top,#f08073,#ED6A5A)repeat-x!important;background:#ed6a5a -o-linear-gradient(top,#f08073,#ED6A5A)repeat-x!important;background:#ed6a5a linear-gradient(180deg,#f08073,#ED6A5A)repeat-x!important}.td-box--light{color:#222;background-color:#d3f3ee}.td-box--light .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#d3f3ee transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--light p>a{color:#6993d0}.td-box--1light.td-box--gradient{background:#d3f3ee -webkit-gradient(linear,left top,left bottom,from(#daf5f1),to(#D3F3EE))repeat-x!important;background:#d3f3ee -webkit-linear-gradient(top,#daf5f1,#D3F3EE)repeat-x!important;background:#d3f3ee -o-linear-gradient(top,#daf5f1,#D3F3EE)repeat-x!important;background:#d3f3ee linear-gradient(180deg,#daf5f1,#D3F3EE)repeat-x!important}.td-box--dark{color:#fff;background-color:#403f4c}.td-box--dark .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#403f4c transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--dark p>a{color:#d9e5f8}.td-box--1dark.td-box--gradient{background:#403f4c -webkit-gradient(linear,left top,left bottom,from(#5d5c67),to(#403F4C))repeat-x!important;background:#403f4c -webkit-linear-gradient(top,#5d5c67,#403F4C)repeat-x!important;background:#403f4c -o-linear-gradient(top,#5d5c67,#403F4C)repeat-x!important;background:#403f4c linear-gradient(180deg,#5d5c67,#403F4C)repeat-x!important}.td-box--100{color:#222;background-color:#f8f9fa}.td-box--100 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#f8f9fa transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--100 p>a{color:#709ee0}.td-box--1100.td-box--gradient{background:#f8f9fa -webkit-gradient(linear,left top,left bottom,from(#f9fafb),to(#f8f9fa))repeat-x!important;background:#f8f9fa -webkit-linear-gradient(top,#f9fafb,#f8f9fa)repeat-x!important;background:#f8f9fa -o-linear-gradient(top,#f9fafb,#f8f9fa)repeat-x!important;background:#f8f9fa linear-gradient(180deg,#f9fafb,#f8f9fa)repeat-x!important}.td-box--200{color:#222;background-color:#eee}.td-box--200 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#eee transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--200 p>a{color:#6d99d8}.td-box--1200.td-box--gradient{background:#eee -webkit-gradient(linear,left top,left bottom,from(#f1f1f1),to(#eee))repeat-x!important;background:#eee -webkit-linear-gradient(top,#f1f1f1,#eee)repeat-x!important;background:#eee -o-linear-gradient(top,#f1f1f1,#eee)repeat-x!important;background:#eee linear-gradient(180deg,#f1f1f1,#eee)repeat-x!important}.td-box--300{color:#222;background-color:#dee2e6}.td-box--300 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#dee2e6 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--300 p>a{color:#6993cf}.td-box--1300.td-box--gradient{background:#dee2e6 -webkit-gradient(linear,left top,left bottom,from(#e3e6ea),to(#dee2e6))repeat-x!important;background:#dee2e6 -webkit-linear-gradient(top,#e3e6ea,#dee2e6)repeat-x!important;background:#dee2e6 -o-linear-gradient(top,#e3e6ea,#dee2e6)repeat-x!important;background:#dee2e6 linear-gradient(180deg,#e3e6ea,#dee2e6)repeat-x!important}.td-box--400{color:#222;background-color:#ccc}.td-box--400 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#ccc transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--400 p>a{color:#6288be}.td-box--1400.td-box--gradient{background:#ccc -webkit-gradient(linear,left top,left bottom,from(#d4d4d4),to(#ccc))repeat-x!important;background:#ccc -webkit-linear-gradient(top,#d4d4d4,#ccc)repeat-x!important;background:#ccc -o-linear-gradient(top,#d4d4d4,#ccc)repeat-x!important;background:#ccc linear-gradient(180deg,#d4d4d4,#ccc)repeat-x!important}.td-box--500{color:#fff;background-color:#adb5bd}.td-box--500 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#adb5bd transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--500 p>a{color:#9bbced}.td-box--1500.td-box--gradient{background:#adb5bd -webkit-gradient(linear,left top,left bottom,from(#b9c0c7),to(#adb5bd))repeat-x!important;background:#adb5bd -webkit-linear-gradient(top,#b9c0c7,#adb5bd)repeat-x!important;background:#adb5bd -o-linear-gradient(top,#b9c0c7,#adb5bd)repeat-x!important;background:#adb5bd linear-gradient(180deg,#b9c0c7,#adb5bd)repeat-x!important}.td-box--600{color:#fff;background-color:#888}.td-box--600 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#888 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--600 p>a{color:#b4cdf1}.td-box--1600.td-box--gradient{background:#888 -webkit-gradient(linear,left top,left bottom,from(#9a9a9a),to(#888))repeat-x!important;background:#888 -webkit-linear-gradient(top,#9a9a9a,#888)repeat-x!important;background:#888 -o-linear-gradient(top,#9a9a9a,#888)repeat-x!important;background:#888 linear-gradient(180deg,#9a9a9a,#888)repeat-x!important}.td-box--700{color:#fff;background-color:#495057}.td-box--700 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#495057 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--700 p>a{color:#d3e2f7}.td-box--1700.td-box--gradient{background:#495057 -webkit-gradient(linear,left top,left bottom,from(#646a70),to(#495057))repeat-x!important;background:#495057 -webkit-linear-gradient(top,#646a70,#495057)repeat-x!important;background:#495057 -o-linear-gradient(top,#646a70,#495057)repeat-x!important;background:#495057 linear-gradient(180deg,#646a70,#495057)repeat-x!important}.td-box--800{color:#fff;background-color:#333}.td-box--800 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#333 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--800 p>a{color:#e3ecfa}.td-box--1800.td-box--gradient{background:#333 -webkit-gradient(linear,left top,left bottom,from(#525252),to(#333))repeat-x!important;background:#333 -webkit-linear-gradient(top,#525252,#333)repeat-x!important;background:#333 -o-linear-gradient(top,#525252,#333)repeat-x!important;background:#333 linear-gradient(180deg,#525252,#333)repeat-x!important}.td-box--900{color:#fff;background-color:#222}.td-box--900 .td-arrow-down::before{left:50%;margin-left:-30px;bottom:-25px;border-style:solid;border-width:25px 30px 0;border-color:#222 transparent transparent transparent;z-index:3;position:absolute;content:""}.td-box--900 p>a{color:#ecf2fc}.td-box--1900.td-box--gradient{background:#222 -webkit-gradient(linear,left top,left bottom,from(#434343),to(#222))repeat-x!important;background:#222 -webkit-linear-gradient(top,#434343,#222)repeat-x!important;background:#222 -o-linear-gradient(top,#434343,#222)repeat-x!important;background:#222 linear-gradient(180deg,#434343,#222)repeat-x!important}.td-blog .td-rss-button{position:absolute;top:5.5rem;right:1rem;z-index:22}.td-content .highlight{margin:2rem 0;padding:1rem;background-color:#f8f9fa}.td-content .highlight pre,.td-content .highlight div{background-color:inherit!important}.td-content .highlight pre{margin:0;padding:0}.td-content p code,.td-content li>code,.td-content table code{color:inherit;padding:.2em .4em;margin:0;font-size:85%;word-break:normal;background-color:rgba(0,0,0,5%);border-radius:.25rem}.td-content p code br,.td-content li>code br,.td-content table code br{display:none}.td-content pre{word-wrap:normal;background-color:#f8f9fa;padding:1rem}.td-content pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;border:0}.td-navbar-cover{background:#30638e}@media(min-width:768px){.td-navbar-cover{background:0 0!important}.td-navbar-cover .nav-link{text-shadow:1px 1px 2px #403f4c}}.td-navbar-cover.navbar-bg-onscroll .nav-link{text-shadow:none}.navbar-bg-onscroll{background:#30638e!important;opacity:inherit}.td-navbar{background:#30638e;min-height:4rem;margin:0;z-index:32}@media(min-width:768px){.td-navbar{position:fixed;top:0;width:100%}}.td-navbar .navbar-brand{text-transform:none;text-align:middle}.td-navbar .navbar-brand .nav-link{display:inline-block;margin-right:-30px}.td-navbar .navbar-brand svg{display:inline-block;margin:0 10px;height:30px}.td-navbar .nav-link{text-transform:none;font-weight:700}.td-navbar .td-search-input{border:none}.td-navbar .td-search-input::-webkit-input-placeholder{color:rgba(255,255,255,.75)}.td-navbar .td-search-input:-moz-placeholder{color:rgba(255,255,255,.75)}.td-navbar .td-search-input::-moz-placeholder{color:rgba(255,255,255,.75)}.td-navbar .td-search-input:-ms-input-placeholder{color:rgba(255,255,255,.75)}.td-navbar .dropdown{min-width:100px}@media(max-width:991.98px){.td-navbar{padding-right:.5rem;padding-left:.75rem}.td-navbar .td-navbar-nav-scroll{max-width:100%;height:2.5rem;margin-top:.25rem;overflow:hidden;font-size:.875rem}.td-navbar .td-navbar-nav-scroll .nav-link{padding-right:.25rem;padding-left:0}.td-navbar .td-navbar-nav-scroll .navbar-nav{padding-bottom:2rem;overflow-x:auto;white-space:nowrap;-webkit-overflow-scrolling:touch}}.td-sidebar-nav{padding-right:.5rem;margin-right:-15px;margin-left:-15px}@media(min-width:768px){@supports((position:-webkit-sticky) or (position:sticky)){.td-sidebar-nav{max-height:-webkit-calc(100vh - 10rem);max-height:calc(100vh - 10rem);overflow-y:auto}}}@media(min-width:768px){.td-sidebar-nav{display:block!important}}.td-sidebar-nav__section{padding-left:0}.td-sidebar-nav__section li{list-style:none}.td-sidebar-nav__section ul{padding:0;margin:0}@media(min-width:768px){.td-sidebar-nav__section>ul{padding-left:.5rem}}.td-sidebar-nav__section-title{display:block;font-weight:500}.td-sidebar-nav__section-title .active{font-weight:700}.td-sidebar-nav__section-title a{color:#222}.td-sidebar-nav .td-sidebar-link{display:block;padding-bottom:.375rem}.td-sidebar-nav .td-sidebar-link__page{color:#495057;font-weight:300}.td-sidebar-nav a:hover{color:#72a1e5;text-decoration:none}.td-sidebar-nav a.active{font-weight:700}.td-sidebar-nav .dropdown a{color:#495057}.td-sidebar-nav .dropdown .nav-link{padding:0 0 1rem}.td-sidebar{padding-bottom:1rem}@media(min-width:768px){.td-sidebar{padding-top:4rem;background-color:rgba(48,99,142,3%);padding-right:1rem;border-right:1px solid #dee2e6}}.td-sidebar__toggle{line-height:1;color:#222;margin:1rem}.td-sidebar__search{padding:1rem 15px;margin-right:-15px;margin-left:-15px}.td-sidebar__inner{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}@media(min-width:768px){@supports((position:-webkit-sticky) or (position:sticky)){.td-sidebar__inner{position:-webkit-sticky;position:sticky;top:4rem;z-index:10;height:-webkit-calc(100vh - 6rem);height:calc(100vh - 6rem)}}}@media(min-width:1200px){.td-sidebar__inner{-webkit-box-flex:0;-webkit-flex:0 1 320px;-ms-flex:0 1 320px;flex:0 1 320px}}.td-sidebar__inner .td-search-box{width:100%}.td-toc{border-left:1px solid #dee2e6;-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2;padding-top:.75rem;padding-bottom:1.5rem;vertical-align:top}@supports((position:-webkit-sticky) or (position:sticky)){.td-toc{position:-webkit-sticky;position:sticky;top:4rem;height:-webkit-calc(100vh - 10rem);height:calc(100vh - 10rem);overflow-y:auto}}.td-toc a{display:block;font-weight:300;padding-bottom:.25rem}.td-toc li{list-style:none;display:block}.td-toc li li{margin-left:.5rem}.td-toc .td-page-meta a{font-weight:500}.td-toc #TableOfContents a{color:#888}.td-toc #TableOfContents a:hover{color:#72a1e5;text-decoration:none}.td-toc ul{padding-left:0}button{cursor:pointer;border:1px solid;border-radius:5px;padding:9px 29px;-webkit-transition:all ease-out .2s;-o-transition:all ease-out .2s;transition:all ease-out .2s}button:disabled{cursor:not-allowed}button.btn-filled{border-color:#017cee;background-color:#017cee}button.btn-filled:hover{border-color:#0cb6ff;background-color:#0cb6ff}button.btn-with-icon{padding:14px 20px}button.btn-with-icon svg{height:30px;width:auto;padding-right:15px}button.btn-with-icon span{display:inline-block;line-height:30px;vertical-align:middle}button.btn-hollow{background-color:#fff}button.btn-hollow.btn-blue{color:#017cee;border-color:#017cee}button.btn-hollow.btn-blue:disabled{color:#cbcbcb;border-color:#cbcbcb}button.btn-hollow.btn-blue:hover:enabled{color:#fff;background-color:#017cee}button.btn-hollow.btn-brown{border-color:#cbcbcb}button.btn-hollow.btn-brown:hover{background-color:#51504f;border-color:#51504f}button.btn-hollow.btn-brown:hover span{color:#fff}button.btn-hollow.btn-brown:hover svg path{fill:#fff}button.with-box-shadow{-webkit-box-shadow:0 2px 6px 0 rgba(0,0,0,.12);box-shadow:0 2px 6px rgba(0,0,0,.12)}@media(max-width:1280px){button{padding:4px 17px}}.breadcrumb{background:0 0;padding-left:0;padding-top:0}.alert{font-weight:500;background:#fff;color:inherit;border-radius:0}.alert-primary{border-style:solid;border-color:#30638e;border-width:0 0 0 4px}.alert-primary .alert-heading{color:#30638e}.alert-secondary{border-style:solid;border-color:#ffa630;border-width:0 0 0 4px}.alert-secondary .alert-heading{color:#ffa630}.alert-success{border-style:solid;border-color:#3772ff;border-width:0 0 0 4px}.alert-success .alert-heading{color:#3772ff}.alert-info{border-style:solid;border-color:#c0e0de;border-width:0 0 0 4px}.alert-info .alert-heading{color:#c0e0de}.alert-warning{border-style:solid;border-color:#ed6a5a;border-width:0 0 0 4px}.alert-warning .alert-heading{color:#ed6a5a}.alert-danger{border-style:solid;border-color:#ed6a5a;border-width:0 0 0 4px}.alert-danger .alert-heading{color:#ed6a5a}.alert-light{border-style:solid;border-color:#d3f3ee;border-width:0 0 0 4px}.alert-light .alert-heading{color:#d3f3ee}.alert-dark{border-style:solid;border-color:#403f4c;border-width:0 0 0 4px}.alert-dark .alert-heading{color:#403f4c}.td-content{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.td-content p,.td-content li,.td-content td{font-weight:400}.td-content>h1{font-weight:700;margin-bottom:1rem}.td-content>h2{margin-bottom:1rem}.td-content>h2:not(:first-child){margin-top:3rem}.td-content>h2+h3{margin-top:1rem}.td-content>h3,.td-content>h4,.td-content>h5,.td-content>h6{margin-bottom:1rem;margin-top:2rem}.td-content>blockquote{padding:0 0 0 1rem;margin-bottom:1rem;color:#888;border-left:6px solid #ffa630}.td-content>ul li,.td-content>ol li{margin-bottom:.25rem}.td-content strong{font-weight:700}.td-content .alert:not(:first-child){margin-top:2rem;margin-bottom:2rem}.td-content .lead{margin-bottom:1.5rem}.td-title{margin-top:1rem;margin-bottom:.5rem}@media(min-width:576px){.td-title{font-size:3rem}}.search-form{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:344px;padding:8px 20px;border:solid 1px #cbcbcb;border-radius:5px;margin:60px auto 0}.search-form__input{font-family:roboto,sans-serif;font-size:16px;color:#707070;line-height:1.63;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding-right:10px;border:none;background:0 0;outline:none;float:left}.search-form__button{border:none;background-color:transparent;padding:0}@media(max-width:1280px){.search-form{width:270px;padding:3px 20px;margin-top:30px}}.td-outer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;height:100vh}@media(min-width:768px){.td-default main section:first-of-type{padding-top:8rem}}.td-main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.td-main main{padding-bottom:2rem}@media(min-width:768px){.td-main main{padding-top:5.5rem}}.td-cover-block--height-min{min-height:300px}.td-cover-block--height-med{min-height:400px}.td-cover-block--height-max{min-height:500px}.td-cover-block--height-full{min-height:100vh}@media(min-width:768px){.td-cover-block--height-min{min-height:450px}.td-cover-block--height-med{min-height:500px}.td-cover-block--height-max{min-height:650px}}.td-cover-logo{margin-right:.5em}.td-cover-block{position:relative;padding-top:5rem;padding-bottom:5rem;background-repeat:no-repeat;background-position:50% 0;-webkit-background-size:cover;background-size:cover}.td-bg-arrow-wrapper{position:relative}.section-index .entry{padding:.75rem}.section-index h5{margin-bottom:0}.section-index h5 a{font-weight:700}.section-index p{margin-top:0}.pageinfo{font-weight:500;background:#f8f9fa;color:inherit;border-radius:0;margin:2rem;padding:1.5rem;padding-bottom:.5rem}.pageinfo-primary{border-style:solid;border-color:#30638e}.pageinfo-secondary{border-style:solid;border-color:#ffa630}.pageinfo-success{border-style:solid;border-color:#3772ff}.pageinfo-info{border-style:solid;border-color:#c0e0de}.pageinfo-warning{border-style:solid;border-color:#ed6a5a}.pageinfo-danger{border-style:solid;border-color:#ed6a5a}.pageinfo-light{border-style:solid;border-color:#d3f3ee}.pageinfo-dark{border-style:solid;border-color:#403f4c}footer{min-height:150px}@media(max-width:991.98px){footer{min-height:200px}}@media(min-width:768px){.td-offset-anchor:target{display:block;position:relative;top:-4rem;visibility:hidden}h2[id]:before,h3[id]:before,h4[id]:before,h5[id]:before{display:block;content:" ";margin-top:-5rem;height:5rem;visibility:hidden}} \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/_static/_gen/js/docs.js b/docs-archive/apache-airflow-providers/_static/_gen/js/docs.js new file mode 100644 index 00000000000..2029b9f8147 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/_gen/js/docs.js @@ -0,0 +1 @@ +!function(r){var n={};function o(t){if(n[t])return n[t].exports;var e=n[t]={i:t,l:!1,exports:{}};return r[t].call(e.exports,e,e.exports,o),e.l=!0,e.exports}o.m=r,o.c=n,o.d=function(t,e,r){o.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},o.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)o.d(r,n,function(t){return e[t]}.bind(null,n));return r},o.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return o.d(e,"a",e),e},o.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},o.p="/",o(o.s=56)}([function(t,e,r){var m=r(1),w=r(14),g=r(15),E=Math.max,x=Math.min;t.exports=function(n,r,t){var o,i,a,s,u,c,f=0,l=!1,d=!1,e=!0;if("function"!=typeof n)throw new TypeError("Expected a function");function h(t){var e=o,r=i;return o=i=void 0,f=t,s=n.apply(r,e)}function p(t){var e=t-c;return void 0===c||r<=e||e<0||d&&a<=t-f}function y(){var t=w();if(p(t))return b(t);u=setTimeout(y,function(t){var e=r-(t-c);return d?x(e,a-(t-f)):e}(t))}function b(t){return u=void 0,e&&o?h(t):(o=i=void 0,s)}function v(){var t=w(),e=p(t);if(o=arguments,i=this,c=t,e){if(void 0===u)return function(t){return f=t,u=setTimeout(y,r),l?h(t):s}(c);if(d)return clearTimeout(u),u=setTimeout(y,r),h(c)}return void 0===u&&(u=setTimeout(y,r)),s}return r=g(r)||0,m(t)&&(l=!!t.leading,a=(d="maxWait"in t)?E(g(t.maxWait)||0,r):a,e="trailing"in t?!!t.trailing:e),v.cancel=function(){void 0!==u&&clearTimeout(u),o=c=i=u=void(f=0)},v.flush=function(){return void 0===u?s:b(w())},v}},function(t,e){t.exports=function(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}},function(t,e,r){var n=r(8),o="object"==typeof self&&self&&self.Object===Object&&self,i=n||o||Function("return this")();t.exports=i},function(t,e,r){var n=r(6),o=r(19),i=r(20),a=n?n.toStringTag:void 0;t.exports=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":a&&a in Object(t)?o(t):i(t)}},function(t,e){t.exports=function(t){return null!=t&&"object"==typeof t}},function(t,e,r){!function(s){"use strict";var u={searchParams:"URLSearchParams"in self,iterable:"Symbol"in self&&"iterator"in Symbol,blob:"FileReader"in self&&"Blob"in self&&function(){try{return new Blob,!0}catch(t){return!1}}(),formData:"FormData"in self,arrayBuffer:"ArrayBuffer"in self};if(u.arrayBuffer)var e=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],r=ArrayBuffer.isView||function(t){return t&&-1 nav").offsetHeight,n=function(){var t;e.sort(function(t,e){return t.targetElement.offsetTop-e.targetElement.offsetTop}),t=e[0].targetElement.offsetTop+r>window.scrollY?0:e[e.length-1].targetElement.offsetTop+rwindow.scrollY})-1,e.forEach(function(t){return t.navElement.classList.remove("current")}),e[t].navElement.classList.add("current")};window.addEventListener("scroll",o()(n,10)),window.addEventListener("resize",o()(n,10)),n()}}()},function(t,e,r){var n=r(2);t.exports=function(){return n.Date.now()}},function(t,e,r){var n=r(16),o=r(1),i=r(18),a=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,u=/^0o[0-7]+$/i,c=parseInt;t.exports=function(t){if("number"==typeof t)return t;if(i(t))return NaN;if(o(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=o(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=n(t);var r=s.test(t);return r||u.test(t)?c(t.slice(2),r?2:8):a.test(t)?NaN:+t}},function(t,e,r){var n=r(17),o=/^\s+/;t.exports=function(t){return t?t.slice(0,n(t)+1).replace(o,""):t}},function(t,e){var r=/\s/;t.exports=function(t){for(var e=t.length;e--&&r.test(t.charAt(e)););return e}},function(t,e,r){var n=r(3),o=r(4);t.exports=function(t){return"symbol"==typeof t||o(t)&&"[object Symbol]"==n(t)}},function(t,e,r){var n=r(6),o=Object.prototype,i=o.hasOwnProperty,a=o.toString,s=n?n.toStringTag:void 0;t.exports=function(t){var e=i.call(t,s),r=t[s];try{var n=!(t[s]=void 0)}catch(t){}var o=a.call(t);return n&&(e?t[s]=r:delete t[s]),o}},function(t,e){var r=Object.prototype.toString;t.exports=function(t){return r.call(t)}},function(t,e){!function(){var e=window.document.querySelector(".rating");if(e){function t(t){e.querySelector("#rate-star-".concat(t)).addEventListener("click",function(){!function(t){window._paq.push(["trackEvent","Docs","Rating",window.location.pathname,t])}(t),e.innerHTML="

Thank you!

"})}for(var r=1;r<=5;r++)t(r)}}()},function(t,e){var r=window.document.querySelector(".rst-content");!function(){if(r){var t=r.querySelectorAll("table");t&&0!==t.length&&t.forEach(function(t){if(!t.parentNode.classList.contains("wy-table-responsive")){var e=document.createElement("div");e.classList.add("wy-table-responsive"),t.parentNode.insertBefore(e,t),e.appendChild(t)}})}}()},function(t,e,n){"use strict";(function(t){var i=n(7);function r(t){return function(t){if(Array.isArray(t))return t}(t)||function(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}(t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function f(){var t=r(document.location.pathname.split("/")),e=t[2];return{currentVersion:t[3],currentPackageName:e,pagePath:t.slice(4).join("/")}}var a;(a=window.document.querySelectorAll(".docs-version-selector"))&&0!==a.length&&t("/_gen/packages-metadata.json").then(function(t){return t.json()}).then(function(t){var e=f().currentPackageName,r=t.find(function(t){return t["package-name"]===e});if(r){var n=r["all-versions"].sort(i.a).reverse(),o=r["stable-version"];a.forEach(function(t){return function(t,e,r){var n=t.querySelector("#version-item-template").innerText,o=document.createElement("div");function i(t,e){var r=o.cloneNode(!0),n="/docs/".concat(u,"/").concat(t,"/").concat(c);r.setAttribute("href",n),r.innerText=e,a.appendChild(r)}o.innerHTML=n,o=o.firstElementChild;var a=t.querySelector(".dropdown-menu"),s=f(),u=s.currentPackageName,c=s.pagePath;i("stable","Stable (".concat(r,")")),e.forEach(function(t){return i(t,t)})}(t,n,o)})}})}).call(this,n(5))},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,r){"use strict";r.r(e);r(10),r(11),r(12),r(13),r(21),r(22),r(57),r(23)},function(t,e){Array.from(document.querySelectorAll(".toctree ul")).forEach(function(t){Array.from(t.parentNode.children).filter(function(t){return"A"===t.tagName}).forEach(function(t){var e=document.createElement("span");e.classList.add("toctree-expand"),t.insertBefore(e,t.firstChild)})})}]); \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/_static/_sphinx_javascript_frameworks_compat.js b/docs-archive/apache-airflow-providers/_static/_sphinx_javascript_frameworks_compat.js new file mode 100644 index 00000000000..8549469dc29 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/_sphinx_javascript_frameworks_compat.js @@ -0,0 +1,134 @@ +/* + * _sphinx_javascript_frameworks_compat.js + * ~~~~~~~~~~ + * + * Compatability shim for jQuery and underscores.js. + * + * WILL BE REMOVED IN Sphinx 6.0 + * xref RemovedInSphinx60Warning + * + */ + +/** + * select a different prefix for underscore + */ +$u = _.noConflict(); + + +/** + * small helper function to urldecode strings + * + * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL + */ +jQuery.urldecode = function(x) { + if (!x) { + return x + } + return decodeURIComponent(x.replace(/\+/g, ' ')); +}; + +/** + * small helper function to urlencode strings + */ +jQuery.urlencode = encodeURIComponent; + +/** + * This function returns the parsed url parameters of the + * current request. Multiple values per key are supported, + * it will always return arrays of strings for the value parts. + */ +jQuery.getQueryParameters = function(s) { + if (typeof s === 'undefined') + s = document.location.search; + var parts = s.substr(s.indexOf('?') + 1).split('&'); + var result = {}; + for (var i = 0; i < parts.length; i++) { + var tmp = parts[i].split('=', 2); + var key = jQuery.urldecode(tmp[0]); + var value = jQuery.urldecode(tmp[1]); + if (key in result) + result[key].push(value); + else + result[key] = [value]; + } + return result; +}; + +/** + * highlight a given string on a jquery object by wrapping it in + * span elements with the given class name. + */ +jQuery.fn.highlightText = function(text, className) { + function highlight(node, addItems) { + if (node.nodeType === 3) { + var val = node.nodeValue; + var pos = val.toLowerCase().indexOf(text); + if (pos >= 0 && + !jQuery(node.parentNode).hasClass(className) && + !jQuery(node.parentNode).hasClass("nohighlight")) { + var span; + var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); + if (isInSVG) { + span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); + } else { + span = document.createElement("span"); + span.className = className; + } + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + node.parentNode.insertBefore(span, node.parentNode.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling)); + node.nodeValue = val.substr(0, pos); + if (isInSVG) { + var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); + var bbox = node.parentElement.getBBox(); + rect.x.baseVal.value = bbox.x; + rect.y.baseVal.value = bbox.y; + rect.width.baseVal.value = bbox.width; + rect.height.baseVal.value = bbox.height; + rect.setAttribute('class', className); + addItems.push({ + "parent": node.parentNode, + "target": rect}); + } + } + } + else if (!jQuery(node).is("button, select, textarea")) { + jQuery.each(node.childNodes, function() { + highlight(this, addItems); + }); + } + } + var addItems = []; + var result = this.each(function() { + highlight(this, addItems); + }); + for (var i = 0; i < addItems.length; ++i) { + jQuery(addItems[i].parent).before(addItems[i].target); + } + return result; +}; + +/* + * backward compatibility for jQuery.browser + * This will be supported until firefox bug is fixed. + */ +if (!jQuery.browser) { + jQuery.uaMatch = function(ua) { + ua = ua.toLowerCase(); + + var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || + /(webkit)[ \/]([\w.]+)/.exec(ua) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || + /(msie) ([\w.]+)/.exec(ua) || + ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || + []; + + return { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; + }; + jQuery.browser = {}; + jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; +} diff --git a/docs-archive/apache-airflow-providers/_static/basic.css b/docs-archive/apache-airflow-providers/_static/basic.css new file mode 100644 index 00000000000..eeb0519a69b --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/basic.css @@ -0,0 +1,899 @@ +/* + * basic.css + * ~~~~~~~~~ + * + * Sphinx stylesheet -- basic theme. + * + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +div.section::after { + display: block; + content: ''; + clear: left; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 230px; + margin-left: -100%; + font-size: 90%; + word-wrap: break-word; + overflow-wrap : break-word; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +div.sphinxsidebar #searchbox form.search { + overflow: hidden; +} + +div.sphinxsidebar #searchbox input[type="text"] { + float: left; + width: 80%; + padding: 0.25em; + box-sizing: border-box; +} + +div.sphinxsidebar #searchbox input[type="submit"] { + float: left; + width: 20%; + border-left: none; + padding: 0.25em; + box-sizing: border-box; +} + + +img { + border: 0; + max-width: 100%; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin: 10px 0 0 20px; + padding: 0; +} + +ul.search li { + padding: 5px 0 5px 20px; + background-image: url(file.png); + background-repeat: no-repeat; + background-position: 0 7px; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li p.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; + margin-left: auto; + margin-right: auto; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable ul { + margin-top: 0; + margin-bottom: 0; + list-style-type: none; +} + +table.indextable > tbody > tr > td > ul { + padding-left: 0em; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- domain module index --------------------------------------------------- */ + +table.modindextable td { + padding: 2px; + border-collapse: collapse; +} + +/* -- general body styles --------------------------------------------------- */ + +div.body { + min-width: 360px; + max-width: 800px; +} + +div.body p, div.body dd, div.body li, div.body blockquote { + -moz-hyphens: auto; + -ms-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} + +a.headerlink { + visibility: hidden; +} +a.brackets:before, +span.brackets > a:before{ + content: "["; +} + +a.brackets:after, +span.brackets > a:after { + content: "]"; +} + + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink, +caption:hover > a.headerlink, +p.caption:hover > a.headerlink, +div.code-block-caption:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +img.align-left, figure.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, figure.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, figure.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +img.align-default, figure.align-default, .figure.align-default { + display: block; + margin-left: auto; + margin-right: auto; +} + +.align-left { + text-align: left; +} + +.align-center { + text-align: center; +} + +.align-default { + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar, +aside.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px; + background-color: #ffe; + width: 40%; + float: right; + clear: right; + overflow-x: auto; +} + +p.sidebar-title { + font-weight: bold; +} +div.admonition, div.topic, blockquote { + clear: left; +} + +/* -- topics ---------------------------------------------------------------- */ +div.topic { + border: 1px solid #ccc; + padding: 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- content of sidebars/topics/admonitions -------------------------------- */ + +div.sidebar > :last-child, +aside.sidebar > :last-child, +div.topic > :last-child, +div.admonition > :last-child { + margin-bottom: 0; +} + +div.sidebar::after, +aside.sidebar::after, +div.topic::after, +div.admonition::after, +blockquote::after { + display: block; + content: ''; + clear: both; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + margin-top: 10px; + margin-bottom: 10px; + border: 0; + border-collapse: collapse; +} + +table.align-center { + margin-left: auto; + margin-right: auto; +} + +table.align-default { + margin-left: auto; + margin-right: auto; +} + +table caption span.caption-number { + font-style: italic; +} + +table caption span.caption-text { +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +th > :first-child, +td > :first-child { + margin-top: 0px; +} + +th > :last-child, +td > :last-child { + margin-bottom: 0px; +} + +/* -- figures --------------------------------------------------------------- */ + +div.figure, figure { + margin: 0.5em; + padding: 0.5em; +} + +div.figure p.caption, figcaption { + padding: 0.3em; +} + +div.figure p.caption span.caption-number, +figcaption span.caption-number { + font-style: italic; +} + +div.figure p.caption span.caption-text, +figcaption span.caption-text { +} + +/* -- field list styles ----------------------------------------------------- */ + +table.field-list td, table.field-list th { + border: 0 !important; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.field-name { + -moz-hyphens: manual; + -ms-hyphens: manual; + -webkit-hyphens: manual; + hyphens: manual; +} + +/* -- hlist styles ---------------------------------------------------------- */ + +table.hlist { + margin: 1em 0; +} + +table.hlist td { + vertical-align: top; +} + +/* -- object description styles --------------------------------------------- */ + +.sig { + font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; +} + +.sig-name, code.descname { + background-color: transparent; + font-weight: bold; +} + +.sig-name { + font-size: 1.1em; +} + +code.descname { + font-size: 1.2em; +} + +.sig-prename, code.descclassname { + background-color: transparent; +} + +.optional { + font-size: 1.3em; +} + +.sig-paren { + font-size: larger; +} + +.sig-param.n { + font-style: italic; +} + +/* C++ specific styling */ + +.sig-inline.c-texpr, +.sig-inline.cpp-texpr { + font-family: unset; +} + +.sig.c .k, .sig.c .kt, +.sig.cpp .k, .sig.cpp .kt { + color: #0033B3; +} + +.sig.c .m, +.sig.cpp .m { + color: #1750EB; +} + +.sig.c .s, .sig.c .sc, +.sig.cpp .s, .sig.cpp .sc { + color: #067D17; +} + + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +:not(li) > ol > li:first-child > :first-child, +:not(li) > ul > li:first-child > :first-child { + margin-top: 0px; +} + +:not(li) > ol > li:last-child > :last-child, +:not(li) > ul > li:last-child > :last-child { + margin-bottom: 0px; +} + +ol.simple ol p, +ol.simple ul p, +ul.simple ol p, +ul.simple ul p { + margin-top: 0; +} + +ol.simple > li:not(:first-child) > p, +ul.simple > li:not(:first-child) > p { + margin-top: 0; +} + +ol.simple p, +ul.simple p { + margin-bottom: 0; +} +dl.footnote > dt, +dl.citation > dt { + float: left; + margin-right: 0.5em; +} + +dl.footnote > dd, +dl.citation > dd { + margin-bottom: 0em; +} + +dl.footnote > dd:after, +dl.citation > dd:after { + content: ""; + clear: both; +} + +dl.field-list { + display: grid; + grid-template-columns: fit-content(30%) auto; +} + +dl.field-list > dt { + font-weight: bold; + word-break: break-word; + padding-left: 0.5em; + padding-right: 5px; +} +dl.field-list > dt:after { + content: ":"; +} + + +dl.field-list > dd { + padding-left: 0.5em; + margin-top: 0em; + margin-left: 0em; + margin-bottom: 0em; +} + +dl { + margin-bottom: 15px; +} + +dd > :first-child { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +dl > dd:last-child, +dl > dd:last-child > :last-child { + margin-bottom: 0; +} + +dt:target, span.highlighted { + background-color: #fbe54e; +} + +rect.highlighted { + fill: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa; +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +.classifier:before { + font-style: normal; + margin: 0 0.5em; + content: ":"; + display: inline-block; +} + +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ +} + +pre, div[class*="highlight-"] { + clear: both; +} + +span.pre { + -moz-hyphens: none; + -ms-hyphens: none; + -webkit-hyphens: none; + hyphens: none; + white-space: nowrap; +} + +div[class*="highlight-"] { + margin: 1em 0; +} + +td.linenos pre { + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + display: block; +} + +table.highlighttable tbody { + display: block; +} + +table.highlighttable tr { + display: flex; +} + +table.highlighttable td { + margin: 0; + padding: 0; +} + +table.highlighttable td.linenos { + padding-right: 0.5em; +} + +table.highlighttable td.code { + flex: 1; + overflow: hidden; +} + +.highlight .hll { + display: block; +} + +div.highlight pre, +table.highlighttable pre { + margin: 0; +} + +div.code-block-caption + div { + margin-top: 0; +} + +div.code-block-caption { + margin-top: 1em; + padding: 2px 5px; + font-size: small; +} + +div.code-block-caption code { + background-color: transparent; +} + +table.highlighttable td.linenos, +span.linenos, +div.highlight span.gp { /* gp: Generic.Prompt */ + user-select: none; + -webkit-user-select: text; /* Safari fallback only */ + -webkit-user-select: none; /* Chrome/Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* IE10+ */ +} + +div.code-block-caption span.caption-number { + padding: 0.1em 0.3em; + font-style: italic; +} + +div.code-block-caption span.caption-text { +} + +div.literal-block-wrapper { + margin: 1em 0; +} + +code.xref, a code { + background-color: transparent; + font-weight: bold; +} + +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +span.eqno a.headerlink { + position: absolute; + z-index: 1; +} + +div.math:hover a.headerlink { + visibility: visible; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/_static/check-solid.svg b/docs-archive/apache-airflow-providers/_static/check-solid.svg new file mode 100644 index 00000000000..92fad4b5c0b --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/check-solid.svg @@ -0,0 +1,4 @@ + + + + diff --git a/docs-archive/apache-airflow-providers/_static/clipboard.min.js b/docs-archive/apache-airflow-providers/_static/clipboard.min.js new file mode 100644 index 00000000000..54b3c463811 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/clipboard.min.js @@ -0,0 +1,7 @@ +/*! + * clipboard.js v2.0.8 + * https://clipboardjs.com/ + * + * Licensed MIT © Zeno Rocha + */ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return o}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),c=n.n(e);function a(t){try{return document.execCommand(t)}catch(t){return}}var f=function(t){t=c()(t);return a("cut"),t};var l=function(t){var e,n,o,r=1 + + + + diff --git a/docs-archive/apache-airflow-providers/_static/copybutton.css b/docs-archive/apache-airflow-providers/_static/copybutton.css new file mode 100644 index 00000000000..f1916ec7d1b --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/copybutton.css @@ -0,0 +1,94 @@ +/* Copy buttons */ +button.copybtn { + position: absolute; + display: flex; + top: .3em; + right: .3em; + width: 1.7em; + height: 1.7em; + opacity: 0; + transition: opacity 0.3s, border .3s, background-color .3s; + user-select: none; + padding: 0; + border: none; + outline: none; + border-radius: 0.4em; + /* The colors that GitHub uses */ + border: #1b1f2426 1px solid; + background-color: #f6f8fa; + color: #57606a; +} + +button.copybtn.success { + border-color: #22863a; + color: #22863a; +} + +button.copybtn svg { + stroke: currentColor; + width: 1.5em; + height: 1.5em; + padding: 0.1em; +} + +div.highlight { + position: relative; +} + +/* Show the copybutton */ +.highlight:hover button.copybtn, button.copybtn.success { + opacity: 1; +} + +.highlight button.copybtn:hover { + background-color: rgb(235, 235, 235); +} + +.highlight button.copybtn:active { + background-color: rgb(187, 187, 187); +} + +/** + * A minimal CSS-only tooltip copied from: + * https://codepen.io/mildrenben/pen/rVBrpK + * + * To use, write HTML like the following: + * + *

Short

+ */ + .o-tooltip--left { + position: relative; + } + + .o-tooltip--left:after { + opacity: 0; + visibility: hidden; + position: absolute; + content: attr(data-tooltip); + padding: .2em; + font-size: .8em; + left: -.2em; + background: grey; + color: white; + white-space: nowrap; + z-index: 2; + border-radius: 2px; + transform: translateX(-102%) translateY(0); + transition: opacity 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); +} + +.o-tooltip--left:hover:after { + display: block; + opacity: 1; + visibility: visible; + transform: translateX(-100%) translateY(0); + transition: opacity 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); + transition-delay: .5s; +} + +/* By default the copy button shouldn't show up when printing a page */ +@media print { + button.copybtn { + display: none; + } +} diff --git a/docs-archive/apache-airflow-providers/_static/copybutton.js b/docs-archive/apache-airflow-providers/_static/copybutton.js new file mode 100644 index 00000000000..02c5c82d9d5 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/copybutton.js @@ -0,0 +1,248 @@ +// Localization support +const messages = { + 'en': { + 'copy': 'Copy', + 'copy_to_clipboard': 'Copy to clipboard', + 'copy_success': 'Copied!', + 'copy_failure': 'Failed to copy', + }, + 'es' : { + 'copy': 'Copiar', + 'copy_to_clipboard': 'Copiar al portapapeles', + 'copy_success': '¡Copiado!', + 'copy_failure': 'Error al copiar', + }, + 'de' : { + 'copy': 'Kopieren', + 'copy_to_clipboard': 'In die Zwischenablage kopieren', + 'copy_success': 'Kopiert!', + 'copy_failure': 'Fehler beim Kopieren', + }, + 'fr' : { + 'copy': 'Copier', + 'copy_to_clipboard': 'Copié dans le presse-papier', + 'copy_success': 'Copié !', + 'copy_failure': 'Échec de la copie', + }, + 'ru': { + 'copy': 'Скопировать', + 'copy_to_clipboard': 'Скопировать в буфер', + 'copy_success': 'Скопировано!', + 'copy_failure': 'Не удалось скопировать', + }, + 'zh-CN': { + 'copy': '复制', + 'copy_to_clipboard': '复制到剪贴板', + 'copy_success': '复制成功!', + 'copy_failure': '复制失败', + }, + 'it' : { + 'copy': 'Copiare', + 'copy_to_clipboard': 'Copiato negli appunti', + 'copy_success': 'Copiato!', + 'copy_failure': 'Errore durante la copia', + } +} + +let locale = 'en' +if( document.documentElement.lang !== undefined + && messages[document.documentElement.lang] !== undefined ) { + locale = document.documentElement.lang +} + +let doc_url_root = DOCUMENTATION_OPTIONS.URL_ROOT; +if (doc_url_root == '#') { + doc_url_root = ''; +} + +/** + * SVG files for our copy buttons + */ +let iconCheck = ` + ${messages[locale]['copy_success']} + + +` + +// If the user specified their own SVG use that, otherwise use the default +let iconCopy = ``; +if (!iconCopy) { + iconCopy = ` + ${messages[locale]['copy_to_clipboard']} + + + +` +} + +/** + * Set up copy/paste for code blocks + */ + +const runWhenDOMLoaded = cb => { + if (document.readyState != 'loading') { + cb() + } else if (document.addEventListener) { + document.addEventListener('DOMContentLoaded', cb) + } else { + document.attachEvent('onreadystatechange', function() { + if (document.readyState == 'complete') cb() + }) + } +} + +const codeCellId = index => `codecell${index}` + +// Clears selected text since ClipboardJS will select the text when copying +const clearSelection = () => { + if (window.getSelection) { + window.getSelection().removeAllRanges() + } else if (document.selection) { + document.selection.empty() + } +} + +// Changes tooltip text for a moment, then changes it back +// We want the timeout of our `success` class to be a bit shorter than the +// tooltip and icon change, so that we can hide the icon before changing back. +var timeoutIcon = 2000; +var timeoutSuccessClass = 1500; + +const temporarilyChangeTooltip = (el, oldText, newText) => { + el.setAttribute('data-tooltip', newText) + el.classList.add('success') + // Remove success a little bit sooner than we change the tooltip + // So that we can use CSS to hide the copybutton first + setTimeout(() => el.classList.remove('success'), timeoutSuccessClass) + setTimeout(() => el.setAttribute('data-tooltip', oldText), timeoutIcon) +} + +// Changes the copy button icon for two seconds, then changes it back +const temporarilyChangeIcon = (el) => { + el.innerHTML = iconCheck; + setTimeout(() => {el.innerHTML = iconCopy}, timeoutIcon) +} + +const addCopyButtonToCodeCells = () => { + // If ClipboardJS hasn't loaded, wait a bit and try again. This + // happens because we load ClipboardJS asynchronously. + if (window.ClipboardJS === undefined) { + setTimeout(addCopyButtonToCodeCells, 250) + return + } + + // Add copybuttons to all of our code cells + const COPYBUTTON_SELECTOR = 'div.highlight pre'; + const codeCells = document.querySelectorAll(COPYBUTTON_SELECTOR) + codeCells.forEach((codeCell, index) => { + const id = codeCellId(index) + codeCell.setAttribute('id', id) + + const clipboardButton = id => + `` + codeCell.insertAdjacentHTML('afterend', clipboardButton(id)) + }) + +function escapeRegExp(string) { + return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string +} + +/** + * Removes excluded text from a Node. + * + * @param {Node} target Node to filter. + * @param {string} exclude CSS selector of nodes to exclude. + * @returns {DOMString} Text from `target` with text removed. + */ +function filterText(target, exclude) { + const clone = target.cloneNode(true); // clone as to not modify the live DOM + if (exclude) { + // remove excluded nodes + clone.querySelectorAll(exclude).forEach(node => node.remove()); + } + return clone.innerText; +} + +// Callback when a copy button is clicked. Will be passed the node that was clicked +// should then grab the text and replace pieces of text that shouldn't be used in output +function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true, copyEmptyLines = true, lineContinuationChar = "", hereDocDelim = "") { + var regexp; + var match; + + // Do we check for line continuation characters and "HERE-documents"? + var useLineCont = !!lineContinuationChar + var useHereDoc = !!hereDocDelim + + // create regexp to capture prompt and remaining line + if (isRegexp) { + regexp = new RegExp('^(' + copybuttonPromptText + ')(.*)') + } else { + regexp = new RegExp('^(' + escapeRegExp(copybuttonPromptText) + ')(.*)') + } + + const outputLines = []; + var promptFound = false; + var gotLineCont = false; + var gotHereDoc = false; + const lineGotPrompt = []; + for (const line of textContent.split('\n')) { + match = line.match(regexp) + if (match || gotLineCont || gotHereDoc) { + promptFound = regexp.test(line) + lineGotPrompt.push(promptFound) + if (removePrompts && promptFound) { + outputLines.push(match[2]) + } else { + outputLines.push(line) + } + gotLineCont = line.endsWith(lineContinuationChar) & useLineCont + if (line.includes(hereDocDelim) & useHereDoc) + gotHereDoc = !gotHereDoc + } else if (!onlyCopyPromptLines) { + outputLines.push(line) + } else if (copyEmptyLines && line.trim() === '') { + outputLines.push(line) + } + } + + // If no lines with the prompt were found then just use original lines + if (lineGotPrompt.some(v => v === true)) { + textContent = outputLines.join('\n'); + } + + // Remove a trailing newline to avoid auto-running when pasting + if (textContent.endsWith("\n")) { + textContent = textContent.slice(0, -1) + } + return textContent +} + + +var copyTargetText = (trigger) => { + var target = document.querySelector(trigger.attributes['data-clipboard-target'].value); + + // get filtered text + let exclude = '.linenos, .gp'; + + let text = filterText(target, exclude); + return formatCopyText(text, '', false, true, true, true, '', '') +} + + // Initialize with a callback so we can modify the text before copy + const clipboard = new ClipboardJS('.copybtn', {text: copyTargetText}) + + // Update UI with error/success messages + clipboard.on('success', event => { + clearSelection() + temporarilyChangeTooltip(event.trigger, messages[locale]['copy'], messages[locale]['copy_success']) + temporarilyChangeIcon(event.trigger) + }) + + clipboard.on('error', event => { + temporarilyChangeTooltip(event.trigger, messages[locale]['copy'], messages[locale]['copy_failure']) + }) +} + +runWhenDOMLoaded(addCopyButtonToCodeCells) \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/_static/copybutton_funcs.js b/docs-archive/apache-airflow-providers/_static/copybutton_funcs.js new file mode 100644 index 00000000000..dbe1aaad79c --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/copybutton_funcs.js @@ -0,0 +1,73 @@ +function escapeRegExp(string) { + return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string +} + +/** + * Removes excluded text from a Node. + * + * @param {Node} target Node to filter. + * @param {string} exclude CSS selector of nodes to exclude. + * @returns {DOMString} Text from `target` with text removed. + */ +export function filterText(target, exclude) { + const clone = target.cloneNode(true); // clone as to not modify the live DOM + if (exclude) { + // remove excluded nodes + clone.querySelectorAll(exclude).forEach(node => node.remove()); + } + return clone.innerText; +} + +// Callback when a copy button is clicked. Will be passed the node that was clicked +// should then grab the text and replace pieces of text that shouldn't be used in output +export function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true, copyEmptyLines = true, lineContinuationChar = "", hereDocDelim = "") { + var regexp; + var match; + + // Do we check for line continuation characters and "HERE-documents"? + var useLineCont = !!lineContinuationChar + var useHereDoc = !!hereDocDelim + + // create regexp to capture prompt and remaining line + if (isRegexp) { + regexp = new RegExp('^(' + copybuttonPromptText + ')(.*)') + } else { + regexp = new RegExp('^(' + escapeRegExp(copybuttonPromptText) + ')(.*)') + } + + const outputLines = []; + var promptFound = false; + var gotLineCont = false; + var gotHereDoc = false; + const lineGotPrompt = []; + for (const line of textContent.split('\n')) { + match = line.match(regexp) + if (match || gotLineCont || gotHereDoc) { + promptFound = regexp.test(line) + lineGotPrompt.push(promptFound) + if (removePrompts && promptFound) { + outputLines.push(match[2]) + } else { + outputLines.push(line) + } + gotLineCont = line.endsWith(lineContinuationChar) & useLineCont + if (line.includes(hereDocDelim) & useHereDoc) + gotHereDoc = !gotHereDoc + } else if (!onlyCopyPromptLines) { + outputLines.push(line) + } else if (copyEmptyLines && line.trim() === '') { + outputLines.push(line) + } + } + + // If no lines with the prompt were found then just use original lines + if (lineGotPrompt.some(v => v === true)) { + textContent = outputLines.join('\n'); + } + + // Remove a trailing newline to avoid auto-running when pasting + if (textContent.endsWith("\n")) { + textContent = textContent.slice(0, -1) + } + return textContent +} diff --git a/docs-archive/apache-airflow-providers/_static/doctools.js b/docs-archive/apache-airflow-providers/_static/doctools.js new file mode 100644 index 00000000000..527b876ca63 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/doctools.js @@ -0,0 +1,156 @@ +/* + * doctools.js + * ~~~~~~~~~~~ + * + * Base JavaScript utilities for all Sphinx HTML documentation. + * + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ +"use strict"; + +const BLACKLISTED_KEY_CONTROL_ELEMENTS = new Set([ + "TEXTAREA", + "INPUT", + "SELECT", + "BUTTON", +]); + +const _ready = (callback) => { + if (document.readyState !== "loading") { + callback(); + } else { + document.addEventListener("DOMContentLoaded", callback); + } +}; + +/** + * Small JavaScript module for the documentation. + */ +const Documentation = { + init: () => { + Documentation.initDomainIndexTable(); + Documentation.initOnKeyListeners(); + }, + + /** + * i18n support + */ + TRANSLATIONS: {}, + PLURAL_EXPR: (n) => (n === 1 ? 0 : 1), + LOCALE: "unknown", + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext: (string) => { + const translated = Documentation.TRANSLATIONS[string]; + switch (typeof translated) { + case "undefined": + return string; // no translation + case "string": + return translated; // translation exists + default: + return translated[0]; // (singular, plural) translation tuple exists + } + }, + + ngettext: (singular, plural, n) => { + const translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated !== "undefined") + return translated[Documentation.PLURAL_EXPR(n)]; + return n === 1 ? singular : plural; + }, + + addTranslations: (catalog) => { + Object.assign(Documentation.TRANSLATIONS, catalog.messages); + Documentation.PLURAL_EXPR = new Function( + "n", + `return (${catalog.plural_expr})` + ); + Documentation.LOCALE = catalog.locale; + }, + + /** + * helper function to focus on search bar + */ + focusSearchBar: () => { + document.querySelectorAll("input[name=q]")[0]?.focus(); + }, + + /** + * Initialise the domain index toggle buttons + */ + initDomainIndexTable: () => { + const toggler = (el) => { + const idNumber = el.id.substr(7); + const toggledRows = document.querySelectorAll(`tr.cg-${idNumber}`); + if (el.src.substr(-9) === "minus.png") { + el.src = `${el.src.substr(0, el.src.length - 9)}plus.png`; + toggledRows.forEach((el) => (el.style.display = "none")); + } else { + el.src = `${el.src.substr(0, el.src.length - 8)}minus.png`; + toggledRows.forEach((el) => (el.style.display = "")); + } + }; + + const togglerElements = document.querySelectorAll("img.toggler"); + togglerElements.forEach((el) => + el.addEventListener("click", (event) => toggler(event.currentTarget)) + ); + togglerElements.forEach((el) => (el.style.display = "")); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) togglerElements.forEach(toggler); + }, + + initOnKeyListeners: () => { + // only install a listener if it is really needed + if ( + !DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS && + !DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS + ) + return; + + document.addEventListener("keydown", (event) => { + // bail for input elements + if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return; + // bail with special keys + if (event.altKey || event.ctrlKey || event.metaKey) return; + + if (!event.shiftKey) { + switch (event.key) { + case "ArrowLeft": + if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break; + + const prevLink = document.querySelector('link[rel="prev"]'); + if (prevLink && prevLink.href) { + window.location.href = prevLink.href; + event.preventDefault(); + } + break; + case "ArrowRight": + if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break; + + const nextLink = document.querySelector('link[rel="next"]'); + if (nextLink && nextLink.href) { + window.location.href = nextLink.href; + event.preventDefault(); + } + break; + } + } + + // some keyboard layouts may need Shift to get / + switch (event.key) { + case "/": + if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break; + Documentation.focusSearchBar(); + event.preventDefault(); + } + }); + }, +}; + +// quick alias for translations +const _ = Documentation.gettext; + +_ready(Documentation.init); diff --git a/docs-archive/apache-airflow-providers/_static/documentation_options.js b/docs-archive/apache-airflow-providers/_static/documentation_options.js new file mode 100644 index 00000000000..62d912303a2 --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/documentation_options.js @@ -0,0 +1,14 @@ +var DOCUMENTATION_OPTIONS = { + URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), + VERSION: 'devel', + LANGUAGE: 'en', + COLLAPSE_INDEX: false, + BUILDER: 'html', + FILE_SUFFIX: '.html', + LINK_SUFFIX: '.html', + HAS_SOURCE: true, + SOURCELINK_SUFFIX: '.txt', + NAVIGATION_WITH_KEYS: false, + SHOW_SEARCH_SUMMARY: true, + ENABLE_SEARCH_SHORTCUTS: true, +}; \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/_static/file.png b/docs-archive/apache-airflow-providers/_static/file.png new file mode 100644 index 0000000000000000000000000000000000000000..a858a410e4faa62ce324d814e4b816fff83a6fb3 GIT binary patch literal 286 zcmV+(0pb3MP)s`hMrGg#P~ix$^RISR_I47Y|r1 z_CyJOe}D1){SET-^Amu_i71Lt6eYfZjRyw@I6OQAIXXHDfiX^GbOlHe=Ae4>0m)d(f|Me07*qoM6N<$f}vM^LjV8( literal 0 HcmV?d00001 diff --git a/docs-archive/apache-airflow-providers/_static/jquery-3.6.0.js b/docs-archive/apache-airflow-providers/_static/jquery-3.6.0.js new file mode 100644 index 00000000000..fc6c299b73e --- /dev/null +++ b/docs-archive/apache-airflow-providers/_static/jquery-3.6.0.js @@ -0,0 +1,10881 @@ +/*! + * jQuery JavaScript Library v3.6.0 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright OpenJS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2021-03-02T17:08Z + */ +( function( global, factory ) { + + "use strict"; + + if ( typeof module === "object" && typeof module.exports === "object" ) { + + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +// enough that all such attempts are guarded in a try block. +"use strict"; + +var arr = []; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +var flat = arr.flat ? function( array ) { + return arr.flat.call( array ); +} : function( array ) { + return arr.concat.apply( [], array ); +}; + + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +var support = {}; + +var isFunction = function isFunction( obj ) { + + // Support: Chrome <=57, Firefox <=52 + // In some browsers, typeof returns "function" for HTML elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + // Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5 + // Plus for old WebKit, typeof returns "function" for HTML collections + // (e.g., `typeof document.getElementsByTagName("div") === "function"`). (gh-4756) + return typeof obj === "function" && typeof obj.nodeType !== "number" && + typeof obj.item !== "function"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + +var document = window.document; + + + + var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true + }; + + function DOMEval( code, node, doc ) { + doc = doc || document; + + var i, val, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + + // Support: Firefox 64+, Edge 18+ + // Some browsers don't support the "nonce" property on scripts. + // On the other hand, just using `getAttribute` is not enough as + // the `nonce` attribute is reset to an empty string whenever it + // becomes browsing-context connected. + // See https://github.com/whatwg/html/issues/2369 + // See https://html.spec.whatwg.org/#nonce-attributes + // The `node.getAttribute` check was added for the sake of + // `jQuery.globalEval` so that it can fake a nonce-containing node + // via an object. + val = node[ i ] || node.getAttribute && node.getAttribute( i ); + if ( val ) { + script.setAttribute( i, val ); + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.6.0", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + even: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return ( i + 1 ) % 2; + } ) ); + }, + + odd: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return i % 2; + } ) ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a provided context; falls back to the global one + // if not specified. + globalEval: function( code, options, doc ) { + DOMEval( code, { nonce: options && options.nonce }, doc ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return flat( ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), + function( _i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); + } ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.6 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2021-02-16 + */ +( function( window ) { +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ( {} ).hasOwnProperty, + arr = [], + pop = arr.pop, + pushNative = arr.push, + push = arr.push, + slice = arr.slice, + + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[ i ] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + + "ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram + identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + + // "Attribute values must be CSS identifiers [capture 5] + // or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + + whitespace + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + + "*" ), + rdescend = new RegExp( whitespace + "|>" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rhtml = /HTML$/i, + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), + funescape = function( escape, nonHex ) { + var high = "0x" + escape.slice( 1 ) - 0x10000; + + return nonHex ? + + // Strip the backslash prefix from a non-hex escape sequence + nonHex : + + // Replace a hexadecimal escape sequence with the encoded Unicode code point + // Support: IE <=11+ + // For values outside the Basic Multilingual Plane (BMP), manually construct a + // surrogate pair + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + ( arr = slice.call( preferredDoc.childNodes ) ), + preferredDoc.childNodes + ); + + // Support: Android<4.0 + // Detect silently failing push.apply + // eslint-disable-next-line no-unused-expressions + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + pushNative.apply( target, slice.call( els ) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + + // Can't trust NodeList.length + while ( ( target[ j++ ] = els[ i++ ] ) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + setDocument( context ); + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { + + // ID selector + if ( ( m = match[ 1 ] ) ) { + + // Document context + if ( nodeType === 9 ) { + if ( ( elem = context.getElementById( m ) ) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && ( elem = newContext.getElementById( m ) ) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[ 2 ] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !nonnativeSelectorCache[ selector + " " ] && + ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && + + // Support: IE 8 only + // Exclude object elements + ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // The technique has to be used as well when a leading combinator is used + // as such selectors are not recognized by querySelectorAll. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && + ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + + // We can use :scope instead of the ID hack if the browser + // supports it & if we're not changing the context. + if ( newContext !== context || !support.scope ) { + + // Capture the context ID, setting it first if necessary + if ( ( nid = context.getAttribute( "id" ) ) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", ( nid = expando ) ); + } + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + + toSelector( groups[ i ] ); + } + newSelector = groups.join( "," ); + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return ( cache[ key + " " ] = value ); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement( "fieldset" ); + + try { + return !!fn( el ); + } catch ( e ) { + return false; + } finally { + + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split( "|" ), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[ i ] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( ( cur = cur.nextSibling ) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return ( name === "input" || name === "button" ) && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction( function( argument ) { + argument = +argument; + return markFunction( function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ ( j = matchIndexes[ i ] ) ] ) { + seed[ j ] = !( matches[ j ] = seed[ j ] ); + } + } + } ); + } ); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + var namespace = elem && elem.namespaceURI, + docElem = elem && ( elem.ownerDocument || elem ).documentElement; + + // Support: IE <=8 + // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes + // https://bugs.jquery.com/ticket/4833 + return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9 - 11+, Edge 12 - 18+ + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( preferredDoc != document && + ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, + // Safari 4 - 5 only, Opera <=11.6 - 12.x only + // IE/Edge & older browsers don't support the :scope pseudo-class. + // Support: Safari 6.0 only + // Safari 6.0 supports :scope but it's an alias of :root there. + support.scope = assert( function( el ) { + docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); + return typeof el.querySelectorAll !== "undefined" && + !el.querySelectorAll( ":scope fieldset div" ).length; + } ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert( function( el ) { + el.className = "i"; + return !el.getAttribute( "className" ); + } ); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert( function( el ) { + el.appendChild( document.createComment( "" ) ); + return !el.getElementsByTagName( "*" ).length; + } ); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert( function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + } ); + + // ID filter and find + if ( support.getById ) { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute( "id" ) === attrId; + }; + }; + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode( "id" ); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( ( elem = elems[ i++ ] ) ) { + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find[ "TAG" ] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { + + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert( function( el ) { + + var input; + + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll( "[selected]" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push( "~=" ); + } + + // Support: IE 11+, Edge 15 - 18+ + // IE 11/Edge don't find elements on a `[name='']` query in some cases. + // Adding a temporary attribute to the document before the selection works + // around the issue. + // Interestingly, IE 10 & older don't seem to have the issue. + input = document.createElement( "input" ); + input.setAttribute( "name", "" ); + el.appendChild( input ); + if ( !el.querySelectorAll( "[name='']" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + + whitespace + "*(?:''|\"\")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll( ":checked" ).length ) { + rbuggyQSA.push( ":checked" ); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push( ".#.+[+~]" ); + } + + // Support: Firefox <=3.6 - 5 only + // Old Firefox doesn't throw on a badly-escaped identifier. + el.querySelectorAll( "\\\f" ); + rbuggyQSA.push( "[\\r\\n\\f]" ); + } ); + + assert( function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement( "input" ); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll( "[name=d]" ).length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: Opera 10 - 11 only + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll( "*,:x" ); + rbuggyQSA.push( ",.*:" ); + } ); + } + + if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector ) ) ) ) { + + assert( function( el ) { + + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + } ); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + ) ); + } : + function( a, b ) { + if ( b ) { + while ( ( b = b.parentNode ) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { + + // Choose the first element that is related to our preferred document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( a == document || a.ownerDocument == preferredDoc && + contains( preferredDoc, a ) ) { + return -1; + } + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( b == document || b.ownerDocument == preferredDoc && + contains( preferredDoc, b ) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + return a == document ? -1 : + b == document ? 1 : + /* eslint-enable eqeqeq */ + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( ( cur = cur.parentNode ) ) { + ap.unshift( cur ); + } + cur = b; + while ( ( cur = cur.parentNode ) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[ i ] === bp[ i ] ) { + i++; + } + + return i ? + + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[ i ], bp[ i ] ) : + + // Otherwise nodes in our document sort first + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + ap[ i ] == preferredDoc ? -1 : + bp[ i ] == preferredDoc ? 1 : + /* eslint-enable eqeqeq */ + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + setDocument( elem ); + + if ( support.matchesSelector && documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch ( e ) { + nonnativeSelectorCache( expr, true ); + } + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( context.ownerDocument || context ) != document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( elem.ownerDocument || elem ) != document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return ( sel + "" ).replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + + // If no nodeType, this is expected to be an array + while ( ( node = elem[ i++ ] ) ) { + + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[ 1 ] = match[ 1 ].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[ 3 ] = ( match[ 3 ] || match[ 4 ] || + match[ 5 ] || "" ).replace( runescape, funescape ); + + if ( match[ 2 ] === "~=" ) { + match[ 3 ] = " " + match[ 3 ] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[ 1 ] = match[ 1 ].toLowerCase(); + + if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { + + // nth-* requires argument + if ( !match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[ 4 ] = +( match[ 4 ] ? + match[ 5 ] + ( match[ 6 ] || 1 ) : + 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); + match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); + + // other types prohibit arguments + } else if ( match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[ 6 ] && match[ 2 ]; + + if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[ 3 ] ) { + match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + + // Get excess from tokenize (recursively) + ( excess = tokenize( unquoted, true ) ) && + + // advance to the next closing parenthesis + ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { + + // excess is a negative index + match[ 0 ] = match[ 0 ].slice( 0, excess ); + match[ 2 ] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { + return true; + } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + ( pattern = new RegExp( "(^|" + whitespace + + ")" + className + "(" + whitespace + "|$)" ) ) && classCache( + className, function( elem ) { + return pattern.test( + typeof elem.className === "string" && elem.className || + typeof elem.getAttribute !== "undefined" && + elem.getAttribute( "class" ) || + "" + ); + } ); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + /* eslint-disable max-len */ + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + /* eslint-enable max-len */ + + }; + }, + + "CHILD": function( type, what, _argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, _context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( ( node = node[ dir ] ) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( ( node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + + // Use previously-cached element index if available + if ( useCache ) { + + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + + // Use the same loop as above to seek `elem` from the start + while ( ( node = ++nodeIndex && node && node[ dir ] || + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || + ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction( function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[ i ] ); + seed[ idx ] = !( matches[ idx ] = matched[ i ] ); + } + } ) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + + // Potentially complex pseudos + "not": markFunction( function( selector ) { + + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction( function( seed, matches, _context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( ( elem = unmatched[ i ] ) ) { + seed[ i ] = !( matches[ i ] = elem ); + } + } + } ) : + function( elem, _context, xml ) { + input[ 0 ] = elem; + matcher( input, null, xml, results ); + + // Don't keep the element (issue #299) + input[ 0 ] = null; + return !results.pop(); + }; + } ), + + "has": markFunction( function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + } ), + + "contains": markFunction( function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; + }; + } ), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + + // lang value must be a valid identifier + if ( !ridentifier.test( lang || "" ) ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( ( elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); + return false; + }; + } ), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && + ( !document.hasFocus || document.hasFocus() ) && + !!( elem.type || elem.href || ~elem.tabIndex ); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return ( nodeName === "input" && !!elem.checked ) || + ( nodeName === "option" && !!elem.selected ); + }, + + "selected": function( elem ) { + + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + // eslint-disable-next-line no-unused-expressions + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos[ "empty" ]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( ( attr = elem.getAttribute( "type" ) ) == null || + attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo( function() { + return [ 0 ]; + } ), + + "last": createPositionalPseudo( function( _matchIndexes, length ) { + return [ length - 1 ]; + } ), + + "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + } ), + + "even": createPositionalPseudo( function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "odd": createPositionalPseudo( function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? + argument + length : + argument > length ? + length : + argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ) + } +}; + +Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || ( match = rcomma.exec( soFar ) ) ) { + if ( match ) { + + // Don't consume trailing commas as valid + soFar = soFar.slice( match[ 0 ].length ) || soFar; + } + groups.push( ( tokens = [] ) ); + } + + matched = false; + + // Combinators + if ( ( match = rcombinators.exec( soFar ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + + // Cast descendant combinators to space + type: match[ 0 ].replace( rtrim, " " ) + } ); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || + ( match = preFilters[ type ]( match ) ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + type: type, + matches: match + } ); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[ i ].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || ( elem[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || + ( outerCache[ elem.uniqueID ] = {} ); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( ( oldCache = uniqueCache[ key ] ) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return ( newCache[ 2 ] = oldCache[ 2 ] ); + } else { + + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[ i ]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[ 0 ]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[ i ], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( ( elem = unmatched[ i ] ) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction( function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( + selector || "*", + context.nodeType ? [ context ] : context, + [] + ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( ( elem = temp[ i ] ) ) { + matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) ) { + + // Restore matcherIn since elem is not yet a final match + temp.push( ( matcherIn[ i ] = elem ) ); + } + } + postFinder( null, ( matcherOut = [] ), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) && + ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { + + seed[ temp ] = !( results[ temp ] = elem ); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + } ); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[ 0 ].type ], + implicitRelative = leadingRelative || Expr.relative[ " " ], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + ( checkContext = context ).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; + } else { + matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[ j ].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens + .slice( 0, i - 1 ) + .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), + + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), + len = elems.length; + + if ( outermost ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + outermostContext = context == document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( !context && elem.ownerDocument != document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( ( matcher = elementMatchers[ j++ ] ) ) { + if ( matcher( elem, context || document, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + + // They will have gone through all possible matchers + if ( ( elem = !matcher && elem ) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( ( matcher = setMatchers[ j++ ] ) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !( unmatched[ i ] || setMatched[ i ] ) ) { + setMatched[ i ] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[ i ] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( + selector, + matcherFromGroupMatchers( elementMatchers, setMatchers ) + ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( ( selector = compiled.selector || selector ) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[ 0 ] = match[ 0 ].slice( 0 ); + if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { + + context = ( Expr.find[ "ID" ]( token.matches[ 0 ] + .replace( runescape, funescape ), context ) || [] )[ 0 ]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[ i ]; + + // Abort if we hit a combinator + if ( Expr.relative[ ( type = token.type ) ] ) { + break; + } + if ( ( find = Expr.find[ type ] ) ) { + + // Search, expanding context for leading sibling combinators + if ( ( seed = find( + token.matches[ 0 ].replace( runescape, funescape ), + rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || + context + ) ) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert( function( el ) { + + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; +} ); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert( function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute( "href" ) === "#"; +} ) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + } ); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert( function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +} ) ) { + addHandle( "value", function( elem, _name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + } ); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert( function( el ) { + return el.getAttribute( "disabled" ) == null; +} ) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; + } + } ); +} + +return Sizzle; + +} )( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +} +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, _i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, _i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, _i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( elem.contentDocument != null && + + // Support: IE 11+ + // elements with no `data` attribute has an object + // `contentDocument` with a `null` prototype. + getProto( elem.contentDocument ) ) { + + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( _i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the primary Deferred + primary = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + primary.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, primary.done( updateFunc( i ) ).resolve, primary.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( primary.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return primary.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), primary.reject ); + } + + return primary.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, _key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( _all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var documentElement = document.documentElement; + + + + var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }, + composed = { composed: true }; + + // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only + // Check attachment across shadow DOM boundaries when possible (gh-3504) + // Support: iOS 10.0-10.2 only + // Early iOS 10 versions support `attachShadow` but not `getRootNode`, + // leading to errors. We need to check for `getRootNode`. + if ( documentElement.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }; + } +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + isAttached( elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; + + // Support: IE <=9 only + // IE <=9 replaces "; + support.option = !!div.lastChild; +} )(); + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
" ], + col: [ 2, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + _default: [ 0, "", "" ] +}; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: IE <=9 only +if ( !support.option ) { + wrapMap.optgroup = wrapMap.option = [ 1, "" ]; +} + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +var rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = Object.create( null ); + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + + // Support: Chrome 86+ + // In Chrome, if an element having a focusout handler is blurred by + // clicking outside of it, it invokes the handler synchronously. If + // that handler calls `.remove()` on the element, the data is cleared, + // leaving `result` undefined. We need to guard against this. + return result && result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + which: true +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + // Suppress native focus or blur as it's already being fired + // in leverageNative. + _default: function() { + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.get( src ); + events = pdataOld.events; + + if ( events ) { + dataPriv.remove( dest, "handle events" ); + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = flat( args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + }, doc ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html; + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var swap = function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableTrDimensionsVal, reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + }, + + // Support: IE 9 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Behavior in IE 9 is more subtle than in newer versions & it passes + // some versions of this test; make sure not to make it pass there! + // + // Support: Firefox 70+ + // Only Firefox includes border widths + // in computed dimensions. (gh-4529) + reliableTrDimensions: function() { + var table, tr, trChild, trStyle; + if ( reliableTrDimensionsVal == null ) { + table = document.createElement( "table" ); + tr = document.createElement( "tr" ); + trChild = document.createElement( "div" ); + + table.style.cssText = "position:absolute;left:-11111px;border-collapse:separate"; + tr.style.cssText = "border:1px solid"; + + // Support: Chrome 86+ + // Height set through cssText does not get applied. + // Computed height then comes back as 0. + tr.style.height = "1px"; + trChild.style.height = "9px"; + + // Support: Android 8 Chrome 86+ + // In our bodyBackground.html iframe, + // display for all div elements is set to "inline", + // which causes a problem only in Android 8 Chrome 86. + // Ensuring the div is display: block + // gets around this issue. + trChild.style.display = "block"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = ( parseInt( trStyle.height, 10 ) + + parseInt( trStyle.borderTopWidth, 10 ) + + parseInt( trStyle.borderBottomWidth, 10 ) ) === tr.offsetHeight; + + documentElement.removeChild( table ); + } + return reliableTrDimensionsVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( _elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Support: IE 9 - 11 only + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. + if ( ( !support.boxSizingReliable() && isBorderBox || + + // Support: IE 10 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Interestingly, in some cases IE 9 doesn't suffer from this issue. + !support.reliableTrDimensions() && nodeName( elem, "tr" ) || + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + val === "auto" || + + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + + // Make sure the element is visible & connected + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( _i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( dataPriv.get( cur, "events" ) || Object.create( null ) )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + + // Handle: regular nodes (via `this.ownerDocument`), window + // (via `this.document`) & document (via `this`). + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = { guid: Date.now() }; + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml, parserErrorElem; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) {} + + parserErrorElem = xml && xml.getElementsByTagName( "parsererror" )[ 0 ]; + if ( !xml || parserErrorElem ) { + jQuery.error( "Invalid XML: " + ( + parserErrorElem ? + jQuery.map( parserErrorElem.childNodes, function( el ) { + return el.textContent; + } ).join( "\n" ) : + data + ) ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ).filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ).map( function( _i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + +originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Use a noop converter for missing script but not if jsonp + if ( !isSuccess && + jQuery.inArray( "script", s.dataTypes ) > -1 && + jQuery.inArray( "json", s.dataTypes ) < 0 ) { + s.converters[ "text script" ] = function() {}; + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( _i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + + +jQuery._evalUrl = function( url, options, doc ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options, doc ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( " + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Auth backends

+

This is a summary of all Apache Airflow Community provided implementations of authentication backends +exposed via community-managed providers.

+

Airflow’s authentication for web server and API is based on Flask Application Builder’s authentication +capabilities. You can read more about those in +FAB security docs.

+

You can also +take a look at Auth backends available in the core Airflow in Webserver +or see those provided by the community-managed providers:

+
+

Google

+
    +
  • google_openid

  • +
+
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/core-extensions/connections.html b/docs-archive/apache-airflow-providers/core-extensions/connections.html new file mode 100644 index 00000000000..1e0a653c521 --- /dev/null +++ b/docs-archive/apache-airflow-providers/core-extensions/connections.html @@ -0,0 +1,1282 @@ + + + + + + + + + + + + Connections — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Connections

+

This is a summary of all Apache Airflow Community provided implementations of connections +exposed via community-managed providers.

+

Airflow can be extended by providers with custom connections. Each provider can define their own custom +connections, that can define their own custom parameters and UI customizations/field behaviours for each +connection, when the connection is managed via Airflow UI. Those connections also define connection types, +that can be used to automatically create Airflow Hooks for specific connection types.

+

The connection management is explained in +Connections & Hooks and you can also see those +provided by the community-managed providers:

+
+

Airbyte

+ +
+
+

Alibaba

+ +
+
+

Amazon

+ +
+
+

Apache Cassandra

+ +
+
+

Apache Drill

+ +
+
+

Apache Druid

+ +
+
+

Apache HDFS

+ +
+
+

Apache Hive

+ +
+
+

Apache Livy

+ +
+
+

Apache Pig

+ +
+
+

Apache Spark

+ +
+
+

Apache Sqoop

+ +
+
+

ArangoDB

+ +
+
+

Asana

+ +
+
+

Atlassian Jira

+ +
+
+

IBM Cloudant

+ +
+
+

Kubernetes

+ +
+
+

Databricks

+ +
+
+

dbt Cloud

+ +
+
+

Dingding

+ +
+
+

Discord

+ +
+
+

Docker

+ +
+
+

Elasticsearch

+ +
+
+

Exasol

+ +
+
+

Facebook

+ +
+
+

File Transfer Protocol (FTP)

+ +
+
+

Github

+ +
+
+

Google

+ +
+
+

gRPC

+ +
+
+

Hashicorp

+ +
+
+

Hypertext Transfer Protocol (HTTP)

+ +
+
+

Internet Message Access Protocol (IMAP)

+ +
+
+

Influxdb

+ +
+
+

Java Database Connectivity (JDBC)

+ +
+
+

Jenkins

+ +
+
+

Microsoft Azure

+ +
+
+

Microsoft SQL Server (MSSQL)

+ +
+
+

MongoDB

+ +
+
+

MySQL

+ +
+
+

Neo4j

+ +
+
+

ODBC

+ +
+
+

Opsgenie

+ +
+
+

Oracle

+ +
+
+

Pagerduty

+ +
+
+

PostgreSQL

+ +
+
+

Presto

+ +
+
+

Qubole

+ +
+
+

Redis

+ +
+
+

Salesforce

+ +
+
+

Samba

+ +
+
+

Segment

+ +
+
+

SFTP

+ +
+
+

Slack

+ +
+
+

Snowflake

+ +
+
+

SQLite

+ +
+
+

SSH

+ +
+
+

Tableau

+ +
+
+

Tabular

+ +
+
+

Trino

+ +
+
+

Vertica

+ +
+
+

Yandex

+ +
+
+

Zendesk

+ +
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/core-extensions/extra-links.html b/docs-archive/apache-airflow-providers/core-extensions/extra-links.html new file mode 100644 index 00000000000..581a5c8421c --- /dev/null +++ b/docs-archive/apache-airflow-providers/core-extensions/extra-links.html @@ -0,0 +1,960 @@ + + + + + + + + + + + + Extra Links — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+ + + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/core-extensions/index.html b/docs-archive/apache-airflow-providers/core-extensions/index.html new file mode 100644 index 00000000000..ad967132a63 --- /dev/null +++ b/docs-archive/apache-airflow-providers/core-extensions/index.html @@ -0,0 +1,908 @@ + + + + + + + + + + + + Core Extensions — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + + +
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/core-extensions/logging.html b/docs-archive/apache-airflow-providers/core-extensions/logging.html new file mode 100644 index 00000000000..aac948412bc --- /dev/null +++ b/docs-archive/apache-airflow-providers/core-extensions/logging.html @@ -0,0 +1,859 @@ + + + + + + + + + + + + Writing logs — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Writing logs

+

This is a summary of all Apache Airflow Community provided implementations of writing task logs +exposed via community-managed providers. You can also see logging options available in the core Airflow in +Logging for Tasks and here you can see those +provided by the community-managed providers:

+ + + + + +
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/core-extensions/secrets-backends.html b/docs-archive/apache-airflow-providers/core-extensions/secrets-backends.html new file mode 100644 index 00000000000..d33b8dc0d24 --- /dev/null +++ b/docs-archive/apache-airflow-providers/core-extensions/secrets-backends.html @@ -0,0 +1,852 @@ + + + + + + + + + + + + Secret backends — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Secret backends

+

This is a summary of all Apache Airflow Community provided implementations of secret backends +exposed via community-managed providers.

+

Airflow has the capability of reading connections, variables and configuration from Secret Backends rather +than from its own Database. While storing such information in Airflow’s database is possible, many of the +enterprise customers already have some secret managers storing secrets, and Airflow can tap into those +via providers that implement secrets backends for services Airflow integrates with.

+

You can also take a +look at Secret backends available in the core Airflow in +Secrets Backend and here you can see the ones +provided by the community-managed providers:

+ + +
+

Hashicorp

+ +
+
+

Microsoft Azure

+ +
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/genindex.html b/docs-archive/apache-airflow-providers/genindex.html new file mode 100644 index 00000000000..d251f10497c --- /dev/null +++ b/docs-archive/apache-airflow-providers/genindex.html @@ -0,0 +1,785 @@ + + + + + + + + + + + + Index — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ + +

Index

+ +
+ +
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/howto/create-update-providers.html b/docs-archive/apache-airflow-providers/howto/create-update-providers.html new file mode 100644 index 00000000000..5ca0ce6e708 --- /dev/null +++ b/docs-archive/apache-airflow-providers/howto/create-update-providers.html @@ -0,0 +1,1180 @@ + + + + + + + + + + + + Community Providers — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Community Providers

+
+

How-to creating a new community provider

+

This document gathers the necessary steps to create a new community provider and also guidelines for updating +the existing ones. You should be aware that providers may have distinctions that may not be covered in +this guide. The sequence described was designed to meet the most linear flow possible in order to develop a +new provider.

+

Another recommendation that will help you is to look for a provider that works similar to yours. That way it will +help you to set up tests and other dependencies.

+

First, you need to set up your local development environment. See Contribution Quick Start +if you did not set up your local environment yet. We recommend using breeze to develop locally. This way you +easily be able to have an environment more similar to the one executed by GitHub CI workflow.

+
+
./breeze
+
+
+
+

Using the code above you will set up Docker containers. These containers your local code to internal volumes. +In this way, the changes made in your IDE are already applied to the code inside the container and tests can +be carried out quickly.

+

In this how-to guide our example provider name will be <NEW_PROVIDER>. +When you see this placeholder you must change for your provider name.

+
+

Initial Code and Unit Tests

+

Most likely you have developed a version of the provider using some local customization and now you need to +transfer this code to the Airflow project. Below is described all the initial code structure that +the provider may need. Understand that not all providers will need all the components described in this structure. +If you still have doubts about building your provider, we recommend that you read the initial provider guide and +open a issue on GitHub so the community can help you.

+
+
airflow/
+├── providers/<NEW_PROVIDER>/
+│   ├── __init__.py
+│   ├── example_dags/
+│   │   ├── __init__.py
+│   │   └── example_<NEW_PROVIDER>.py
+│   ├── hooks/
+│   │   ├── __init__.py
+│   │   └── <NEW_PROVIDER>.py
+│   ├── operators/
+│   │   ├── __init__.py
+│   │   └── <NEW_PROVIDER>.py
+│   ├── sensors/
+│   │   ├── __init__.py
+│   │   └── <NEW_PROVIDER>.py
+│   └── transfers/
+│       ├── __init__.py
+│       └── <NEW_PROVIDER>.py
+└── tests/providers/<NEW_PROVIDER>/
+    ├── __init__.py
+    ├── hooks/
+    │   ├── __init__.py
+    │   └── test_<NEW_PROVIDER>.py
+    ├── operators/
+    │   ├── __init__.py
+    │   ├── test_<NEW_PROVIDER>.py
+    │   └── test_<NEW_PROVIDER>_system.py
+    ├── sensors/
+    │   ├── __init__.py
+    │   └── test_<NEW_PROVIDER>.py
+    └── transfers/
+        ├── __init__.py
+        └── test_<NEW_PROVIDER>.py
+
+
+
+

Considering that you have already transferred your provider’s code to the above structure, it will now be necessary +to create unit tests for each component you created. The example below I have already set up an environment using +breeze and I’ll run unit tests for my Hook.

+
+
root@fafd8d630e46:/opt/airflow# python -m pytest tests/providers/<NEW_PROVIDER>/hook/<NEW_PROVIDER>.py
+
+
+
+
+
+

Integration tests

+

See Airflow Integration Tests

+
+
+

Documentation

+

An important part of building a new provider is the documentation. +Some steps for documentation occurs automatically by pre-commit see Installing pre-commit guide

+
+
airflow/
+├── INSTALL
+├── CONTRIBUTING.rst
+├── setup.py
+├── docs/
+│   ├── spelling_wordlist.txt
+│   ├── apache-airflow/
+│   │   └── extra-packages-ref.rst
+│   ├── integration-logos/<NEW_PROVIDER>/
+│   │   └── <NEW_PROVIDER>.png
+│   └── apache-airflow-providers-<NEW_PROVIDER>/
+│       ├── index.rst
+│       ├── commits.rst
+│       ├── connections.rst
+│       └── operators/
+│           └── <NEW_PROVIDER>.rst
+└── providers/
+    └── <NEW_PROVIDER>/
+        ├── provider.yaml
+        └── CHANGELOG.rst
+
+
+
+

Files automatically updated by pre-commit:

+
    +
  • INSTALL in provider

  • +
+

Files automatically created when the provider is released:

+
    +
  • docs/apache-airflow-providers-<NEW_PROVIDER>/commits.rst

  • +
  • /airflow/providers/<NEW_PROVIDER>/CHANGELOG

  • +
+

There is a chance that your provider’s name is not a common English word. +In this case is necessary to add it to the file docs/spelling_wordlist.txt. This file begin with capitalized words and +lowercase in the second block.

+
+
Namespace
+Neo4j
+Nextdoor
+<NEW_PROVIDER> (new line)
+Nones
+NotFound
+Nullable
+...
+neo4j
+neq
+networkUri
+<NEW_PROVIDER> (new line)
+nginx
+nobr
+nodash
+
+
+
+

Add your provider dependencies into provider.yaml under dependencies key.. +If your provider doesn’t have any dependency add a empty list.

+

In the docs/apache-airflow-providers-<NEW_PROVIDER>/connections.rst:

+
    +
  • add information how to configure connection for your provider.

  • +
+

In the docs/apache-airflow-providers-<NEW_PROVIDER>/operators/<NEW_PROVIDER>.rst:

+
    +
  • add information how to use the Operator. It’s important to add examples and additional information if your Operator has extra-parameters.

    +
    .. _howto/operator:NewProviderOperator:
    +
    +NewProviderOperator
    +===================
    +
    +Use the :class:`~airflow.providers.<NEW_PROVIDER>.operators.NewProviderOperator` to do something
    +amazing with Airflow!
    +
    +Using the Operator
    +^^^^^^^^^^^^^^^^^^
    +
    +The NewProviderOperator requires a ``connection_id`` and this other awesome parameter.
    +You can see an example below:
    +
    +.. exampleinclude:: /../../airflow/providers/<NEW_PROVIDER>/example_dags/example_<NEW_PROVIDER>.py
    +    :language: python
    +    :start-after: [START howto_operator_<NEW_PROVIDER>]
    +    :end-before: [END howto_operator_<NEW_PROVIDER>]
    +
    +
    +
  • +
+

In the docs/apache-airflow-providers-new_provider/index.rst:

+
    +
  • add all information of the purpose of your provider. It is recommended to check with another provider to help you complete this document as best as possible.

  • +
+

In the airflow/providers/<NEW_PROVIDER>/provider.yaml add information of your provider:

+
+
package-name: apache-airflow-providers-<NEW_PROVIDER>
+name: <NEW_PROVIDER>
+description: |
+  `<NEW_PROVIDER> <https://example.io/>`__
+versions:
+  - 1.0.0
+
+integrations:
+  - integration-name: <NEW_PROVIDER>
+    external-doc-url: https://www.example.io/
+    logo: /integration-logos/<NEW_PROVIDER>/<NEW_PROVIDER>.png
+    how-to-guide:
+      - /docs/apache-airflow-providers-<NEW_PROVIDER>/operators/<NEW_PROVIDER>.rst
+    tags: [service]
+
+operators:
+  - integration-name: <NEW_PROVIDER>
+    python-modules:
+      - airflow.providers.<NEW_PROVIDER>.operators.<NEW_PROVIDER>
+
+hooks:
+  - integration-name: <NEW_PROVIDER>
+    python-modules:
+      - airflow.providers.<NEW_PROVIDER>.hooks.<NEW_PROVIDER>
+
+sensors:
+  - integration-name: <NEW_PROVIDER>
+    python-modules:
+      - airflow.providers.<NEW_PROVIDER>.sensors.<NEW_PROVIDER>
+
+connection-types:
+  - hook-class-name: airflow.providers.<NEW_PROVIDER>.hooks.<NEW_PROVIDER>.NewProviderHook
+  - connection-type: provider-connection-type
+
+hook-class-names:  # deprecated in Airflow 2.2.0
+  - airflow.providers.<NEW_PROVIDER>.hooks.<NEW_PROVIDER>.NewProviderHook
+
+
+
+
+

Note

+

Defining your own connection types

+

You only need to add connection-types in case you have some hooks that have customized UI behavior. However +it is only supported for Airflow 2.2.0. If your providers are also targeting Airflow below 2.2.0 you should +provide the deprecated hook-class-names array. The connection-types array allows for optimization +of importing of individual connections and while Airflow 2.2.0 is able to handle both definition, the +connection-types is recommended.

+

For more information see Custom connection types

+
+

After changing and creating these files you can build the documentation locally. The two commands below will +serve to accomplish this. The first will build your provider’s documentation. The second will ensure that the +main Airflow documentation that involves some steps with the providers is also working.

+
+
breeze build-docs --package-filter apache-airflow-providers-<NEW_PROVIDER>
+breeze build-docs --package-filter apache-airflow
+
+
+
+
+
+
+

Optional provider features

+
+
+

Note

+

This feature is available in Airflow 2.3+.

+
+
+

Some providers might provide optional features, which are only available when some packages or libraries +are installed. Such features will typically result in ImportErrors however those import errors +should be silently ignored rather than pollute the logs of Airflow with false warnings. False warnings +are a very bad pattern, as they tend to turn into blind spots, so avoiding false warnings is encouraged. +However until Airflow 2.3, Airflow had no mechanism to selectively ignore “known” ImportErrors. So +Airflow 2.1 and 2.2 silently ignored all ImportErrors coming from providers with actually lead to +ignoring even important import errors - without giving the clue to Airflow users that there is something +missing in provider dependencies.

+

In Airflow 2.3, new exception OptionalProviderFeatureException has been +introduced and Providers can use the exception to signal that the ImportError (or any other error) should +be ignored by Airflow ProvidersManager. However this Exception is only available in Airflow 2.3 so if +providers would like to remain compatible with 2.2, they should continue throwing +the ImportError exception.

+

Example code (from Plyvel Hook, part of the Google Provider) explains how such conditional error handling +should be implemented to keep compatibility with 2.2

+
+
try:
+    import plyvel
+    from plyvel import DB
+
+    from airflow.exceptions import AirflowException
+    from airflow.hooks.base import BaseHook
+
+except ImportError as e:
+    # Plyvel is an optional feature and if imports are missing, it should be silently ignored
+    # As of Airflow 2.3  and above the operator can throw OptionalProviderFeatureException
+    try:
+        from airflow.exceptions import AirflowOptionalProviderFeatureException
+    except ImportError:
+        # However, in order to keep backwards-compatibility with Airflow 2.1 and 2.2, if the
+        # 2.3 exception cannot be imported, the original ImportError should be raised.
+        # This try/except can be removed when the provider depends on Airflow >= 2.3.0
+        raise e
+    raise AirflowOptionalProviderFeatureException(e)
+
+
+
+
+
+

Using Providers with dynamic task mapping

+

Airflow 2.3 added Dynamic Task Mapping +and it added the possibility of assigning a unique key to each task. Which means that when such dynamically +mapped task wants to retrieve a value from XCom (for example in case an extra link should calculated) +it should always check if the ti_key value passed is not None an only then retrieve the XCom value using +XCom.get_value. This allows to keep backwards compatibility with earlier versions of Airflow.

+

Typical code to access XCom Value in providers that want to keep backwards compatibility should look similar to +this (note the if ti_key is not None: condition).

+
+
def get_link(
+    self,
+    operator: BaseOperator,
+    dttm: datetime | None = None,
+    ti_key: "TaskInstanceKey" | None = None,
+):
+    if ti_key is not None:
+        job_ids = XCom.get_value(key="job_id", ti_key=ti_key)
+    else:
+        assert dttm is not None
+        job_ids = XCom.get_one(
+            key="job_id",
+            dag_id=operator.dag.dag_id,
+            task_id=operator.task_id,
+            execution_date=dttm,
+        )
+    if not job_ids:
+        return None
+    if len(job_ids) < self.index:
+        return None
+    job_id = job_ids[self.index]
+    return BIGQUERY_JOB_DETAILS_LINK_FMT.format(job_id=job_id)
+
+
+
+
+
+

Having sensors return XCOM values

+

In Airflow 2.3, sensor operators will be able to return XCOM values. This is achieved by returning an instance of the PokeReturnValue object at the end of the poke() method:

+
+
from airflow.sensors.base import PokeReturnValue
+
+
+class SensorWithXcomValue(BaseSensorOperator):
+    def poke(self, context: Context) -> Union[bool, PokeReturnValue]:
+        # ...
+        is_done = ...  # set to true if the sensor should stop poking.
+        xcom_value = ...  # return value of the sensor operator to be pushed to XCOM.
+        return PokeReturnValue(is_done, xcom_value)
+
+
+
+

To implement a sensor operator that pushes a XCOM value and supports both version 2.3 and pre-2.3, you need to explicitly push the XCOM value if the version is pre-2.3.

+
+
try:
+    from airflow.sensors.base import PokeReturnValue
+except ImportError:
+    PokeReturnValue = None
+
+
+class SensorWithXcomValue(BaseSensorOperator):
+    def poke(self, context: Context) -> bool:
+        # ...
+        is_done = ...  # set to true if the sensor should stop poking.
+        xcom_value = ...  # return value of the sensor operator to be pushed to XCOM.
+        if PokeReturnValue is not None:
+            return PokeReturnValue(is_done, xcom_value)
+        else:
+            if is_done:
+                context["ti"].xcom_push(key="xcom_key", value=xcom_value)
+            return is_done
+
+
+
+
+
+

How-to Update a community provider

+

See Provider packages versioning

+
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/index.html b/docs-archive/apache-airflow-providers/index.html new file mode 100644 index 00000000000..cd479281e93 --- /dev/null +++ b/docs-archive/apache-airflow-providers/index.html @@ -0,0 +1,1224 @@ + + + + + + + + + + + + Provider packages — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Provider packages

+

Apache Airflow 2 is built in modular way. The “Core” of Apache Airflow provides core scheduler +functionality which allow you to write some basic tasks, but the capabilities of Apache Airflow can +be extended by installing additional packages, called providers.

+

Providers can contain operators, hooks, sensor, and transfer operators to communicate with a +multitude of external systems, but they can also extend Airflow core with new capabilities.

+

You can install those provider packages separately in order to interface with a given service. The providers +for Apache Airflow are designed in the way that you can write your own providers easily. The +Apache Airflow Community develops and maintain more than 60 provider packages, but you are free to +develop your own providers - the providers you build have exactly the same capability as the providers +written by the community, so you can release and share those providers with others.

+

The full list of community managed providers is available at +Providers Index.

+

You can also see index of all community provider’s operators and hooks in +Operators and Hooks Reference

+
+
+

Extending Airflow core functionality

+

Providers give you the capability of extending core Airflow with extra capabilities. The Core airflow +provides basic and solid functionality of scheduling, the providers extend its capabilities. Here we +describe all the custom capabilities.

+

Airflow automatically discovers which providers add those additional capabilities and, once you install +provider package and re-start Airflow, those become automatically available to Airflow Users.

+

The summary of the core functionalities that can be extended are available in +Core Extensions.

+
+

Auth backends

+

The providers can add custom authentication backends, that allow you to configure the way how your +web server authenticates your users, integrating it with public or private authentication services.

+

You can see all the authentication backends available via community-managed providers in +Auth backends

+
+
+

Custom connections

+

The providers can add custom connection types, extending connection form and handling custom form field +behaviour for the connections defined by the provider.

+

You can see all custom connections available via community-managed providers in +Connections.

+
+ +
+

Logging

+

The providers can add additional task logging capabilities. By default Apache Airflow saves logs for +tasks locally and make them available to Airflow UI via internal http server, however via providers +you can add extra logging capabilities, where Airflow Logs can be written to a remote service and +retrieved from those services.

+

You can see all task loggers available via community-managed providers in +Writing logs.

+
+
+

Secret backends

+

Airflow has the capability of reading connections, variables and configuration from Secret Backends rather +than from its own Database.

+

You can see all secret backends available via community-managed providers in +Secret backends.

+
+
+
+

Installing and upgrading providers

+

Separate provider packages give the possibilities that were not available in 1.10:

+
    +
  1. You can upgrade to latest version of particular providers without the need of Apache Airflow core upgrade.

  2. +
  3. You can downgrade to previous version of particular provider in case the new version introduces +some problems, without impacting the main Apache Airflow core package.

  4. +
  5. You can release and upgrade/downgrade provider packages incrementally, independent from each other. This +means that you can incrementally validate each of the provider package update in your environment, +following the usual tests you have in your environment.

  6. +
+
+
+

Types of providers

+

Providers have the same capacity - no matter if they are provided by the community or if they are +third-party providers. This chapter explains how community managed providers are versioned and released +and how you can create your own providers.

+
+

Community maintained providers

+

From the point of view of the community, Airflow is delivered in multiple, separate packages. +The core of Airflow scheduling system is delivered as apache-airflow package and there are more than +60 provider packages which can be installed separately as so called Airflow Provider packages. +Those packages are available as apache-airflow-providers packages - for example there is an +apache-airflow-providers-amazon or apache-airflow-providers-google package).

+

Community maintained providers are released and versioned separately from the Airflow releases. We are +following the Semver versioning scheme for the packages. Some versions of the +provider packages might depend on particular versions of Airflow, but the general approach we have is that +unless there is a good reason, new version of providers should work with recent versions of Airflow 2.x. +Details will vary per-provider and if there is a limitation for particular version of particular provider, +constraining the Airflow version used, it will be included as limitation of dependencies in the provider +package.

+

Each community provider has corresponding extra which can be used when installing airflow to install the +provider together with Apache Airflow - for example you can install airflow with those extras: +apache-airflow[google,amazon] (with correct constraints -see Installation) and you +will install the appropriate versions of the apache-airflow-providers-amazon and +apache-airflow-providers-google packages together with Apache Airflow.

+

Some of the community providers have cross-provider dependencies as well. Those are not required +dependencies, they might simply enable certain features (for example transfer operators often create +dependency between different providers. Again, the general approach here is that the providers are backwards +compatible, including cross-dependencies. Any kind of breaking changes and requirements on particular versions of other +provider packages are automatically documented in the release notes of every provider.

+
+

Note

+

For Airflow 1.10 We also provided apache-airflow-backport-providers packages that could be installed +with those versions Those were the same providers as for 2.0 but automatically back-ported to work for +Airflow 1.10. The last release of backport providers was done on March 17, 2021 and the backport +providers will no longer be released, since Airflow 1.10 has reached End-Of-Life as of June 17, 2021.

+
+

If you want to contribute to Apache Airflow, you can see how to build and extend community +managed providers in Community Providers.

+
+
+

Custom provider packages

+

You can develop and release your own providers. Your custom operators, hooks, sensors, transfer operators +can be packaged together in a standard airflow package and installed using the same mechanisms. +Moreover they can also use the same mechanisms to extend the Airflow Core with auth backends, +custom connections, logging, secret backends and extra operator links as described in the previous chapter.

+
+
+
+

How to create your own provider

+

As mentioned in the Providers +documentation, custom providers can extend Airflow core - they can add extra links to operators as well +as custom connections. You can use build your own providers and install them as packages if you would like +to use the mechanism for your own, custom providers.

+

Adding a provider to Airflow is just a matter of building a Python package and adding the right meta-data to +the package. We are using standard mechanism of python to define +entry points . Your package +needs to define appropriate entry-point apache_airflow_provider which has to point to a callable +implemented by your package and return a dictionary containing the list of discoverable capabilities +of your package. The dictionary has to follow the +json-schema specification.

+

Most of the schema provides extension point for the documentation (which you might want to also use for +your own purpose) but the important fields from the extensibility point of view are those:

+

Displaying package information in CLI/API:

+
    +
  • package-name - Name of the package for the provider.

  • +
  • name - Human-friendly name of the provider.

  • +
  • description - Additional description of the provider.

  • +
  • version - List of versions of the package (in reverse-chronological order). The first version in the +list is the current package version. It is taken from the version of package installed, not from the +provider_info information.

  • +
+

Exposing customized functionality to the Airflow’s core:

+
    +
  • extra-links - this field should contain the list of all operator class names that are adding extra links +capability. See Define an operator extra link for description of how to add extra link +capability to the operators of yours.

  • +
  • connection-types - this field should contain the list of all connection types together with hook +class names implementing those custom connection types (providing custom extra fields and +custom field behaviour). This field is available as of Airflow 2.2.0 and it replaces deprecated +hook-class-names. See Managing Connections for more details

  • +
  • hook-class-names (deprecated) - this field should contain the list of all hook class names that provide +custom connection types with custom extra fields and field behaviour. The hook-class-names array +is deprecated as of Airflow 2.2.0 (for optimization reasons) and will be removed in Airflow 3. If your +providers are targeting Airflow 2.2.0+ you do not have to include the hook-class-names array, if +you want to also target earlier versions of Airflow 2, you should include both hook-class-names and +connection-types arrays. See Managing Connections for more details.

  • +
+

When your providers are installed you can query the installed providers and their capabilities with the +airflow providers command. This way you can verify if your providers are properly recognized and whether +they define the extensions properly. See Command Line Interface and Environment Variables Reference for details of available CLI +sub-commands.

+

When you write your own provider, consider following the +Naming conventions for provider packages

+
+
+

FAQ for Airflow and Providers

+
+

Upgrading Airflow 2.0 and Providers

+

When upgrading to a new Airflow version such as 2.0, but possibly 2.0.1 and beyond, is the best practice +to also upgrade provider packages at the same time?

+

It depends on your use case. If you have automated or semi-automated verification of your installation, +that you can run a new version of Airflow including all provider packages, then definitely go for it. +If you rely more on manual testing, it is advised that you upgrade in stages. Depending on your choice +you can either upgrade all used provider packages first, and then upgrade Airflow Core or the other way +round. The first approach - when you first upgrade all providers is probably safer, as you can do it +incrementally, step-by-step replacing provider by provider in your environment.

+
+
+

Customizing Provider Packages

+

I have an older version of my provider package which we have lightly customized and is working +fine with my MSSQL installation. I am upgrading my Airflow version. Do I need to upgrade my provider, +or can I keep it as it is?

+

It depends on the scope of customization. There is no need to upgrade the provider packages to later +versions unless you want to upgrade to Airflow version that introduces backwards-incompatible changes. +Generally speaking, with Airflow 2 we are following the Semver approach where +we will introduce backwards-incompatible changes in Major releases, so all your modifications (as long +as you have not used internal Airflow classes) should work for All Airflow 2.* versions.

+
+
+

Creating your own providers

+

When I write my own provider, do I need to do anything special to make it available to others?

+

You do not need to do anything special besides creating the apache_airflow_provider entry point +returning properly formatted meta-data - dictionary with extra-links and connection-types fields +(and deprecated hook-class-names field if you are also targeting versions of Airflow before 2.2.0).

+

Anyone who runs airflow in an environment that has your Python package installed will be able to use the +package as a provider package.

+

What do I need to do to turn a package into a provider?

+

You need to do the following to turn an existing Python package into a provider (see below for examples):

+
    +
  • Add the apache_airflow_provider entry point in the setup.cfg - this tells airflow where to get +the required provider metadata

  • +
  • Create the function that you refer to in the first step as part of your package: this functions returns a +dictionary that contains all meta-data about your provider package

  • +
  • If you want Airflow to link to documentation of your Provider in the providers page, make sure +to add “project-url/documentation” metadata to your package. +This will also add link to your documentation in PyPI.

  • +
  • note that the dictionary should be compliant with airflow/provider_info.schema.json JSON-schema +specification. The community-managed providers have more fields there that are used to build +documentation, but the requirement for runtime information only contains several fields which are defined +in the schema:

  • +
+
+

airflow/provider_info.schema.json

+
{
+  "$schema": "http://json-schema.org/draft-07/schema#",
+  "type": "object",
+  "properties": {
+    "package-name": {
+      "description": "Package name available under which the package is available in the PyPI repository.",
+      "type": "string"
+    },
+    "name": {
+      "description": "Provider name",
+      "type": "string"
+    },
+    "description": {
+      "description": "Information about the package in RST format",
+      "type": "string"
+    },
+    "hook-class-names": {
+      "type": "array",
+      "description": "Hook class names that provide connection types to core (deprecated by connection-types)",
+      "items": {
+        "type": "string"
+      },
+      "deprecated": {
+        "description": "The hook-class-names property has been deprecated in favour of connection-types which is more performant version allowing to only import individual Hooks rather than all hooks at once",
+        "deprecatedVersion": "2.2.0"
+      }
+    },
+    "connection-types": {
+      "type": "array",
+      "description": "Map of connection types mapped to hook class names.",
+      "items": {
+        "type": "object",
+        "properties": {
+          "connection-type": {
+            "description": "Type of connection defined by the provider",
+            "type": "string"
+          },
+          "hook-class-name": {
+            "description": "Hook class name that implements the connection type",
+            "type": "string"
+          }
+        }
+      },
+      "required": ["connection-type", "hook-class-name"]
+    },
+    "extra-links": {
+      "type": "array",
+      "description": "Operator class names that provide extra link functionality",
+      "items": {
+        "type": "string"
+      }
+    },
+    "secrets-backends": {
+      "type": "array",
+      "description": "Secrets Backend class names",
+      "items": {
+        "type": "string"
+      }
+    },
+    "logging": {
+      "type": "array",
+      "description": "Logging Task Handlers class names",
+      "items": {
+          "type": "string"
+      }
+    },
+    "auth-backends": {
+      "type": "array",
+      "description": "API Auth Backend module names",
+      "items": {
+          "type": "string"
+      }
+    },
+    "task-decorators": {
+        "type": "array",
+        "description": "Apply custom decorators to the TaskFlow API. Can be accessed by users via '@task.<name>'",
+        "items": {
+            "name": {
+                "type": "string"
+            },
+            "path": {
+                "type": "string"
+            }
+        }
+    }
+  },
+  "required": [
+    "name",
+    "description"
+  ]
+}
+
+
+
+

Example setup.cfg:

+
[options.entry_points]
+# the function get_provider_info is defined in myproviderpackage.somemodule
+apache_airflow_provider=
+  provider_info=myproviderpackage.somemodule:get_provider_info
+
+
+

Example myproviderpackage/somemodule.py:

+
def get_provider_info():
+    return {
+        "package-name": "my-package-name",
+        "name": "name",
+        "description": "a description",
+        "hook-class-names": [
+            "myproviderpackage.hooks.source.SourceHook",
+        ],
+    }
+
+
+

How do provider packages work under the hood?

+

When running Airflow with your provider package, there will be (at least) three components to your airflow installation:

+
    +
  • The installation itself (for example, a venv where you installed airflow with pip install apache-airflow) +together with the related files (e.g. dags folder)

  • +
  • The apache-airflow package

  • +
  • Your own myproviderpackage package that is independent of apache-airflow or your airflow installation, which +can be a local Python package (that you install via pip install -e /path/to/my-package), a normal pip package +(pip install myproviderpackage), or any other type of Python package

  • +
+

In the myproviderpackage package you need to add the entry point and provide the appropriate metadata as described above. +If you have done that, airflow does the following at runtime:

+
    +
  • Loop through ALL packages installed in your environment / venv

  • +
  • For each package, if the package’s setup.cfg has a section [options.entry_points], and if that section has a value +for apache_airflow_provider, then get the value for provider_info, e.g. myproviderpackage.somemodule:get_provider_info

  • +
  • That value works like an import statement: myproviderpackage.somemodule:get_provider_info translates to something like +from myproviderpackage.somemodule import get_provider_info, and the get_provider_info that is being imported should be a +callable, i.e. a function

  • +
  • This function should return a dictionary with metadata

  • +
  • If you have custom connection types as part of your package, that metadata will including a field called hook-class-names +which should be a list of strings of your custom hooks - those strings should also be in an import-like format, e.g. +myproviderpackage.hooks.source.SourceHook means that there is a class SourceHook in myproviderpackage/hooks/source.py +- airflow then imports these hooks and looks for the functions get_ui_field_behaviour and get_connection_form_widgets +(both optional) as well as the attributes conn_type and hook_name to create the custom connection type in the airflow UI

  • +
+

Should I name my provider specifically or should it be created in ``airflow.providers`` package?

+

We have quite a number (>60) of providers managed by the community and we are going to maintain them +together with Apache Airflow. All those providers have well-defined structured and follow the +naming conventions we defined and they are all in airflow.providers package. If your intention is +to contribute your provider, then you should follow those conventions and make a PR to Apache Airflow +to contribute to it. But you are free to use any package name as long as there are no conflicts with other +names, so preferably choose package that is in your “domain”.

+

Is there a convention for a connection id and type?

+

Very good question. Glad that you asked. We usually follow the convention <NAME>_default for connection +id and just <NAME> for connection type. Few examples:

+
    +
  • google_cloud_default id and google_cloud_platform type

  • +
  • aws_default id and aws type

  • +
+

You should follow this convention. It is important, to use unique names for connection type, +so it should be unique for your provider. If two providers try to add connection with the same type +only one of them will succeed.

+

Can I contribute my own provider to Apache Airflow?

+

Of course, but it’s better to check at developer’s mailing list whether such contribution will be accepted by +the Community, before investing time to make the provider compliant with community requirements. +The Community only accepts providers that are generic enough, are well documented, fully covered by tests +and with capabilities of being tested by people in the community. So we might not always be in the +position to accept such contributions.

+

After you think that your provider matches the expected values above, you can read +Community Providers to check all prerequisites for a new +community Provider and discuss it at the Devlist.

+

However, in case you have your own, specific provider, which you can maintain on your own or by your +team, you are free to publish the providers in whatever form you find appropriate. The custom and +community-managed providers have exactly the same capabilities.

+

Can I advertise my own provider to Apache Airflow users and share it with others as package in PyPI?

+

Absolutely! We have an Ecosystem area on our website where +we share non-community managed extensions and work for Airflow. Feel free to make a PR to the page and +add we will evaluate and merge it when we see that such provider can be useful for the community of +Airflow users.

+

Can I charge for the use of my provider?

+

This is something that is outside of our control and domain. As an Apache project, we are +commercial-friendly and there are many businesses built around Apache Airflow and many other +Apache projects. As a community, we provide all the software for free and this will never +change. What 3rd-party developers are doing is not under control of Apache Airflow community.

+
+
+

Using Backport Providers in Airflow 1.10

+

I have an Airflow version (1.10.12) running and it is stable. However, because of a Cloud provider change, +I would like to upgrade the provider package. If I don’t need to upgrade the Airflow version anymore, +how do I know that this provider version is compatible with my Airflow version?

+

We have Backport Providers are compatible with 1.10 but they stopped being released on +March 17, 2021. Since then, no new changes to providers for Airflow 2.0 are going to be +released as backport packages. It’s the highest time to upgrade to Airflow 2.0.

+

When it comes to compatibility of providers with different Airflow 2 versions, each +provider package will keep its own dependencies, and while we expect those providers to be generally +backwards-compatible, particular versions of particular providers might introduce dependencies on +specific Airflow versions.

+
+
+
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/installing-from-pypi.html b/docs-archive/apache-airflow-providers/installing-from-pypi.html new file mode 100644 index 00000000000..f8b9cf12954 --- /dev/null +++ b/docs-archive/apache-airflow-providers/installing-from-pypi.html @@ -0,0 +1,817 @@ + + + + + + + + + + + + Installation from PyPI — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Installation from PyPI

+

This page describes installations using the apache-airflow-providers package published in +PyPI.

+
+

Installation tools

+

Only pip installation is currently officially supported.

+

While there are some successes with using other tools like poetry or +pip-tools, they do not share the same workflow as +pip - especially when it comes to constraint vs. requirements management. +Installing via Poetry or pip-tools is not currently supported. If you wish to install airflow +using those tools you should use the constraints and convert them to appropriate +format and workflow that your tool requires.

+

Typical command to install airflow from PyPI looks like below (you need to use the right Airflow version and Python version):

+
pip install "apache-airflow-providers-celery" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.3.0/constraints-3.7.txt"
+
+
+

This is an example, see Installation from PyPI for more examples, including how to upgrade the providers.

+
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/installing-from-sources.html b/docs-archive/apache-airflow-providers/installing-from-sources.html new file mode 100644 index 00000000000..194e5950354 --- /dev/null +++ b/docs-archive/apache-airflow-providers/installing-from-sources.html @@ -0,0 +1,1024 @@ + + + + + + + + + + + + Installing Providers from Sources — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Installing Providers from Sources

+
+

Released packages

+

You can also install Apache Airflow Providers - as most Python packages - via PyPI. +You can choose different version of Airflow by selecting different version from the drop-down at +the top-left of the page.

+
+
+

Release integrity

+

PGP signatures KEYS

+

It is essential that you verify the integrity of the downloaded files using the PGP or SHA signatures. +The PGP signatures can be verified using GPG or PGP. Please download the KEYS as well as the asc +signature files for relevant distribution. It is recommended to get these files from the +main distribution directory and not from the mirrors.

+
gpg -i KEYS
+
+
+

or

+
pgpk -a KEYS
+
+
+

or

+
pgp -ka KEYS
+
+
+

To verify the binaries/sources you can download the relevant asc files for it from main +distribution directory and follow the below guide.

+
gpg --verify apache-airflow-providers-********.asc apache-airflow-providers-*********
+
+
+

or

+
pgpv apache-airflow-providers-********.asc
+
+
+

or

+
pgp apache-airflow-providers-********.asc
+
+
+

Example:

+
$ gpg --verify apache-airflow-providers-airbyte-1.0.0-source.tar.gz.asc apache-airflow-providers-airbyte-1.0.0-source.tar.gz
+  gpg: Signature made Sat 11 Sep 12:49:54 2021 BST
+  gpg:                using RSA key CDE15C6E4D3A8EC4ECF4BA4B6674E08AD7DE406F
+  gpg:                issuer "kaxilnaik@apache.org"
+  gpg: Good signature from "Kaxil Naik <kaxilnaik@apache.org>" [unknown]
+  gpg:                 aka "Kaxil Naik <kaxilnaik@gmail.com>" [unknown]
+  gpg: WARNING: The key's User ID is not certified with a trusted signature!
+  gpg:          There is no indication that the signature belongs to the owner.
+  Primary key fingerprint: CDE1 5C6E 4D3A 8EC4 ECF4  BA4B 6674 E08A D7DE 406F
+
+
+

The “Good signature from …” is indication that the signatures are correct. +Do not worry about the “not certified with a trusted signature” warning. Most of the certificates used +by release managers are self signed, that’s why you get this warning. By importing the server in the +previous step and importing it via ID from KEYS page, you know that this is a valid Key already.

+

For SHA512 sum check, download the relevant sha512 and run the following:

+
shasum -a 512 apache-airflow-providers-********  | diff - apache-airflow-providers-********.sha512
+
+
+

The SHASUM of the file should match the one provided in .sha512 file.

+

Example:

+
shasum -a 512 apache-airflow-providers-airbyte-1.0.0-source.tar.gz  | diff - apache-airflow-providers-airbyte-1.0.0-source.tar.gz.sha512
+
+
+
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/objects.inv b/docs-archive/apache-airflow-providers/objects.inv new file mode 100644 index 0000000000000000000000000000000000000000..c14e913af0e5225e7d2b3c3d74a492486b935c67 GIT binary patch literal 1234 zcmV;@1TFg`AX9K?X>NERX>N99Zgg*Qc_4OWa&u{KZXhxWBOp+6Z)#;@bUGkmaA9L; zWi4T8a%OCAcP(&oZ+2;9WpZ;0BOq2~a&u{KZaN@jWp-t33L_v?Xk{RBWo=<;Ze(S0 zAa78b#rNMXCQiPX<{x4c-pm@!EW0)5Qgu5 z3IXj^8x+`6Zb8uQ7T98q^&w}997&8RjzUs)oTuNRY064fJ4P`&7#7IkHxg&~i$jTC z$QDYWU2Sk*_6~Pif%CDYIs_AXgi*h9{B8{#@ zC0LQ2ctgudOdS=7ZUL+m-V3XoSb(jZHf9m-pw$B0R@Ht9tlq%_*zLjSB@)f(-C+T2 zubV}v7Q+Hu-wU^0g8PElvvQrV4XTQjNs7R$2f>icXkp7|&8svL3^>+wl?DeTENfCp zE9-JQRNyQGVAU9jU5A$PidATp2%>UYZap_uA*&3iDx`?9LbYw;kC*8sI^Nqvxg`iA z5onnPEjwUAIDvTAf4Sf#nqp&eL-xj}3U>t3R9z2xMz!nc|dopmDH zz#ACd30|J9&G5?m4t`b@Yha$iZnb5V^G-{L9_vtwx52?O=*~00+Ro_S^QP&Uyw}#T z7Hjm1Z;%yuV4hYB_~$bx5SbSM_F!uvJTKEXU^Q#%qZ5)><9izD)DRB5&>mdJT;KNw zUI*3)_2@(6c(>d=@dE2=d>Ja_jkyEbaB>2@FyL!+5_qW{@9~?5rUTyM&4X2q<2`Wl z%v()Q)yiOm)4Yq^8yd_Cw79R0*zzXPi_yI2!rrr1KU7N_5CbzZ#+wxh1{%kE$Q+!u ztV+29M+GXYWE_N5@XASiBgFv!TMK8OMB9i8Oi_L*XxHLIz<7pcRoPO(dmMg8h6(Yx zczD{}7Z2&P!xL1+2HZ|d@GC0AfGY0*)@!u>P7I+fE4m4~z2rurj83i^9^DiV)KuiA z8CjyWAVa*q#+{fY>f^a##-vLpN~7)eDsy6%m|tT<@lR}+G4&Yf3$&v_zBejqzK&fp zmcgdUXG9lhCzHf`B5{uP)HsKEkPd>sDLOyfCj92udJa(|``a=pohjsG`YW949J#I=Yt8synwGYBjQZ;4muq*pRuip=z_vh(2_K29%MeHlqhxPXv(BnWmDSwT5GI@uM z`7=IK!f%qp6Xkk4g6D+`nWx%h{`j z3Hfg}DafSwJDL>#K@AS9yzGe2sBZC-ZL_?6 z5M-Y-?iTdP_JqzO-#x + + + + + + + ASF: Apache Software Foundation — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

ASF: Apache Software Foundation

+

Airflow supports various software created by Apache Software Foundation.

+
+

Software

+

These integrations allow you to perform various operations within software developed by Apache Software +Foundation.

+ +
+

Apache Cassandra

+
+
Hooks
+

airflow.providers.apache.cassandra.hooks.cassandra.

+
+
Provider
+

apache-airflow-providers-apache-cassandra

+
+
Product documentation
+

Apache Cassandra

+
+
+
+ + + + + +
+

Apache Pig

+
+
Operators
+

airflow.providers.apache.pig.operators.pig.

+
+
Hooks
+

airflow.providers.apache.pig.hooks.pig.

+
+
Guides
+

Apache Pig Operators.

+
+
Provider
+

apache-airflow-providers-apache-pig

+
+
Product documentation
+

Apache Pig

+
+
+
+
+

Apache Pinot

+
+
Hooks
+

airflow.providers.apache.pinot.hooks.pinot.

+
+
Provider
+

apache-airflow-providers-apache-pinot

+
+
Product documentation
+

Apache Pinot

+
+
+
+ + +
+

Hadoop Distributed File System (HDFS)

+
+
Hooks
+

airflow.providers.apache.hdfs.hooks.hdfs.

+
+
Provider
+

apache-airflow-providers-apache-hdfs

+
+
Product documentation
+

Hadoop Distributed File System (HDFS)

+
+
+
+
+

WebHDFS

+
+
Hooks
+

airflow.providers.apache.hdfs.hooks.webhdfs.

+
+
Provider
+

apache-airflow-providers-apache-hdfs

+
+
Product documentation
+

WebHDFS

+
+
+
+
+
+

Transfers

+

These integrations allow you to copy data from/to software developed by Apache Software +Foundation.

+
+

Apache Hive to Amazon DynamoDB

+
+
Source product documentation
+

Apache Hive

+
+
Target product documentation
+

Amazon DynamoDB

+
+
Operator guide
+

Apache Hive to Amazon DynamoDB

+
+
Python API
+

airflow.providers.amazon.aws.transfers.hive_to_dynamodb

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Apache Hive to Apache Druid

+
+
Source product documentation
+

Apache Hive

+
+
Target product documentation
+

Apache Druid

+
+
Python API
+

airflow.providers.apache.druid.transfers.hive_to_druid

+
+
Provider
+

apache-airflow-providers-apache-druid

+
+
+
+
+

Vertica to Apache Hive

+
+
Source product documentation
+

Vertica

+
+
Target product documentation
+

Apache Hive

+
+
Python API
+

airflow.providers.apache.hive.transfers.vertica_to_hive

+
+
Provider
+

apache-airflow-providers-apache-hive

+
+
+
+
+

Apache Hive to MySQL

+
+
Source product documentation
+

Apache Hive

+
+
Target product documentation
+

MySQL

+
+
Python API
+

airflow.providers.apache.hive.transfers.hive_to_mysql

+
+
Provider
+

apache-airflow-providers-apache-hive

+
+
+
+
+

Apache Hive to Samba

+
+
Source product documentation
+

Apache Hive

+
+
Target product documentation
+

Samba

+
+
Python API
+

airflow.providers.apache.hive.transfers.hive_to_samba

+
+
Provider
+

apache-airflow-providers-apache-hive

+
+
+
+
+

Amazon Simple Storage Service (S3) to Apache Hive

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

Apache Hive

+
+
Python API
+

airflow.providers.apache.hive.transfers.s3_to_hive

+
+
Provider
+

apache-airflow-providers-apache-hive

+
+
+
+
+

MySQL to Apache Hive

+
+
Source product documentation
+

MySQL

+
+
Target product documentation
+

Apache Hive

+
+
Python API
+

airflow.providers.apache.hive.transfers.mysql_to_hive

+
+
Provider
+

apache-airflow-providers-apache-hive

+
+
+
+
+

Microsoft SQL Server (MSSQL) to Apache Hive

+
+
Source product documentation
+

Microsoft SQL Server (MSSQL)

+
+
Target product documentation
+

Apache Hive

+
+
Python API
+

airflow.providers.apache.hive.transfers.mssql_to_hive

+
+
Provider
+

apache-airflow-providers-apache-hive

+
+
+
+
+

Apache Cassandra to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Apache Cassandra

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Python API
+

airflow.providers.google.cloud.transfers.cassandra_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/operators-and-hooks-ref/aws.html b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/aws.html new file mode 100644 index 00000000000..30ea6142a3c --- /dev/null +++ b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/aws.html @@ -0,0 +1,1859 @@ + + + + + + + + + + + + AWS: Amazon Web Services — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

AWS: Amazon Web Services

+

Airflow has support for Amazon Web Services.

+

All hooks are based on airflow.providers.amazon.aws.hooks.base_aws.

+
+

Services

+

These integrations allow you to perform various operations within the Amazon Web Services.

+
+

Amazon Appflow

+
+
Operators
+

airflow.providers.amazon.aws.operators.appflow.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.appflow.

+
+
Guides
+

Amazon AppFlow.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon Appflow

+
+
+
+
+

Amazon Athena

+
+
Operators
+

airflow.providers.amazon.aws.operators.athena.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.athena.

+
+
Guides
+

Amazon Athena.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon Athena

+
+
+
+ +
+

Amazon CloudWatch Logs

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.logs.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon CloudWatch Logs

+
+
+
+
+

Amazon DataSync

+
+
Operators
+

airflow.providers.amazon.aws.operators.datasync.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.datasync.

+
+
Guides
+

AWS DataSync.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon DataSync

+
+
+
+
+

Amazon DynamoDB

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.dynamodb.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon DynamoDB

+
+
+
+ +
+

Amazon ECS

+
+
Operators
+

airflow.providers.amazon.aws.operators.ecs.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.ecs.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon ECS

+
+
+
+
+

Amazon Elastic Kubernetes Service (EKS)

+
+
Operators
+

airflow.providers.amazon.aws.operators.eks.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.eks.

+
+
Guides
+

Amazon Elastic Kubernetes Service (EKS).

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon Elastic Kubernetes Service (EKS)

+
+
+
+
+

Amazon ElastiCache

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.elasticache_replication_group.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon ElastiCache

+
+
+
+
+

Amazon EMR

+
+
Operators
+

airflow.providers.amazon.aws.operators.emr.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.emr.

+
+
Guides
+

Amazon EMR.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon EMR

+
+
+
+
+

Amazon EMR on EKS

+
+
Operators
+

airflow.providers.amazon.aws.operators.emr.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.emr.

+
+
Guides
+

Amazon EMR on Amazon EKS.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon EMR on EKS

+
+
+
+
+

Amazon Glacier

+
+
Operators
+

airflow.providers.amazon.aws.operators.glacier.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.glacier.

+
+
Guides
+

Amazon S3 Glacier.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon Glacier

+
+
+
+
+

Amazon Kinesis Data Firehose

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.kinesis.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon Kinesis Data Firehose

+
+
+
+ + + +
+

Amazon SageMaker

+
+
Operators
+

airflow.providers.amazon.aws.operators.sagemaker.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.sagemaker.

+
+
Guides
+

Amazon SageMaker.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon SageMaker

+
+
+
+
+

Amazon SecretsManager

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.secrets_manager.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon SecretsManager

+
+
+
+
+

Amazon Simple Email Service (SES)

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.ses.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon Simple Email Service (SES)

+
+
+
+
+

Amazon Simple Notification Service (SNS)

+
+
Operators
+

airflow.providers.amazon.aws.operators.sns.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.sns.

+
+
Guides
+

Amazon Simple Notification Service (SNS).

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon Simple Notification Service (SNS)

+
+
+
+
+

Amazon Simple Queue Service (SQS)

+
+
Operators
+

airflow.providers.amazon.aws.operators.sqs.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.sqs.

+
+
Guides
+

Amazon SQS.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon Simple Queue Service (SQS)

+
+
+
+
+

Amazon Simple Storage Service (S3)

+
+
Operators
+

airflow.providers.amazon.aws.operators.s3.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.s3.

+
+
Guides
+

Amazon S3.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon Simple Storage Service (S3)

+
+
+
+
+

Amazon Web Services

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.base_aws.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

Amazon Web Services

+
+
+
+ +
+

AWS Database Migration Service

+
+
Operators
+

airflow.providers.amazon.aws.operators.dms.

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.dms.

+
+
Guides
+

AWS Database Migration Service (DMS).

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

AWS Database Migration Service

+
+
+
+ + +
+

AWS Security Token Service (STS)

+
+
Hooks
+

airflow.providers.amazon.aws.hooks.sts.

+
+
Provider
+

apache-airflow-providers-amazon

+
+
Product documentation
+

AWS Security Token Service (STS)

+
+
+
+ +
+
+

Transfers

+

These integrations allow you to copy data from/to Amazon Web Services.

+
+

Amazon DynamoDB to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Amazon DynamoDB

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

Amazon DynamoDB to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.dynamodb_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Google Cloud Storage (GCS) to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

Google Cloud Storage to Amazon S3 transfer operator

+
+
Python API
+

airflow.providers.amazon.aws.transfers.gcs_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Amazon Glacier to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Amazon Glacier

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Amazon S3 Glacier to GCS

+
+
Python API
+

airflow.providers.amazon.aws.transfers.glacier_to_gcs

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Google to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Google

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

Google API to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.google_api_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Apache Hive to Amazon DynamoDB

+
+
Source product documentation
+

Apache Hive

+
+
Target product documentation
+

Amazon DynamoDB

+
+
Operator guide
+

Apache Hive to Amazon DynamoDB

+
+
Python API
+

airflow.providers.amazon.aws.transfers.hive_to_dynamodb

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Internet Message Access Protocol (IMAP) to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Internet Message Access Protocol (IMAP)

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

Imap Attachment to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.imap_attachment_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

MongoDB to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

MongoDB

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

MongoDB to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.mongo_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Amazon Redshift to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Amazon Redshift

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

Amazon Redshift to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.redshift_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Amazon Simple Storage Service (S3) to Amazon Redshift

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

Amazon Redshift

+
+
Operator guide
+

Amazon S3 to Amazon Redshift

+
+
Python API
+

airflow.providers.amazon.aws.transfers.s3_to_redshift

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Amazon Simple Storage Service (S3) to SSH File Transfer Protocol (SFTP)

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

SSH File Transfer Protocol (SFTP)

+
+
Operator guide
+

Amazon S3 to SFTP

+
+
Python API
+

airflow.providers.amazon.aws.transfers.s3_to_sftp

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

SSH File Transfer Protocol (SFTP) to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

SSH File Transfer Protocol (SFTP)

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

SFTP to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.sftp_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Amazon Simple Storage Service (S3) to File Transfer Protocol (FTP)

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

File Transfer Protocol (FTP)

+
+
Operator guide
+

Amazon S3 to FTP

+
+
Python API
+

airflow.providers.amazon.aws.transfers.s3_to_ftp

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Exasol to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Exasol

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Python API
+

airflow.providers.amazon.aws.transfers.exasol_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

File Transfer Protocol (FTP) to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

File Transfer Protocol (FTP)

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

FTP to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.ftp_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Salesforce to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Salesforce

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

Salesforce to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.salesforce_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Local to Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

Local Filesystem to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.local_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Common SQL to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Common SQL

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

SQL to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.sql_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Amazon Simple Storage Service (S3) to Apache Hive

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

Apache Hive

+
+
Python API
+

airflow.providers.apache.hive.transfers.s3_to_hive

+
+
Provider
+

apache-airflow-providers-apache-hive

+
+
+
+
+

Amazon Simple Storage Service (S3) to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Transfer Data from Amazon S3 to Google Cloud Storage

+
+
Python API
+

airflow.providers.google.cloud.transfers.s3_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Amazon Simple Storage Service (S3) to MySQL

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

MySQL

+
+
Python API
+

airflow.providers.mysql.transfers.s3_to_mysql

+
+
Provider
+

apache-airflow-providers-mysql

+
+
+
+
+

Amazon Simple Storage Service (S3) to Snowflake

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

Snowflake

+
+
Operator guide
+

S3ToSnowflakeOperator

+
+
Python API
+

airflow.providers.snowflake.transfers.s3_to_snowflake

+
+
Provider
+

apache-airflow-providers-snowflake

+
+
+
+
+

Amazon Simple Storage Service (S3) to Snowflake

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

Snowflake

+
+
Python API
+

airflow.providers.snowflake.transfers.copy_into_snowflake

+
+
Provider
+

apache-airflow-providers-snowflake

+
+
+
+
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/operators-and-hooks-ref/azure.html b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/azure.html new file mode 100644 index 00000000000..5fef7120582 --- /dev/null +++ b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/azure.html @@ -0,0 +1,1188 @@ + + + + + + + + + + + + Azure: Microsoft Azure — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Azure: Microsoft Azure

+

Airflow has limited support for Microsoft Azure.

+

Some hooks are based on airflow.providers.microsoft.azure.hooks.base_azure +which authenticate Azure’s Python SDK Clients.

+
+

Services

+

These integrations allow you to perform various operations within the Microsoft Azure.

+
+

Microsoft Azure

+
+
Hooks
+

airflow.providers.microsoft.azure.hooks.base_azure.

+
+
Provider
+

apache-airflow-providers-microsoft-azure

+
+
Product documentation
+

Microsoft Azure

+
+
+
+ + + + + + + +
+

Microsoft Azure FileShare

+
+
Hooks
+

airflow.providers.microsoft.azure.hooks.fileshare.

+
+
Provider
+

apache-airflow-providers-microsoft-azure

+
+
Product documentation
+

Microsoft Azure FileShare

+
+
+
+ + +
+
+

Transfers

+

These integrations allow you to copy data from/to Microsoft Azure.

+
+

Microsoft Azure FileShare to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Microsoft Azure FileShare

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Transfers data from Azure FileShare Storage to Google Cloud Storage

+
+
Python API
+

airflow.providers.google.cloud.transfers.azure_fileshare_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Microsoft Azure Data Lake Storage to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Microsoft Azure Data Lake Storage

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Python API
+

airflow.providers.google.cloud.transfers.adls_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Local to Microsoft Azure Data Lake Storage

+
+
Target product documentation
+

Microsoft Azure Data Lake Storage

+
+
Operator guide
+

Upload data from Local Filesystem to Azure Data Lake

+
+
Python API
+

airflow.providers.microsoft.azure.transfers.local_to_adls

+
+
Provider
+

apache-airflow-providers-microsoft-azure

+
+
+
+
+

Oracle to Microsoft Azure Data Lake Storage

+
+
Source product documentation
+

Oracle

+
+
Target product documentation
+

Microsoft Azure Data Lake Storage

+
+
Python API
+

airflow.providers.microsoft.azure.transfers.oracle_to_azure_data_lake

+
+
Provider
+

apache-airflow-providers-microsoft-azure

+
+
+
+
+

Local to Microsoft Azure Blob Storage

+
+
Target product documentation
+

Microsoft Azure Blob Storage

+
+
Python API
+

airflow.providers.microsoft.azure.transfers.local_to_wasb

+
+
Provider
+

apache-airflow-providers-microsoft-azure

+
+
+
+
+

Microsoft Azure Blob Storage to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Microsoft Azure Blob Storage

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Azure Blob Storage Transfer Operator

+
+
Python API
+

airflow.providers.microsoft.azure.transfers.azure_blob_to_gcs

+
+
Provider
+

apache-airflow-providers-microsoft-azure

+
+
+
+
+

SSH File Transfer Protocol (SFTP) to Microsoft Azure Blob Storage

+
+
Source product documentation
+

SSH File Transfer Protocol (SFTP)

+
+
Target product documentation
+

Microsoft Azure Blob Storage

+
+
Operator guide
+

Azure Blob Storage Transfer Operator

+
+
Python API
+

airflow.providers.microsoft.azure.transfers.sftp_to_wasb

+
+
Provider
+

apache-airflow-providers-microsoft-azure

+
+
+
+
+

Microsoft Azure Blob Storage to Snowflake

+
+
Source product documentation
+

Microsoft Azure Blob Storage

+
+
Target product documentation
+

Snowflake

+
+
Python API
+

airflow.providers.snowflake.transfers.copy_into_snowflake

+
+
Provider
+

apache-airflow-providers-snowflake

+
+
+
+
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/operators-and-hooks-ref/google.html b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/google.html new file mode 100644 index 00000000000..13bbd6d53c9 --- /dev/null +++ b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/google.html @@ -0,0 +1,2666 @@ + + + + + + + + + + + + Google — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Google

+

Airflow has support for the Google service.

+

All hooks are based on airflow.providers.google.common.hooks.base_google.GoogleBaseHook. Some integration +also use airflow.providers.google.common.hooks.discovery_api.

+

See the Google Cloud connection type documentation to +configure connections to Google services.

+
+

Google Cloud

+

Airflow has extensive support for the Google Cloud.

+
+

Note

+

You can learn how to use Google Cloud integrations by analyzing the +source code of the Google Cloud example DAGs

+
+
+

Services

+

These integrations allow you to perform various operations within the Google Cloud.

+ + + + + + + + + +
+

Google Cloud Key Management Service (KMS)

+
+
Hooks
+

airflow.providers.google.cloud.hooks.kms.

+
+
Provider
+

apache-airflow-providers-google

+
+
Product documentation
+

Google Cloud Key Management Service (KMS)

+
+
+
+ + + +
+

Google Cloud OS Login

+
+
Hooks
+

airflow.providers.google.cloud.hooks.os_login.

+
+
Provider
+

apache-airflow-providers-google

+
+
Product documentation
+

Google Cloud OS Login

+
+
+
+ +
+

Google Cloud Secret Manager

+
+
Hooks
+

airflow.providers.google.cloud.hooks.secret_manager.

+
+
Provider
+

apache-airflow-providers-google

+
+
Product documentation
+

Google Cloud Secret Manager

+
+
+
+ + + + +
+

Google Cloud Storage (GCS)

+
+
Operators
+

airflow.providers.google.cloud.operators.gcs.

+
+
Hooks
+

airflow.providers.google.cloud.hooks.gcs.

+
+
Guides
+

Google Cloud Storage Operators.

+
+
Provider
+

apache-airflow-providers-google

+
+
Product documentation
+

Google Cloud Storage (GCS)

+
+
+
+ +
+

Google Cloud Tasks

+
+
Operators
+

airflow.providers.google.cloud.operators.tasks.

+
+
Hooks
+

airflow.providers.google.cloud.hooks.tasks.

+
+
Guides
+

Google Cloud Tasks.

+
+
Provider
+

apache-airflow-providers-google

+
+
Product documentation
+

Google Cloud Tasks

+
+
+
+ + + + + + + + + + + + + + +
+

Google Deployment Manager

+
+
Hooks
+

airflow.providers.google.cloud.hooks.gdm.

+
+
Provider
+

apache-airflow-providers-google

+
+
Product documentation
+

Google Deployment Manager

+
+
+
+ + + + +
+
+

Transfers

+

These integrations allow you to copy data from/to Google Cloud.

+
+

Google Cloud Storage (GCS) to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

Google Cloud Storage to Amazon S3 transfer operator

+
+
Python API
+

airflow.providers.amazon.aws.transfers.gcs_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Amazon Glacier to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Amazon Glacier

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Amazon S3 Glacier to GCS

+
+
Python API
+

airflow.providers.amazon.aws.transfers.glacier_to_gcs

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Presto to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Presto

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Presto to Google Cloud Storage Transfer Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.presto_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Trino to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Trino

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Trino to Google Cloud Storage Transfer Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.trino_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Common SQL to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Common SQL

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Python API
+

airflow.providers.google.cloud.transfers.sql_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google Cloud Storage (GCS) to Google Drive

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

Google Drive

+
+
Operator guide
+

Google Cloud Storage to Google Drive Transfer Operators

+
+
Python API
+

airflow.providers.google.suite.transfers.gcs_to_gdrive

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google Drive to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Google Drive

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Google Drive to Google Cloud Storage Transfer Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.gdrive_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Microsoft SQL Server (MSSQL) to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Microsoft SQL Server (MSSQL)

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Python API
+

airflow.providers.google.cloud.transfers.mssql_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Microsoft Azure FileShare to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Microsoft Azure FileShare

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Transfers data from Azure FileShare Storage to Google Cloud Storage

+
+
Python API
+

airflow.providers.google.cloud.transfers.azure_fileshare_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Apache Cassandra to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Apache Cassandra

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Python API
+

airflow.providers.google.cloud.transfers.cassandra_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google Calendar to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Google Calendar

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Google Calendar to Google Cloud Storage Transfer Operators

+
+
Python API
+

airflow.providers.google.cloud.transfers.calendar_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google Spreadsheet to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Google Spreadsheet

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Google Sheets to Google Cloud Storage Transfer Operators

+
+
Python API
+

airflow.providers.google.cloud.transfers.sheets_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Amazon Simple Storage Service (S3) to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Transfer Data from Amazon S3 to Google Cloud Storage

+
+
Python API
+

airflow.providers.google.cloud.transfers.s3_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google Cloud Storage (GCS) to SSH File Transfer Protocol (SFTP)

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

SSH File Transfer Protocol (SFTP)

+
+
Operator guide
+

Google Cloud Storage Transfer Operator to SFTP

+
+
Python API
+

airflow.providers.google.cloud.transfers.gcs_to_sftp

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

PostgreSQL to Google Cloud Storage (GCS)

+
+
Source product documentation
+

PostgreSQL

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Python API
+

airflow.providers.google.cloud.transfers.postgres_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google BigQuery to MySQL

+
+
Source product documentation
+

Google BigQuery

+
+
Target product documentation
+

MySQL

+
+
Python API
+

airflow.providers.google.cloud.transfers.bigquery_to_mysql

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google BigQuery to Microsoft SQL Server (MSSQL)

+
+
Source product documentation
+

Google BigQuery

+
+
Target product documentation
+

Microsoft SQL Server (MSSQL)

+
+
Python API
+

airflow.providers.google.cloud.transfers.bigquery_to_mssql

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google Cloud Storage (GCS) to Google BigQuery

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

Google BigQuery

+
+
Python API
+

airflow.providers.google.cloud.transfers.gcs_to_bigquery

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google Cloud Storage (GCS) to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Transfer data in Google Cloud Storage

+
+
Python API
+

airflow.providers.google.cloud.transfers.gcs_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Facebook Ads to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Facebook Ads

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Facebook Ads To GCS Operators

+
+
Python API
+

airflow.providers.google.cloud.transfers.facebook_ads_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

SSH File Transfer Protocol (SFTP) to Google Cloud Storage (GCS)

+
+
Source product documentation
+

SSH File Transfer Protocol (SFTP)

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

SFTP to Google Cloud Storage Transfer Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.sftp_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Microsoft Azure Data Lake Storage to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Microsoft Azure Data Lake Storage

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Python API
+

airflow.providers.google.cloud.transfers.adls_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google BigQuery to Google BigQuery

+
+
Source product documentation
+

Google BigQuery

+
+
Target product documentation
+

Google BigQuery

+
+
Python API
+

airflow.providers.google.cloud.transfers.bigquery_to_bigquery

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

MySQL to Google Cloud Storage (GCS)

+
+
Source product documentation
+

MySQL

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

MySQL To Google Cloud Storage Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.mysql_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Oracle to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Oracle

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Oracle To Google Cloud Storage Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.oracle_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google Cloud Storage (GCS) to Google Spreadsheet

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

Google Spreadsheet

+
+
Operator guide
+

Google Cloud Storage to Google Sheets Transfer Operators

+
+
Python API
+

airflow.providers.google.suite.transfers.gcs_to_sheets

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Local to Google Cloud Storage (GCS)

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Upload data from Local Filesystem to Google Cloud Storage

+
+
Python API
+

airflow.providers.google.cloud.transfers.local_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google BigQuery to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Google BigQuery

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Python API
+

airflow.providers.google.cloud.transfers.bigquery_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google Cloud Storage (GCS) to Local

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Downloads data from Google Cloud Storage to Local Filesystem

+
+
Python API
+

airflow.providers.google.cloud.transfers.gcs_to_local

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Salesforce to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Salesforce

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Salesforce To GCS Operators

+
+
Python API
+

airflow.providers.google.cloud.transfers.salesforce_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+ +
+

Microsoft SQL Server (MSSQL) to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Microsoft SQL Server (MSSQL)

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Microsoft SQL Server To Google Cloud Storage Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.mssql_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Microsoft Azure Blob Storage to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Microsoft Azure Blob Storage

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Azure Blob Storage Transfer Operator

+
+
Python API
+

airflow.providers.microsoft.azure.transfers.azure_blob_to_gcs

+
+
Provider
+

apache-airflow-providers-microsoft-azure

+
+
+
+
+

Google Cloud Storage (GCS) to Presto

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

Presto

+
+
Operator guide
+

Google Cloud Storage to Presto Transfer Operator

+
+
Python API
+

airflow.providers.presto.transfers.gcs_to_presto

+
+
Provider
+

apache-airflow-providers-presto

+
+
+
+
+

Google Cloud Storage (GCS) to Snowflake

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

Snowflake

+
+
Python API
+

airflow.providers.snowflake.transfers.copy_into_snowflake

+
+
Provider
+

apache-airflow-providers-snowflake

+
+
+
+
+

Google Cloud Storage (GCS) to Trino

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

Trino

+
+
Operator guide
+

Google Cloud Storage to Trino Transfer Operator

+
+
Python API
+

airflow.providers.trino.transfers.gcs_to_trino

+
+
Provider
+

apache-airflow-providers-trino

+
+
+
+
+
+
+

Google Marketing Platform

+
+

Note

+

You can learn how to use Google Marketing Platform integrations by analyzing the +source code +of the example DAGs.

+
+ + + + +
+
+

Other Google operators and hooks

+
+

Google

+
+
Hooks
+

airflow.providers.google.common.hooks.base_google.

+
+
Provider
+

apache-airflow-providers-google

+
+
Product documentation
+

Google

+
+
+
+
+

Google Calendar

+
+
Hooks
+

airflow.providers.google.suite.hooks.calendar.

+
+
Provider
+

apache-airflow-providers-google

+
+
Product documentation
+

Google Calendar

+
+
+
+ + +
+

Google Discovery API

+
+
Hooks
+

airflow.providers.google.common.hooks.discovery_api.

+
+
Provider
+

apache-airflow-providers-google

+
+
Product documentation
+

Google Discovery API

+
+
+
+
+

Google Drive

+
+
Hooks
+

airflow.providers.google.suite.hooks.drive.

+
+
Provider
+

apache-airflow-providers-google

+
+
Product documentation
+

Google Drive

+
+
+
+ + +
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/operators-and-hooks-ref/index.html b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/index.html new file mode 100644 index 00000000000..3086a50140f --- /dev/null +++ b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/index.html @@ -0,0 +1,1097 @@ + + + + + + + + + + + + Operators and Hooks Reference — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Operators and Hooks Reference

+

Here is a list of operators and hooks that are released independently of the Airflow core. A list of core operators is available in the documentation for apache-airflow: Core Operators and Hooks Reference.

+
+ +
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/operators-and-hooks-ref/protocol.html b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/protocol.html new file mode 100644 index 00000000000..fa6a6e94bf6 --- /dev/null +++ b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/protocol.html @@ -0,0 +1,1213 @@ + + + + + + + + + + + + Protocol integrations — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Protocol integrations

+
+

Protocols

+

These integrations allow you to perform various operations within various services using standardized +communication protocols or interface.

+
+

File Transfer Protocol (FTP)

+
+
Hooks
+

airflow.providers.ftp.hooks.ftp.

+
+
Provider
+

apache-airflow-providers-ftp

+
+
Product documentation
+

File Transfer Protocol (FTP)

+
+
+
+
+

gRPC

+
+
Operators
+

airflow.providers.grpc.operators.grpc.

+
+
Hooks
+

airflow.providers.grpc.hooks.grpc.

+
+
Provider
+

apache-airflow-providers-grpc

+
+
Product documentation
+

gRPC

+
+
+
+
+

Hypertext Transfer Protocol (HTTP)

+
+
Operators
+

airflow.providers.http.operators.http.

+
+
Hooks
+

airflow.providers.http.hooks.http.

+
+
Guides
+

HTTP Operators.

+
+
Provider
+

apache-airflow-providers-http

+
+
Product documentation
+

Hypertext Transfer Protocol (HTTP)

+
+
+
+
+

Internet Message Access Protocol (IMAP)

+
+
Hooks
+

airflow.providers.imap.hooks.imap.

+
+
Provider
+

apache-airflow-providers-imap

+
+
Product documentation
+

Internet Message Access Protocol (IMAP)

+
+
+
+
+

Java Database Connectivity (JDBC)

+
+
Operators
+

airflow.providers.jdbc.operators.jdbc.

+
+
Hooks
+

airflow.providers.jdbc.hooks.jdbc.

+
+
Guides
+

JdbcOperator.

+
+
Provider
+

apache-airflow-providers-jdbc

+
+
Product documentation
+

Java Database Connectivity (JDBC)

+
+
+
+
+

ODBC

+
+
Hooks
+

airflow.providers.odbc.hooks.odbc.

+
+
Provider
+

apache-airflow-providers-odbc

+
+
Product documentation
+

ODBC

+
+
+
+
+

Samba

+
+
Hooks
+

airflow.providers.samba.hooks.samba.

+
+
Provider
+

apache-airflow-providers-samba

+
+
Product documentation
+

Samba

+
+
+
+
+

Secure Shell (SSH)

+
+
Operators
+

airflow.providers.ssh.operators.ssh.

+
+
Hooks
+

airflow.providers.ssh.hooks.ssh.

+
+
Provider
+

apache-airflow-providers-ssh

+
+
Product documentation
+

Secure Shell (SSH)

+
+
+
+
+

SSH File Transfer Protocol (SFTP)

+
+
Operators
+

airflow.providers.sftp.operators.sftp.

+
+
Hooks
+

airflow.providers.sftp.hooks.sftp.

+
+
Provider
+

apache-airflow-providers-sftp

+
+
Product documentation
+

SSH File Transfer Protocol (SFTP)

+
+
+
+
+

Windows PowerShell Remoting Protocol

+
+
Operators
+

airflow.providers.microsoft.psrp.operators.psrp.

+
+
Hooks
+

airflow.providers.microsoft.psrp.hooks.psrp.

+
+
Provider
+

apache-airflow-providers-microsoft-psrp

+
+
Product documentation
+

Windows PowerShell Remoting Protocol

+
+
+
+ +
+
+

Transfers

+

These integrations allow you to copy data.

+
+

Internet Message Access Protocol (IMAP) to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Internet Message Access Protocol (IMAP)

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

Imap Attachment to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.imap_attachment_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Amazon Simple Storage Service (S3) to SSH File Transfer Protocol (SFTP)

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

SSH File Transfer Protocol (SFTP)

+
+
Operator guide
+

Amazon S3 to SFTP

+
+
Python API
+

airflow.providers.amazon.aws.transfers.s3_to_sftp

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

SSH File Transfer Protocol (SFTP) to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

SSH File Transfer Protocol (SFTP)

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

SFTP to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.sftp_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Amazon Simple Storage Service (S3) to File Transfer Protocol (FTP)

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

File Transfer Protocol (FTP)

+
+
Operator guide
+

Amazon S3 to FTP

+
+
Python API
+

airflow.providers.amazon.aws.transfers.s3_to_ftp

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

File Transfer Protocol (FTP) to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

File Transfer Protocol (FTP)

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

FTP to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.ftp_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Apache Hive to Samba

+
+
Source product documentation
+

Apache Hive

+
+
Target product documentation
+

Samba

+
+
Python API
+

airflow.providers.apache.hive.transfers.hive_to_samba

+
+
Provider
+

apache-airflow-providers-apache-hive

+
+
+
+
+

Google Cloud Storage (GCS) to SSH File Transfer Protocol (SFTP)

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

SSH File Transfer Protocol (SFTP)

+
+
Operator guide
+

Google Cloud Storage Transfer Operator to SFTP

+
+
Python API
+

airflow.providers.google.cloud.transfers.gcs_to_sftp

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

SSH File Transfer Protocol (SFTP) to Google Cloud Storage (GCS)

+
+
Source product documentation
+

SSH File Transfer Protocol (SFTP)

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

SFTP to Google Cloud Storage Transfer Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.sftp_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

SSH File Transfer Protocol (SFTP) to Microsoft Azure Blob Storage

+
+
Source product documentation
+

SSH File Transfer Protocol (SFTP)

+
+
Target product documentation
+

Microsoft Azure Blob Storage

+
+
Operator guide
+

Azure Blob Storage Transfer Operator

+
+
Python API
+

airflow.providers.microsoft.azure.transfers.sftp_to_wasb

+
+
Provider
+

apache-airflow-providers-microsoft-azure

+
+
+
+
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/operators-and-hooks-ref/services.html b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/services.html new file mode 100644 index 00000000000..576f2d48f4c --- /dev/null +++ b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/services.html @@ -0,0 +1,1407 @@ + + + + + + + + + + + + Services — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Services

+
+

Services

+

These integrations allow you to perform various operations within various services.

+ + + + +
+

Datadog

+
+
Hooks
+

airflow.providers.datadog.hooks.datadog.

+
+
Provider
+

apache-airflow-providers-datadog

+
+
Product documentation
+

Datadog

+
+
+
+
+

Dingding

+
+
Operators
+

airflow.providers.dingding.operators.dingding.

+
+
Guides
+

Dingding Operators.

+
+
Provider
+

apache-airflow-providers-dingding

+
+
Product documentation
+

Dingding

+
+
+
+ +
+

Facebook Ads

+
+
Hooks
+

airflow.providers.facebook.ads.hooks.ads.

+
+
Provider
+

apache-airflow-providers-facebook

+
+
Product documentation
+

Facebook Ads

+
+
+
+
+

IBM Cloudant

+
+
Hooks
+

airflow.providers.dingding.hooks.dingding.

+
+
Provider
+

apache-airflow-providers-cloudant

+
+
Product documentation
+

IBM Cloudant

+
+
+
+ + +
+

Plexus

+
+
Operators
+

airflow.providers.plexus.operators.job.

+
+
Hooks
+

airflow.providers.plexus.hooks.plexus.

+
+
Provider
+

apache-airflow-providers-plexus

+
+
Product documentation
+

Plexus

+
+
+
+ + + + + +
+

Tableau

+
+
Operators
+

airflow.providers.tableau.operators.tableau.

+
+
Hooks
+

airflow.providers.tableau.hooks.tableau.

+
+
Guides
+

TableauOperator.

+
+
Provider
+

apache-airflow-providers-tableau

+
+
Product documentation
+

Tableau

+
+
+
+
+

Telegram

+
+
Operators
+

airflow.providers.telegram.operators.telegram.

+
+
Hooks
+

airflow.providers.telegram.hooks.telegram.

+
+
Guides
+

TelegramOperator.

+
+
Provider
+

apache-airflow-providers-telegram

+
+
Product documentation
+

Telegram

+
+
+
+
+

Yandex.Cloud

+
+
Hooks
+

airflow.providers.yandex.hooks.yandex.

+
+
Provider
+

apache-airflow-providers-yandex

+
+
Product documentation
+

Yandex.Cloud

+
+
+
+ +
+
+

Transfers

+

These integrations allow you to perform various operations within various services.

+
+

Salesforce to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Salesforce

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

Salesforce to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.salesforce_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Facebook Ads to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Facebook Ads

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Facebook Ads To GCS Operators

+
+
Python API
+

airflow.providers.google.cloud.transfers.facebook_ads_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Salesforce to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Salesforce

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Salesforce To GCS Operators

+
+
Python API
+

airflow.providers.google.cloud.transfers.salesforce_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Common SQL to Slack

+
+
Source product documentation
+

Common SQL

+
+
Target product documentation
+

Slack

+
+
Operator guide
+

SqlToSlackOperator

+
+
Python API
+

airflow.providers.slack.transfers.sql_to_slack

+
+
Provider
+

apache-airflow-providers-slack

+
+
+
+
+

Amazon Simple Storage Service (S3) to Snowflake

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

Snowflake

+
+
Operator guide
+

S3ToSnowflakeOperator

+
+
Python API
+

airflow.providers.snowflake.transfers.s3_to_snowflake

+
+
Provider
+

apache-airflow-providers-snowflake

+
+
+
+
+

Snowflake to Slack

+
+
Source product documentation
+

Snowflake

+
+
Target product documentation
+

Slack

+
+
Operator guide
+

SnowflakeToSlackOperator

+
+
Python API
+

airflow.providers.snowflake.transfers.snowflake_to_slack

+
+
Provider
+

apache-airflow-providers-snowflake

+
+
+
+
+

Amazon Simple Storage Service (S3) to Snowflake

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

Snowflake

+
+
Python API
+

airflow.providers.snowflake.transfers.copy_into_snowflake

+
+
Provider
+

apache-airflow-providers-snowflake

+
+
+
+
+

Google Cloud Storage (GCS) to Snowflake

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

Snowflake

+
+
Python API
+

airflow.providers.snowflake.transfers.copy_into_snowflake

+
+
Provider
+

apache-airflow-providers-snowflake

+
+
+
+
+

Microsoft Azure Blob Storage to Snowflake

+
+
Source product documentation
+

Microsoft Azure Blob Storage

+
+
Target product documentation
+

Snowflake

+
+
Python API
+

airflow.providers.snowflake.transfers.copy_into_snowflake

+
+
Provider
+

apache-airflow-providers-snowflake

+
+
+
+
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/operators-and-hooks-ref/software.html b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/software.html new file mode 100644 index 00000000000..1ad1f3dab55 --- /dev/null +++ b/docs-archive/apache-airflow-providers/operators-and-hooks-ref/software.html @@ -0,0 +1,1872 @@ + + + + + + + + + + + + Software integrations — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Software integrations

+
+

Software

+

These integrations allow you to perform various operations using various software.

+ +
+

Asana

+
+
Operators
+

airflow.providers.asana.operators.asana_tasks.

+
+
Hooks
+

airflow.providers.asana.hooks.asana.

+
+
Guides
+

AsanaCreateTaskOperator.

+
+
Provider
+

apache-airflow-providers-asana

+
+
Product documentation
+

Asana

+
+
+
+ +
+

Common SQL

+
+
Operators
+

airflow.providers.common.sql.operators.sql.

+
+
Hooks
+

airflow.providers.common.sql.hooks.sql.

+
+
Guides
+

SQL Operators.

+
+
Provider
+

apache-airflow-providers-common-sql

+
+
Product documentation
+

Common SQL

+
+
+
+
+

Docker

+
+
Operators
+

airflow.providers.docker.operators.docker.

+
+
Hooks
+

airflow.providers.docker.hooks.docker.

+
+
Provider
+

apache-airflow-providers-docker

+
+
Product documentation
+

Docker

+
+
+
+
+

Docker Swarm

+
+
Operators
+

airflow.providers.docker.operators.docker_swarm.

+
+
Provider
+

apache-airflow-providers-docker

+
+
Product documentation
+

Docker Swarm

+
+
+
+
+

Elasticsearch

+
+
Hooks
+

airflow.providers.elasticsearch.hooks.elasticsearch.

+
+
Provider
+

apache-airflow-providers-elasticsearch

+
+
Product documentation
+

Elasticsearch

+
+
+
+
+

Exasol

+
+
Operators
+

airflow.providers.exasol.operators.exasol.

+
+
Hooks
+

airflow.providers.exasol.hooks.exasol.

+
+
Provider
+

apache-airflow-providers-exasol

+
+
Product documentation
+

Exasol

+
+
+
+
+

Github

+
+
Operators
+

airflow.providers.github.operators.github.

+
+
Hooks
+

airflow.providers.github.hooks.github.

+
+
Provider
+

apache-airflow-providers-github

+
+
Product documentation
+

Github

+
+
+
+
+

Hashicorp Vault

+
+
Hooks
+

airflow.providers.hashicorp.hooks.vault.

+
+
Provider
+

apache-airflow-providers-hashicorp

+
+
Product documentation
+

Hashicorp Vault

+
+
+
+ + + +
+

Microsoft SQL Server (MSSQL)

+
+
Operators
+

airflow.providers.microsoft.mssql.operators.mssql.

+
+
Hooks
+

airflow.providers.microsoft.mssql.hooks.mssql.

+
+
Guides
+

MsSqlOperator.

+
+
Provider
+

apache-airflow-providers-microsoft-mssql

+
+
Product documentation
+

Microsoft SQL Server (MSSQL)

+
+
+
+
+

MongoDB

+
+
Hooks
+

airflow.providers.mongo.hooks.mongo.

+
+
Provider
+

apache-airflow-providers-mongo

+
+
Product documentation
+

MongoDB

+
+
+
+
+

MySQL

+
+
Operators
+

airflow.providers.mysql.operators.mysql.

+
+
Hooks
+

airflow.providers.mysql.hooks.mysql.

+
+
Guides
+

MySqlOperator.

+
+
Provider
+

apache-airflow-providers-mysql

+
+
Product documentation
+

MySQL

+
+
+
+
+

Neo4j

+
+
Operators
+

airflow.providers.neo4j.operators.neo4j.

+
+
Hooks
+

airflow.providers.neo4j.hooks.neo4j.

+
+
Guides
+

Neo4jOperator.

+
+
Provider
+

apache-airflow-providers-neo4j

+
+
Product documentation
+

Neo4j

+
+
+
+
+

OpenFaaS

+
+
Hooks
+

airflow.providers.openfaas.hooks.openfaas.

+
+
Provider
+

apache-airflow-providers-openfaas

+
+
Product documentation
+

OpenFaaS

+
+
+
+
+

Oracle

+
+
Operators
+

airflow.providers.oracle.operators.oracle.

+
+
Hooks
+

airflow.providers.oracle.hooks.oracle.

+
+
Provider
+

apache-airflow-providers-oracle

+
+
Product documentation
+

Oracle

+
+
+
+
+

Papermill

+
+
Operators
+

airflow.providers.papermill.operators.papermill.

+
+
Guides
+

Papermill.

+
+
Provider
+

apache-airflow-providers-papermill

+
+
Product documentation
+

Papermill

+
+
+
+ +
+

Presto

+
+
Hooks
+

airflow.providers.presto.hooks.presto.

+
+
Provider
+

apache-airflow-providers-presto

+
+
Product documentation
+

Presto

+
+
+
+
+

Redis

+
+
Operators
+

airflow.providers.redis.operators.redis_publish.

+
+
Hooks
+

airflow.providers.redis.hooks.redis.

+
+
Provider
+

apache-airflow-providers-redis

+
+
Product documentation
+

Redis

+
+
+
+
+

Singularity

+
+
Operators
+

airflow.providers.singularity.operators.singularity.

+
+
Provider
+

apache-airflow-providers-singularity

+
+
Product documentation
+

Singularity

+
+
+
+
+

SQLite

+
+
Operators
+

airflow.providers.sqlite.operators.sqlite.

+
+
Hooks
+

airflow.providers.sqlite.hooks.sqlite.

+
+
Guides
+

SqliteOperator.

+
+
Provider
+

apache-airflow-providers-sqlite

+
+
Product documentation
+

SQLite

+
+
+
+
+

Tabular

+
+
Hooks
+

airflow.providers.tabular.hooks.tabular.

+
+
Provider
+

apache-airflow-providers-tabular

+
+
Product documentation
+

Tabular

+
+
+
+
+

Trino

+
+
Operators
+

airflow.providers.trino.operators.trino.

+
+
Hooks
+

airflow.providers.trino.hooks.trino.

+
+
Guides
+

TrinoOperator.

+
+
Provider
+

apache-airflow-providers-trino

+
+
Product documentation
+

Trino

+
+
+
+
+

Vertica

+
+
Operators
+

airflow.providers.vertica.operators.vertica.

+
+
Hooks
+

airflow.providers.vertica.hooks.vertica.

+
+
Provider
+

apache-airflow-providers-vertica

+
+
Product documentation
+

Vertica

+
+
+
+
+

Zendesk

+
+
Hooks
+

airflow.providers.zendesk.hooks.zendesk.

+
+
Provider
+

apache-airflow-providers-zendesk

+
+
Product documentation
+

Zendesk

+
+
+
+
+
+

Transfers

+

These integrations allow you to copy data.

+
+

MongoDB to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

MongoDB

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

MongoDB to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.mongo_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Exasol to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Exasol

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Python API
+

airflow.providers.amazon.aws.transfers.exasol_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Common SQL to Amazon Simple Storage Service (S3)

+
+
Source product documentation
+

Common SQL

+
+
Target product documentation
+

Amazon Simple Storage Service (S3)

+
+
Operator guide
+

SQL to Amazon S3

+
+
Python API
+

airflow.providers.amazon.aws.transfers.sql_to_s3

+
+
Provider
+

apache-airflow-providers-amazon

+
+
+
+
+

Vertica to Apache Hive

+
+
Source product documentation
+

Vertica

+
+
Target product documentation
+

Apache Hive

+
+
Python API
+

airflow.providers.apache.hive.transfers.vertica_to_hive

+
+
Provider
+

apache-airflow-providers-apache-hive

+
+
+
+
+

Apache Hive to MySQL

+
+
Source product documentation
+

Apache Hive

+
+
Target product documentation
+

MySQL

+
+
Python API
+

airflow.providers.apache.hive.transfers.hive_to_mysql

+
+
Provider
+

apache-airflow-providers-apache-hive

+
+
+
+
+

MySQL to Apache Hive

+
+
Source product documentation
+

MySQL

+
+
Target product documentation
+

Apache Hive

+
+
Python API
+

airflow.providers.apache.hive.transfers.mysql_to_hive

+
+
Provider
+

apache-airflow-providers-apache-hive

+
+
+
+
+

Microsoft SQL Server (MSSQL) to Apache Hive

+
+
Source product documentation
+

Microsoft SQL Server (MSSQL)

+
+
Target product documentation
+

Apache Hive

+
+
Python API
+

airflow.providers.apache.hive.transfers.mssql_to_hive

+
+
Provider
+

apache-airflow-providers-apache-hive

+
+
+
+
+

Presto to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Presto

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Presto to Google Cloud Storage Transfer Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.presto_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Trino to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Trino

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Trino to Google Cloud Storage Transfer Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.trino_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Common SQL to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Common SQL

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Python API
+

airflow.providers.google.cloud.transfers.sql_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Microsoft SQL Server (MSSQL) to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Microsoft SQL Server (MSSQL)

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Python API
+

airflow.providers.google.cloud.transfers.mssql_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

PostgreSQL to Google Cloud Storage (GCS)

+
+
Source product documentation
+

PostgreSQL

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Python API
+

airflow.providers.google.cloud.transfers.postgres_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google BigQuery to MySQL

+
+
Source product documentation
+

Google BigQuery

+
+
Target product documentation
+

MySQL

+
+
Python API
+

airflow.providers.google.cloud.transfers.bigquery_to_mysql

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Google BigQuery to Microsoft SQL Server (MSSQL)

+
+
Source product documentation
+

Google BigQuery

+
+
Target product documentation
+

Microsoft SQL Server (MSSQL)

+
+
Python API
+

airflow.providers.google.cloud.transfers.bigquery_to_mssql

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

MySQL to Google Cloud Storage (GCS)

+
+
Source product documentation
+

MySQL

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

MySQL To Google Cloud Storage Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.mysql_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Oracle to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Oracle

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Oracle To Google Cloud Storage Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.oracle_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Common SQL to Google Spreadsheet

+
+
Source product documentation
+

Common SQL

+
+
Target product documentation
+

Google Spreadsheet

+
+
Operator guide
+

SQL to Google Sheets Transfer Operators

+
+
Python API
+

airflow.providers.google.suite.transfers.sql_to_sheets

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Microsoft SQL Server (MSSQL) to Google Cloud Storage (GCS)

+
+
Source product documentation
+

Microsoft SQL Server (MSSQL)

+
+
Target product documentation
+

Google Cloud Storage (GCS)

+
+
Operator guide
+

Microsoft SQL Server To Google Cloud Storage Operator

+
+
Python API
+

airflow.providers.google.cloud.transfers.mssql_to_gcs

+
+
Provider
+

apache-airflow-providers-google

+
+
+
+
+

Oracle to Microsoft Azure Data Lake Storage

+
+
Source product documentation
+

Oracle

+
+
Target product documentation
+

Microsoft Azure Data Lake Storage

+
+
Python API
+

airflow.providers.microsoft.azure.transfers.oracle_to_azure_data_lake

+
+
Provider
+

apache-airflow-providers-microsoft-azure

+
+
+
+
+

Vertica to MySQL

+
+
Source product documentation
+

Vertica

+
+
Target product documentation
+

MySQL

+
+
Python API
+

airflow.providers.mysql.transfers.vertica_to_mysql

+
+
Provider
+

apache-airflow-providers-mysql

+
+
+
+
+

Amazon Simple Storage Service (S3) to MySQL

+
+
Source product documentation
+

Amazon Simple Storage Service (S3)

+
+
Target product documentation
+

MySQL

+
+
Python API
+

airflow.providers.mysql.transfers.s3_to_mysql

+
+
Provider
+

apache-airflow-providers-mysql

+
+
+
+
+

Presto to MySQL

+
+
Source product documentation
+

Presto

+
+
Target product documentation
+

MySQL

+
+
Python API
+

airflow.providers.mysql.transfers.presto_to_mysql

+
+
Provider
+

apache-airflow-providers-mysql

+
+
+
+
+

Trino to MySQL

+
+
Source product documentation
+

Trino

+
+
Target product documentation
+

MySQL

+
+
Python API
+

airflow.providers.mysql.transfers.trino_to_mysql

+
+
Provider
+

apache-airflow-providers-mysql

+
+
+
+
+

Oracle to Oracle

+
+
Source product documentation
+

Oracle

+
+
Target product documentation
+

Oracle

+
+
Python API
+

airflow.providers.oracle.transfers.oracle_to_oracle

+
+
Provider
+

apache-airflow-providers-oracle

+
+
+
+
+

Google Cloud Storage (GCS) to Presto

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

Presto

+
+
Operator guide
+

Google Cloud Storage to Presto Transfer Operator

+
+
Python API
+

airflow.providers.presto.transfers.gcs_to_presto

+
+
Provider
+

apache-airflow-providers-presto

+
+
+
+
+

Common SQL to Slack

+
+
Source product documentation
+

Common SQL

+
+
Target product documentation
+

Slack

+
+
Operator guide
+

SqlToSlackOperator

+
+
Python API
+

airflow.providers.slack.transfers.sql_to_slack

+
+
Provider
+

apache-airflow-providers-slack

+
+
+
+
+

Google Cloud Storage (GCS) to Trino

+
+
Source product documentation
+

Google Cloud Storage (GCS)

+
+
Target product documentation
+

Trino

+
+
Operator guide
+

Google Cloud Storage to Trino Transfer Operator

+
+
Python API
+

airflow.providers.trino.transfers.gcs_to_trino

+
+
Provider
+

apache-airflow-providers-trino

+
+
+
+
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/packages-ref.html b/docs-archive/apache-airflow-providers/packages-ref.html new file mode 100644 index 00000000000..94cb4afb044 --- /dev/null +++ b/docs-archive/apache-airflow-providers/packages-ref.html @@ -0,0 +1,2566 @@ + + + + + + + + + + + + Providers packages reference — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+

Providers packages reference

+

Here’s the list of the provider packages and what they enable:

+
+ +
+
+

apache-airflow-providers-airbyte

+

Airbyte

+

To install, run:

+
pip install 'apache-airflow-providers-airbyte'
+
+
+
+
Available versions
+

3.2.0, 3.1.0, 3.0.0, 2.1.4, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.airbyte

+
+
+
+
+

apache-airflow-providers-alibaba

+

Alibaba Cloud integration (including Alibaba Cloud).

+

To install, run:

+
pip install 'apache-airflow-providers-alibaba'
+
+
+
+
Available versions
+

2.2.0, 2.1.0, 2.0.1, 2.0.0, 1.1.1, 1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.alibaba

+
+
+
+
+

apache-airflow-providers-amazon

+

Amazon integration (including Amazon Web Services (AWS)).

+

To install, run:

+
pip install 'apache-airflow-providers-amazon'
+
+
+
+
Available versions
+

6.2.0, 6.1.0, 6.0.0, 5.1.0, 5.0.0, 4.1.0, 4.0.0, 3.4.0, 3.3.0, 3.2.0, 3.1.1, 3.0.0, 2.6.0, 2.5.0, 2.4.0, 2.3.0, 2.2.0, 2.1.0, 2.0.0, 1.4.0, 1.3.0, 1.2.0, 1.1.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.amazon

+
+
+
+
+

apache-airflow-providers-apache-beam

+

Apache Beam.

+

To install, run:

+
pip install 'apache-airflow-providers-apache-beam'
+
+
+
+
Available versions
+

4.1.0, 4.0.0, 3.4.0, 3.3.0, 3.2.1, 3.2.0, 3.1.0, 3.0.1, 3.0.0, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.apache.beam

+
+
+
+
+

apache-airflow-providers-apache-cassandra

+

Apache Cassandra.

+

To install, run:

+
pip install 'apache-airflow-providers-apache-cassandra'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.apache.cassandra

+
+
+
+
+

apache-airflow-providers-apache-drill

+

Apache Drill.

+

To install, run:

+
pip install 'apache-airflow-providers-apache-drill'
+
+
+
+
Available versions
+

2.3.1, 2.3.0, 2.2.1, 2.2.0, 2.1.0, 2.0.0, 1.0.4, 1.0.3, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.apache.drill

+
+
+
+
+

apache-airflow-providers-apache-druid

+

Apache Druid.

+

To install, run:

+
pip install 'apache-airflow-providers-apache-druid'
+
+
+
+
Available versions
+

3.3.1, 3.3.0, 3.2.1, 3.2.0, 3.1.0, 3.0.0, 2.3.3, 2.3.2, 2.3.1, 2.3.0, 2.2.0, 2.1.0, 2.0.2, 2.0.1, 2.0.0, 1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.apache.druid

+
+
+
+
+

apache-airflow-providers-apache-hdfs

+

Hadoop Distributed File System (HDFS) +and WebHDFS.

+

To install, run:

+
pip install 'apache-airflow-providers-apache-hdfs'
+
+
+
+
Available versions
+

3.2.0, 3.1.0, 3.0.1, 3.0.0, 2.2.3, 2.2.2, 2.2.1, 2.2.0, 2.1.1, 2.1.0, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.apache.hdfs

+
+
+
+
+

apache-airflow-providers-apache-hive

+

Apache Hive

+

To install, run:

+
pip install 'apache-airflow-providers-apache-hive'
+
+
+
+
Available versions
+

4.1.1, 4.1.0, 4.0.1, 4.0.0, 3.1.0, 3.0.0, 2.3.3, 2.3.2, 2.3.1, 2.3.0, 2.2.0, 2.1.0, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.3, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.apache.hive

+
+
+
+
+

apache-airflow-providers-apache-kylin

+

Apache Kylin

+

To install, run:

+
pip install 'apache-airflow-providers-apache-kylin'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.apache.kylin

+
+
+
+
+

apache-airflow-providers-apache-livy

+

Apache Livy

+

To install, run:

+
pip install 'apache-airflow-providers-apache-livy'
+
+
+
+
Available versions
+

3.2.0, 3.1.0, 3.0.0, 2.2.3, 2.2.2, 2.2.1, 2.2.0, 2.1.0, 2.0.0, 1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.apache.livy

+
+
+
+
+

apache-airflow-providers-apache-pig

+

Apache Pig

+

To install, run:

+
pip install 'apache-airflow-providers-apache-pig'
+
+
+
+
Available versions
+

4.0.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.apache.pig

+
+
+
+
+

apache-airflow-providers-apache-pinot

+

Apache Pinot

+

To install, run:

+
pip install 'apache-airflow-providers-apache-pinot'
+
+
+
+
Available versions
+

4.0.1, 4.0.0, 3.2.1, 3.2.0, 3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.apache.pinot

+
+
+
+
+

apache-airflow-providers-apache-spark

+

Apache Spark

+

To install, run:

+
pip install 'apache-airflow-providers-apache-spark'
+
+
+
+
Available versions
+

4.0.0, 3.0.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.3, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.apache.spark

+
+
+
+
+

apache-airflow-providers-apache-sqoop

+

Apache Sqoop

+

To install, run:

+
pip install 'apache-airflow-providers-apache-sqoop'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.apache.sqoop

+
+
+
+
+

apache-airflow-providers-arangodb

+

ArangoDB

+

To install, run:

+
pip install 'apache-airflow-providers-arangodb'
+
+
+
+
Available versions
+

2.1.0, 2.0.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.arangodb

+
+
+
+
+

apache-airflow-providers-asana

+

Asana

+

To install, run:

+
pip install 'apache-airflow-providers-asana'
+
+
+
+
Available versions
+

2.1.0, 2.0.1, 2.0.0, 1.1.3, 1.1.2, 1.1.1, 1.1.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.asana

+
+
+
+
+

apache-airflow-providers-atlassian-jira

+

Atlassian Jira

+

To install, run:

+
pip install 'apache-airflow-providers-atlassian-jira'
+
+
+
+
Available versions
+

1.1.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.atlassian.jira

+
+
+
+
+

apache-airflow-providers-celery

+

Celery

+

To install, run:

+
pip install 'apache-airflow-providers-celery'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.1.4, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.celery

+
+
+
+
+

apache-airflow-providers-cloudant

+

IBM Cloudant

+

To install, run:

+
pip install 'apache-airflow-providers-cloudant'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.cloudant

+
+
+
+
+

apache-airflow-providers-cncf-kubernetes

+

Kubernetes

+

To install, run:

+
pip install 'apache-airflow-providers-cncf-kubernetes'
+
+
+
+
Available versions
+

5.0.0, 4.4.0, 4.3.0, 4.2.0, 4.1.0, 4.0.2, 4.0.1, 4.0.0, 3.1.2, 3.1.1, 3.1.0, 3.0.2, 3.0.1, 3.0.0, 2.2.0, 2.1.0, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.2.0, 1.1.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.cncf.kubernetes

+
+
+
+
+

apache-airflow-providers-common-sql

+

Common SQL Provider

+

To install, run:

+
pip install 'apache-airflow-providers-common-sql'
+
+
+
+
Available versions
+

1.3.1, 1.3.0, 1.2.0, 1.1.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.common.sql

+
+
+
+
+

apache-airflow-providers-databricks

+

Databricks

+

To install, run:

+
pip install 'apache-airflow-providers-databricks'
+
+
+
+
Available versions
+

4.0.0, 3.4.0, 3.3.0, 3.2.0, 3.1.0, 3.0.0, 2.7.0, 2.6.0, 2.5.0, 2.4.0, 2.3.0, 2.2.0, 2.1.0, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.databricks

+
+
+
+
+

apache-airflow-providers-datadog

+

Datadog

+

To install, run:

+
pip install 'apache-airflow-providers-datadog'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.datadog

+
+
+
+
+

apache-airflow-providers-dbt-cloud

+

dbt Cloud

+

To install, run:

+
pip install 'apache-airflow-providers-dbt-cloud'
+
+
+
+
Available versions
+

2.3.0, 2.2.0, 2.1.0, 2.0.1, 2.0.0, 1.0.2, 1.0.1.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.dbt.cloud

+
+
+
+
+

apache-airflow-providers-dingding

+

Dingding

+

To install, run:

+
pip install 'apache-airflow-providers-dingding'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.dingding

+
+
+
+
+

apache-airflow-providers-discord

+

Discord

+

To install, run:

+
pip install 'apache-airflow-providers-discord'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.1.4, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.discord

+
+
+
+
+

apache-airflow-providers-docker

+

Docker

+

To install, run:

+
pip install 'apache-airflow-providers-docker'
+
+
+
+
Available versions
+

3.3.0, 3.2.0, 3.1.0, 3.0.0, 2.7.0, 2.6.0, 2.5.2, 2.5.1, 2.5.0, 2.4.1, 2.4.0, 2.3.0, 2.2.0, 2.1.1, 2.1.0, 2.0.0, 1.2.0, 1.1.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.docker

+
+
+
+
+

apache-airflow-providers-elasticsearch

+

Elasticsearch

+

To install, run:

+
pip install 'apache-airflow-providers-elasticsearch'
+
+
+
+
Available versions
+

4.3.1, 4.3.0, 4.2.1, 4.2.0, 4.1.0, 4.0.0, 3.0.3, 3.0.2, 3.0.1, 3.0.0, 2.2.0, 2.1.0, 2.0.3, 2.0.2, 2.0.1, 1.0.4, 1.0.3, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.elasticsearch

+
+
+
+
+

apache-airflow-providers-exasol

+

Exasol

+

To install, run:

+
pip install 'apache-airflow-providers-exasol'
+
+
+
+
Available versions
+

4.1.2, 4.1.1, 4.1.0, 4.0.1, 4.0.0, 3.1.0, 3.0.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.1, 2.0.0, 1.1.1, 1.1.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.exasol

+
+
+
+
+

apache-airflow-providers-facebook

+

Facebook Ads

+

To install, run:

+
pip install 'apache-airflow-providers-facebook'
+
+
+
+
Available versions
+

3.1.0, 3.0.1, 3.0.0, 2.2.3, 2.2.2, 2.2.1, 2.2.0, 2.1.0, 2.0.1, 2.0.0, 1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.facebook

+
+
+
+
+

apache-airflow-providers-ftp

+

File Transfer Protocol (FTP)

+

To install, run:

+
pip install 'apache-airflow-providers-ftp'
+
+
+
+
Available versions
+

3.2.0, 3.1.0, 3.0.0, 2.1.2, 2.1.1, 2.1.0, 2.0.1, 2.0.0, 1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.ftp

+
+
+
+
+

apache-airflow-providers-github

+

GitHub

+

To install, run:

+
pip install 'apache-airflow-providers-github'
+
+
+
+
Available versions
+

2.2.0, 2.1.0, 2.0.0, 1.0.3, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.github

+
+
+
+
+

apache-airflow-providers-google

+

Google services including:

+
+
+

To install, run:

+
pip install 'apache-airflow-providers-google'
+
+
+
+
Available versions
+

8.6.0, 8.5.0, 8.4.0, 8.3.0, 8.2.0, 8.1.0, 8.0.0, 7.0.0, 6.8.0, 6.7.0, 6.6.0, 6.5.0, 6.4.0, 6.3.0, 6.2.0, 6.1.0, 6.0.0, 5.1.0, 5.0.0, 4.0.0, 3.0.0, 2.2.0, 2.1.0, 2.0.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.google

+
+
+
+
+

apache-airflow-providers-grpc

+

gRPC

+

To install, run:

+
pip install 'apache-airflow-providers-grpc'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.grpc

+
+
+
+
+

apache-airflow-providers-hashicorp

+

Hashicorp including Hashicorp Vault

+

To install, run:

+
pip install 'apache-airflow-providers-hashicorp'
+
+
+
+
Available versions
+

3.2.0, 3.1.0, 3.0.1, 3.0.0, 2.2.0, 2.1.4, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.hashicorp

+
+
+
+
+

apache-airflow-providers-http

+

Hypertext Transfer Protocol (HTTP)

+

To install, run:

+
pip install 'apache-airflow-providers-http'
+
+
+
+
Available versions
+

4.1.0, 4.0.0, 3.0.0, 2.1.2, 2.1.1, 2.1.0, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.1.1, 1.1.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.http

+
+
+
+
+

apache-airflow-providers-imap

+

Internet Message Access Protocol (IMAP)

+

To install, run:

+
pip install 'apache-airflow-providers-imap'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.2.3, 2.2.2, 2.2.1, 2.2.0, 2.1.0, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.imap

+
+
+
+
+

apache-airflow-providers-influxdb

+

InfluxDB

+

To install, run:

+
pip install 'apache-airflow-providers-influxdb'
+
+
+
+
Available versions
+

2.1.0, 2.0.0, 1.1.3, 1.1.2, 1.1.1, 1.1.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.influxdb

+
+
+
+
+

apache-airflow-providers-jdbc

+

Java Database Connectivity (JDBC)

+

To install, run:

+
pip install 'apache-airflow-providers-jdbc'
+
+
+
+
Available versions
+

3.3.0, 3.2.1, 3.2.0, 3.1.0, 3.0.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.jdbc

+
+
+
+
+

apache-airflow-providers-jenkins

+

Jenkins

+

To install, run:

+
pip install 'apache-airflow-providers-jenkins'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.1.0, 2.0.7, 2.0.6, 2.0.5, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.jenkins

+
+
+
+
+

apache-airflow-providers-microsoft-azure

+

Microsoft Azure

+

To install, run:

+
pip install 'apache-airflow-providers-microsoft-azure'
+
+
+
+
Available versions
+

5.0.0, 4.3.0, 4.2.0, 4.1.0, 4.0.0, 3.9.0, 3.8.0, 3.7.2, 3.7.1, 3.7.0, 3.6.0, 3.5.0, 3.4.0, 3.3.0, 3.2.0, 3.1.1, 3.1.0, 3.0.0, 2.0.0, 1.3.0, 1.2.0, 1.1.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.microsoft.azure

+
+
+
+
+

apache-airflow-providers-microsoft-mssql

+

Microsoft SQL Server (MSSQL)

+

To install, run:

+
pip install 'apache-airflow-providers-microsoft-mssql'
+
+
+
+
Available versions
+

3.3.1, 3.3.0, 3.2.1, 3.2.0, 3.1.0, 3.0.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.1, 2.0.0, 1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.microsoft.mssql

+
+
+
+
+

apache-airflow-providers-microsoft-psrp

+

This package provides remote execution capabilities via the +PowerShell Remoting Protocol (PSRP).

+

To install, run:

+
pip install 'apache-airflow-providers-microsoft-psrp'
+
+
+
+
Available versions
+

2.1.0, 2.0.0, 1.1.4, 1.1.3, 1.1.2, 1.1.1, 1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.microsoft.psrp

+
+
+
+
+

apache-airflow-providers-microsoft-winrm

+

Windows Remote Management (WinRM)

+

To install, run:

+
pip install 'apache-airflow-providers-microsoft-winrm'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.5, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.2.0, 1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.microsoft.winrm

+
+
+
+
+

apache-airflow-providers-mongo

+

MongoDB

+

To install, run:

+
pip install 'apache-airflow-providers-mongo'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.3.3, 2.3.2, 2.3.1, 2.3.0, 2.2.0, 2.1.0, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.mongo

+
+
+
+
+

apache-airflow-providers-mysql

+

MySQL

+

To install, run:

+
pip install 'apache-airflow-providers-mysql'
+
+
+
+
Available versions
+

3.4.0, 3.3.0, 3.2.1, 3.2.0, 3.1.0, 3.0.0, 2.2.3, 2.2.2, 2.2.1, 2.2.0, 2.1.1, 2.1.0, 2.0.0, 1.1.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.mysql

+
+
+
+
+

apache-airflow-providers-neo4j

+

Neo4j

+

To install, run:

+
pip install 'apache-airflow-providers-neo4j'
+
+
+
+
Available versions
+

3.2.1, 3.2.0, 3.1.0, 3.0.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.neo4j

+
+
+
+
+

apache-airflow-providers-odbc

+

ODBC

+

To install, run:

+
pip install 'apache-airflow-providers-odbc'
+
+
+
+
Available versions
+

3.2.1, 3.2.0, 3.1.2, 3.1.1, 3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.odbc

+
+
+
+
+

apache-airflow-providers-openfaas

+

OpenFaaS

+

To install, run:

+
pip install 'apache-airflow-providers-openfaas'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.1.1, 1.1.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.openfaas

+
+
+
+
+

apache-airflow-providers-opsgenie

+

Opsgenie

+

To install, run:

+
pip install 'apache-airflow-providers-opsgenie'
+
+
+
+
Available versions
+

5.0.0, 4.0.0, 3.1.0, 3.0.3, 3.0.2, 3.0.1, 3.0.0, 2.0.1, 2.0.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.opsgenie

+
+
+
+
+

apache-airflow-providers-oracle

+

Oracle

+

To install, run:

+
pip install 'apache-airflow-providers-oracle'
+
+
+
+
Available versions
+

3.5.1, 3.5.0, 3.4.0, 3.3.0, 3.2.0, 3.1.0, 3.0.0, 2.2.3, 2.2.2, 2.2.1, 2.2.0, 2.1.0, 2.0.1, 2.0.0, 1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.oracle

+
+
+
+
+

apache-airflow-providers-pagerduty

+

Pagerduty

+

To install, run:

+
pip install 'apache-airflow-providers-pagerduty'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.pagerduty

+
+
+
+
+

apache-airflow-providers-papermill

+

Papermill

+

To install, run:

+
pip install 'apache-airflow-providers-papermill'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.2.3, 2.2.2, 2.2.1, 2.2.0, 2.1.0, 2.0.1, 2.0.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.papermill

+
+
+
+
+

apache-airflow-providers-plexus

+

Plexus

+

To install, run:

+
pip install 'apache-airflow-providers-plexus'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.plexus

+
+
+
+
+

apache-airflow-providers-postgres

+

PostgreSQL

+

To install, run:

+
pip install 'apache-airflow-providers-postgres'
+
+
+
+
Available versions
+

5.3.1, 5.3.0, 5.2.2, 5.2.1, 5.2.0, 5.1.0, 5.0.0, 4.1.0, 4.0.1, 4.0.0, 3.0.0, 2.4.0, 2.3.0, 2.2.0, 2.1.0, 2.0.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.postgres

+
+
+
+
+

apache-airflow-providers-presto

+

Presto

+

To install, run:

+
pip install 'apache-airflow-providers-presto'
+
+
+
+
Available versions
+

4.2.0, 4.1.0, 4.0.1, 4.0.0, 3.1.0, 3.0.0, 2.2.1, 2.2.0, 2.1.2, 2.1.1, 2.1.0, 2.0.1, 2.0.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.presto

+
+
+
+
+

apache-airflow-providers-qubole

+

Qubole

+

To install, run:

+
pip install 'apache-airflow-providers-qubole'
+
+
+
+
Available versions
+

3.3.1, 3.3.0, 3.2.1, 3.2.0, 3.1.0, 3.0.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.1, 2.0.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.qubole

+
+
+
+
+

apache-airflow-providers-redis

+

Redis

+

To install, run:

+
pip install 'apache-airflow-providers-redis'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.redis

+
+
+
+
+

apache-airflow-providers-salesforce

+

Salesforce

+

To install, run:

+
pip install 'apache-airflow-providers-salesforce'
+
+
+
+
Available versions
+

5.2.0, 5.1.0, 5.0.0, 4.0.0, 3.4.4, 3.4.3, 3.4.2, 3.4.1, 3.4.0, 3.3.0, 3.2.0, 3.1.0, 3.0.0, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.salesforce

+
+
+
+
+

apache-airflow-providers-samba

+

Samba

+

To install, run:

+
pip install 'apache-airflow-providers-samba'
+
+
+
+
Available versions
+

4.1.0, 4.0.0, 3.0.4, 3.0.3, 3.0.2, 3.0.1, 3.0.0, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.samba

+
+
+
+
+

apache-airflow-providers-segment

+

Segment

+

To install, run:

+
pip install 'apache-airflow-providers-segment'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.segment

+
+
+
+
+

apache-airflow-providers-sendgrid

+

Sendgrid

+

To install, run:

+
pip install 'apache-airflow-providers-sendgrid'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.sendgrid

+
+
+
+
+

apache-airflow-providers-sftp

+

SSH File Transfer Protocol (SFTP)

+

To install, run:

+
pip install 'apache-airflow-providers-sftp'
+
+
+
+
Available versions
+

4.2.0, 4.1.0, 4.0.0, 3.0.0, 2.6.0, 2.5.2, 2.5.1, 2.5.0, 2.4.1, 2.4.0, 2.3.0, 2.2.0, 2.1.1, 2.1.0, 2.0.0, 1.2.0, 1.1.1, 1.1.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.sftp

+
+
+
+
+

apache-airflow-providers-singularity

+

Singularity

+

To install, run:

+
pip install 'apache-airflow-providers-singularity'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.singularity

+
+
+
+
+

apache-airflow-providers-slack

+

Slack

+

To install, run:

+
pip install 'apache-airflow-providers-slack'
+
+
+
+
Available versions
+

7.1.0, 7.0.0, 6.0.0, 5.1.0, 5.0.0, 4.2.3, 4.2.2, 4.2.1, 4.2.0, 4.1.0, 4.0.1, 4.0.0, 3.0.0, 2.0.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.slack

+
+
+
+
+

apache-airflow-providers-snowflake

+

Snowflake

+

To install, run:

+
pip install 'apache-airflow-providers-snowflake'
+
+
+
+
Available versions
+

4.0.2, 4.0.1, 4.0.0, 3.3.0, 3.2.0, 3.1.0, 3.0.0, 2.7.0, 2.6.0, 2.5.2, 2.5.1, 2.5.0, 2.4.0, 2.3.1, 2.3.0, 2.2.0, 2.1.1, 2.1.0, 2.0.0, 1.3.0, 1.2.0, 1.1.1, 1.1.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.snowflake

+
+
+
+
+

apache-airflow-providers-sqlite

+

SQLite

+

To install, run:

+
pip install 'apache-airflow-providers-sqlite'
+
+
+
+
Available versions
+

3.3.1, 3.3.0, 3.2.1, 3.2.0, 3.1.0, 3.0.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.1, 2.0.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.sqlite

+
+
+
+
+

apache-airflow-providers-ssh

+

Secure Shell (SSH)

+

To install, run:

+
pip install 'apache-airflow-providers-ssh'
+
+
+
+
Available versions
+

3.3.0, 3.2.0, 3.1.0, 3.0.0, 2.4.4, 2.4.3, 2.4.2, 2.4.1, 2.4.0, 2.3.0, 2.2.0, 2.1.1, 2.1.0, 2.0.0, 1.3.0, 1.2.0, 1.1.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.ssh

+
+
+
+
+

apache-airflow-providers-tableau

+

Tableau

+

To install, run:

+
pip install 'apache-airflow-providers-tableau'
+
+
+
+
Available versions
+

4.0.0, 3.0.1, 3.0.0, 2.1.8, 2.1.7, 2.1.6, 2.1.5, 2.1.4, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.tableau

+
+
+
+
+

apache-airflow-providers-tabular

+

Tabular

+

To install, run:

+
pip install 'apache-airflow-providers-tabular'
+
+
+
+
Available versions
+

1.1.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.tabular

+
+
+
+
+

apache-airflow-providers-telegram

+

Telegram

+

To install, run:

+
pip install 'apache-airflow-providers-telegram'
+
+
+
+
Available versions
+

3.1.0, 3.0.0, 2.0.4, 2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.0.2, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.telegram

+
+
+
+
+

apache-airflow-providers-trino

+

Trino

+

To install, run:

+
pip install 'apache-airflow-providers-trino'
+
+
+
+
Available versions
+

4.3.0, 4.2.0, 4.1.0, 4.0.1, 4.0.0, 3.1.0, 3.0.0, 2.3.0, 2.2.0, 2.1.2, 2.1.1, 2.1.0, 2.0.2, 2.0.1, 2.0.0, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.trino

+
+
+
+
+

apache-airflow-providers-vertica

+

Vertica

+

To install, run:

+
pip install 'apache-airflow-providers-vertica'
+
+
+
+
Available versions
+

3.3.1, 3.3.0, 3.2.1, 3.2.0, 3.1.0, 3.0.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.vertica

+
+
+
+
+

apache-airflow-providers-yandex

+

Yandex including Yandex.Cloud

+

To install, run:

+
pip install 'apache-airflow-providers-yandex'
+
+
+
+
Available versions
+

3.2.0, 3.1.0, 3.0.0, 2.2.3, 2.2.2, 2.2.1, 2.2.0, 2.1.0, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.yandex

+
+
+
+
+

apache-airflow-providers-zendesk

+

Zendesk

+

To install, run:

+
pip install 'apache-airflow-providers-zendesk'
+
+
+
+
Available versions
+

4.2.0, 4.1.0, 4.0.0, 3.0.3, 3.0.2, 3.0.1, 3.0.0, 2.0.1, 2.0.0, 1.0.1, 1.0.0.

+
+
Reference
+

PyPI Repository

+
+
Python API Reference
+

airflow.providers.zendesk

+
+
+
+
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/search.html b/docs-archive/apache-airflow-providers/search.html new file mode 100644 index 00000000000..25d83a4d331 --- /dev/null +++ b/docs-archive/apache-airflow-providers/search.html @@ -0,0 +1,814 @@ + + + + + + + + + + + + Search — apache-airflow-providers Documentation + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+
+ + + + + +
+
+ + + + + + + + +
+
+
+
+ +
+ + +
+ +
+
+ + + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + + + +
+
+
+
+
+ +

Search

+ + + + +

+ Searching for multiple words only shows matches that contain + all words. +

+ + +
+ + + +
+ + + +
+ +
+ + + +
+ +
+
+
+
+
+

Was this entry helpful?

+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs-archive/apache-airflow-providers/searchindex.js b/docs-archive/apache-airflow-providers/searchindex.js new file mode 100644 index 00000000000..573a63f39c9 --- /dev/null +++ b/docs-archive/apache-airflow-providers/searchindex.js @@ -0,0 +1 @@ +Search.setIndex({"docnames": ["core-extensions/auth-backends", "core-extensions/connections", "core-extensions/extra-links", "core-extensions/index", "core-extensions/logging", "core-extensions/secrets-backends", "howto/create-update-providers", "index", "installing-from-pypi", "installing-from-sources", "operators-and-hooks-ref/apache", "operators-and-hooks-ref/aws", "operators-and-hooks-ref/azure", "operators-and-hooks-ref/google", "operators-and-hooks-ref/index", "operators-and-hooks-ref/protocol", "operators-and-hooks-ref/services", "operators-and-hooks-ref/software", "packages-ref"], "filenames": ["core-extensions/auth-backends.rst", "core-extensions/connections.rst", "core-extensions/extra-links.rst", "core-extensions/index.rst", "core-extensions/logging.rst", "core-extensions/secrets-backends.rst", "howto/create-update-providers.rst", "index.rst", "installing-from-pypi.rst", "installing-from-sources.rst", "operators-and-hooks-ref/apache.rst", "operators-and-hooks-ref/aws.rst", "operators-and-hooks-ref/azure.rst", "operators-and-hooks-ref/google.rst", "operators-and-hooks-ref/index.rst", "operators-and-hooks-ref/protocol.rst", "operators-and-hooks-ref/services.rst", "operators-and-hooks-ref/software.rst", "packages-ref.rst"], "titles": ["Auth backends", "Connections", "Extra Links", "Core Extensions", "Writing logs", "Secret backends", "Community Providers", "Provider packages", "Installation from PyPI", "Installing Providers from Sources", "ASF: Apache Software Foundation", "AWS: Amazon Web Services", "Azure: Microsoft Azure", "Google", "Operators and Hooks Reference", "Protocol integrations", "Services", "Software integrations", "Providers packages reference"], "terms": {"thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "summari": [0, 1, 2, 4, 5, 7], "all": [0, 1, 2, 4, 5, 6, 7, 11, 13], "apach": [0, 2, 3, 4, 5, 6, 7, 8, 9, 12, 14, 16], "airflow": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "commun": [0, 1, 2, 4, 5, 15], "provid": [0, 1, 2, 3, 4, 5, 8, 10, 11, 12, 13, 15, 16, 17], "implement": [0, 1, 2, 3, 4, 5, 6, 7], "authent": [0, 7, 12], "expos": [0, 1, 2, 4, 5, 7], "via": [0, 1, 2, 4, 5, 7, 8, 9, 18], "manag": [0, 1, 2, 4, 5, 7, 8, 9, 14, 18], "": [0, 5, 6, 7, 9, 12, 18], "web": [0, 7, 14, 18], "server": [0, 3, 7, 9, 14, 18], "api": [0, 7, 10, 11, 12, 14, 15, 16, 17, 18], "base": [0, 6, 11, 12, 13], "flask": 0, "applic": 0, "builder": 0, "capabl": [0, 5, 7, 18], "you": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17], "can": [0, 1, 2, 3, 4, 5, 6, 7, 9, 13], "read": [0, 5, 6, 7], "more": [0, 6, 7, 8], "about": [0, 6, 7, 9], "those": [0, 1, 4, 5, 6, 7, 8], "fab": 0, "secur": [0, 14, 18], "doc": [0, 6], "also": [0, 1, 2, 4, 5, 6, 7, 9, 13], "take": [0, 5], "look": [0, 5, 6, 7, 8], "avail": [0, 2, 4, 5, 6, 7, 14, 18], "core": [0, 4, 5, 14], "webserv": 0, "see": [0, 1, 2, 4, 5, 6, 7, 8, 13], "google_openid": 0, "devel": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "2": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "5": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "0": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "dev0": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "an": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "experiment": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "featur": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "extend": [1, 2, 3], "custom": [1, 2, 5, 6], "each": [1, 2, 6, 7], "defin": [1, 2, 6, 7], "own": [1, 2, 5, 6], "paramet": [1, 6], "ui": [1, 6, 7], "field": [1, 7], "behaviour": [1, 7], "when": [1, 6, 7, 8], "type": [1, 6, 13], "us": [1, 3, 8, 9, 13, 15, 17], "automat": [1, 6, 7], "creat": [1, 10], "hook": [1, 6, 7, 10, 11, 12, 15, 16, 17], "specif": [1, 3, 7], "The": [1, 2, 6, 7, 9], "explain": [1, 2, 6, 7], "airbytehook": 1, "oss": 1, "osshook": 1, "aw": [1, 7, 10, 13, 14, 15, 16, 17, 18], "awsgenerichook": 1, "emr": [1, 14], "emrhook": 1, "redshift": [1, 14], "redshiftsqlhook": 1, "cassandrahook": 1, "drillhook": 1, "druiddbapihook": 1, "hdfshook": 1, "hive_cli": 1, "hiveclihook": 1, "hiveserver2": 1, "hiveserver2hook": 1, "hive_metastor": 1, "hivemetastorehook": 1, "livyhook": 1, "pig_cli": 1, "pigclihook": 1, "spark_jdbc": [1, 10], "sparkjdbchook": 1, "spark_sql": [1, 10], "sparksqlhook": 1, "sparksubmithook": 1, "sqoophook": 1, "arangodbhook": 1, "asanahook": 1, "jirahook": 1, "cloudanthook": 1, "kuberneteshook": 1, "databrickshook": 1, "dbt_cloud": 1, "dbtcloudhook": 1, "dingdinghook": 1, "discordwebhookhook": 1, "dockerhook": 1, "elasticsearchhook": 1, "exasolhook": 1, "facebook_soci": 1, "facebookadsreportinghook": 1, "ftphook": 1, "githubhook": 1, "google_cloud_platform": [1, 7], "googlebasehook": [1, 13], "dataprep": 1, "googledataprephook": 1, "gcpcloudsql": 1, "cloudsqlhook": 1, "gcpcloudsqldb": 1, "cloudsqldatabasehook": 1, "gcpbigqueri": 1, "bigqueryhook": 1, "gcpssh": 1, "computeenginesshhook": 1, "leveldb": [1, 14, 18], "leveldbhook": 1, "grpchook": 1, "vault": [1, 14, 18], "vaulthook": 1, "httphook": 1, "imaphook": 1, "influxdbhook": 1, "jdbchook": 1, "jenkinshook": 1, "azurebasehook": 1, "azure_data_explor": 1, "azuredataexplorerhook": 1, "azure_batch": 1, "azurebatchhook": 1, "azure_cosmo": 1, "azurecosmosdbhook": 1, "azure_data_lak": 1, "azuredatalakehook": 1, "azure_fileshar": 1, "azurefilesharehook": 1, "azure_container_volum": 1, "azurecontainervolumehook": 1, "azure_container_inst": 1, "azurecontainerinstancehook": 1, "wasb": [1, 12], "wasbhook": 1, "azure_data_factori": 1, "azuredatafactoryhook": 1, "azure_container_registri": 1, "azurecontainerregistryhook": 1, "azure_service_bu": 1, "baseazureservicebushook": 1, "azure_synaps": 1, "azuresynapsehook": 1, "mssqlhook": 1, "mongo": [1, 17], "mongohook": 1, "mysqlhook": 1, "neo4jhook": 1, "odbchook": 1, "opsgeniealerthook": 1, "oraclehook": 1, "pagerdutyhook": 1, "pagerduty_ev": [1, 16], "pagerdutyeventshook": 1, "postgr": [1, 17], "postgreshook": 1, "prestohook": 1, "qubolehook": 1, "redishook": 1, "salesforcehook": 1, "sambahook": 1, "segmenthook": 1, "sftphook": 1, "slackhook": 1, "slackwebhook": 1, "slackwebhookhook": 1, "snowflakehook": 1, "sqlitehook": 1, "sshhook": 1, "tableauhook": 1, "tabularhook": 1, "trinohook": 1, "verticahook": 1, "yandexcloud": 1, "yandexcloudbasehook": 1, "zendeskhook": 1, "oper": [2, 6, 7, 10, 11, 12, 15, 16, 17], "For": [2, 6, 7, 9], "its": [2, 5, 7], "redirect": 2, "user": [2, 6, 7, 9], "extern": [2, 6, 7], "system": [2, 7, 14, 18], "button": 2, "task": [2, 4, 7], "page": [2, 7, 8, 9], "ar": [2, 6, 7, 8, 9, 11, 12, 13, 14], "here": [2, 3, 4, 5, 7, 14, 18], "batchjobdefinitionlink": 2, "batchjobdetailslink": 2, "batchjobqueuelink": 2, "emrclusterlink": 2, "cloudwatcheventslink": 2, "databricksjobrunlink": 2, "dbtcloudrunjoboperatorlink": 2, "bigqueryconsolelink": 2, "bigqueryconsoleindexablelink": 2, "aiplatformconsolelink": 2, "dataformrepositorylink": 2, "dataformworkspacelink": 2, "dataformworkflowinvocationlink": 2, "datafusioninstancelink": 2, "datafusionpipelinelink": 2, "datafusionpipelineslink": 2, "cloudsqlinstancelink": 2, "cloudsqlinstancedatabaselink": 2, "dataplextasklink": 2, "dataplextaskslink": 2, "dataplexlakelink": 2, "bigquerydatasetlink": 2, "bigquerytablelink": 2, "bigquerydatatransferconfiglink": 2, "computeinstancedetailslink": 2, "computeinstancetemplatedetailslink": 2, "computeinstancegroupmanagerdetailslink": 2, "cloudtasksqueuelink": 2, "cloudtaskslink": 2, "datacatalogentrygrouplink": 2, "datacatalogentrylink": 2, "datacatalogtagtemplatelink": 2, "dataproclink": 2, "dataproclistlink": 2, "dataprocmetastoredetailedlink": 2, "dataprocmetastorelink": 2, "dataprepflowlink": 2, "dataprepjobgrouplink": 2, "vertexaimodellink": 2, "vertexaimodellistlink": 2, "vertexaimodelexportlink": 2, "vertexaitraininglink": 2, "vertexaitrainingpipelineslink": 2, "vertexaidatasetlink": 2, "vertexaidatasetlistlink": 2, "vertexaihyperparametertuningjoblistlink": 2, "vertexaibatchpredictionjoblink": 2, "vertexaibatchpredictionjoblistlink": 2, "vertexaiendpointlink": 2, "vertexaiendpointlistlink": 2, "workflowsworkflowdetailslink": 2, "workflowslistofworkflowslink": 2, "workflowsexecutionlink": 2, "cloudcomposerenvironmentlink": 2, "cloudcomposerenvironmentslink": 2, "dataflowjoblink": 2, "clouddatastoreimportexportlink": 2, "clouddatastoreentitieslink": 2, "bigtableinstancelink": 2, "bigtableclusterlink": 2, "bigtabletableslink": 2, "spannerdatabaselink": 2, "spannerinstancelink": 2, "stackdrivernotificationslink": 2, "stackdriverpolicieslink": 2, "kubernetesengineclusterlink": 2, "kubernetesenginepodlink": 2, "pubsubsubscriptionlink": 2, "pubsubtopiclink": 2, "memcachedinstancedetailslink": 2, "memcachedinstancelistlink": 2, "redisinstancedetailslink": 2, "redisinstancelistlink": 2, "cloudbuildlink": 2, "cloudbuildlistlink": 2, "cloudbuildtriggerslistlink": 2, "cloudbuildtriggerdetailslink": 2, "lifescienceslink": 2, "cloudfunctionsdetailslink": 2, "cloudfunctionslistlink": 2, "cloudstoragetransferlistlink": 2, "cloudstoragetransferjoblink": 2, "cloudstoragetransferdetailslink": 2, "clouddlpdeidentifytemplateslistlink": 2, "clouddlpdeidentifytemplatedetailslink": 2, "clouddlpjobtriggerslistlink": 2, "clouddlpjobtriggerdetailslink": 2, "clouddlpjobslistlink": 2, "clouddlpjobdetailslink": 2, "clouddlpinspecttemplateslistlink": 2, "clouddlpinspecttemplatedetailslink": 2, "clouddlpinfotypeslistlink": 2, "clouddlpinfotypedetailslink": 2, "clouddlppossibleinfotypeslistlink": 2, "mlenginemodellink": 2, "mlenginemodelslistlink": 2, "mlenginejobdetailslink": 2, "mlenginejobslistlink": 2, "mlenginemodelversiondetailslink": 2, "storagelink": 2, "filedetailslink": 2, "azuredatafactorypipelinerunlink": 2, "qdslink": 2, "list": [3, 6, 7, 14, 18], "function": [3, 14], "thei": [3, 6, 7, 8, 18], "certain": [3, 7], "auth": 3, "backend": 3, "googl": [3, 6, 7, 9, 14], "connect": [3, 5, 6, 9, 13, 14, 18], "airbyt": [3, 9, 14], "alibaba": [3, 9], "amazon": [3, 7, 9, 14], "cassandra": [3, 9, 14], "drill": [3, 9, 14], "druid": [3, 9, 14], "hdf": [3, 9, 14], "hive": [3, 9, 14], "livi": [3, 9, 14], "pig": [3, 9, 14], "spark": [3, 9, 14], "sqoop": [3, 9, 14], "arangodb": [3, 9, 14], "asana": [3, 9, 14], "atlassian": [3, 9, 14], "jira": [3, 9, 14], "ibm": [3, 9, 14, 18], "cloudant": [3, 9, 14], "kubernet": [3, 9, 14], "databrick": [3, 9, 14], "dbt": [3, 9], "cloud": [3, 4, 7, 9, 14], "dingd": [3, 9, 14], "discord": [3, 9, 14], "docker": [3, 6, 9, 14], "elasticsearch": [3, 9, 14], "exasol": [3, 9, 14], "facebook": [3, 9, 14], "file": [3, 6, 7, 9, 14, 18], "transfer": [3, 6, 7, 9, 14, 18], "protocol": [3, 9, 14, 18], "ftp": [3, 9, 14], "github": [3, 6, 9, 14], "grpc": [3, 9, 14], "hashicorp": [3, 9, 14], "hypertext": [3, 9, 14, 18], "http": [3, 6, 7, 8, 9, 14], "internet": [3, 9, 14, 18], "messag": [3, 9, 14, 18], "access": [3, 6, 7, 9, 14, 18], "imap": [3, 9, 14], "influxdb": [3, 9, 14], "java": [3, 9, 14, 18], "databas": [3, 5, 7, 9, 14, 18], "jdbc": [3, 9, 14], "jenkin": [3, 9, 14], "microsoft": [3, 9, 14], "azur": [3, 9, 14], "sql": [3, 9, 14], "mssql": [3, 7, 9, 14], "mongodb": [3, 9, 14, 18], "mysql": [3, 9, 14], "neo4j": [3, 6, 9, 14], "odbc": [3, 9, 14], "opsgeni": [3, 9, 14], "oracl": [3, 9, 14], "pagerduti": [3, 9, 14], "postgresql": [3, 9, 14, 18], "presto": [3, 9, 14], "qubol": [3, 9, 14], "redi": [3, 9, 14], "salesforc": [3, 9, 14], "samba": [3, 9, 14], "segment": [3, 9, 14], "sftp": [3, 9, 14], "slack": [3, 9, 14], "snowflak": [3, 9, 14], "sqlite": [3, 9, 14], "ssh": [3, 9, 14], "tableau": [3, 9, 14], "tabular": [3, 9, 14], "trino": [3, 9, 14], "vertica": [3, 9, 14], "yandex": [3, 9, 14], "zendesk": [3, 9, 14], "extra": [3, 6], "link": [3, 6], "write": [3, 7], "log": [3, 6, 14], "secret": 3, "option": [4, 7], "osstaskhandl": 4, "s3taskhandl": 4, "cloudwatchtaskhandl": 4, "elasticsearchtaskhandl": 4, "platform": [4, 14, 18], "gcstaskhandl": 4, "stackdrivertaskhandl": 4, "blob": [4, 14], "storag": [4, 14], "wasbtaskhandl": 4, "ha": [5, 6, 7, 11, 12, 13], "variabl": [5, 7], "configur": [5, 6, 7, 13], "from": [5, 6, 7, 10, 11, 12, 13], "rather": [5, 6, 7], "than": [5, 6, 7], "while": [5, 6, 7, 8], "store": 5, "inform": [5, 6, 7], "possibl": [5, 6, 7], "mani": [5, 7], "enterpris": 5, "alreadi": [5, 6, 9], "have": [5, 7], "some": [5, 6, 7, 8, 12, 13], "tap": 5, "servic": [5, 6, 7, 14, 18], "integr": [5, 7, 10, 11, 12, 13, 14, 16, 18], "ones": [5, 6], "secretsmanagerbackend": 5, "systemsmanagerparameterstorebackend": 5, "cloudsecretmanagerbackend": 5, "vaultbackend": 5, "azurekeyvaultbackend": 5, "gather": 6, "necessari": 6, "step": [6, 7, 9, 14], "guidelin": 6, "exist": [6, 7], "should": [6, 7, 8, 9], "awar": 6, "mai": 6, "distinct": 6, "cover": [6, 7], "guid": [6, 9, 10, 11, 12, 13, 15, 16, 17], "sequenc": 6, "describ": [6, 7, 8], "wa": [6, 7], "design": [6, 7], "meet": 6, "most": [6, 7, 9], "linear": 6, "flow": 6, "order": [6, 7], "develop": [6, 7, 10], "anoth": 6, "recommend": [6, 9], "help": 6, "work": [6, 7], "similar": 6, "your": [6, 8], "That": [6, 7], "wai": [6, 7], "set": 6, "up": 6, "other": [6, 7, 8, 14], "depend": [6, 7], "first": [6, 7], "need": [6, 7, 8], "local": [6, 7, 14], "environ": [6, 7], "contribut": [6, 7], "quick": 6, "start": [6, 7], "did": 6, "yet": 6, "we": [6, 7], "breez": 6, "easili": [6, 7], "abl": [6, 7], "one": [6, 7, 9], "execut": [6, 18], "ci": 6, "workflow": [6, 8], "abov": [6, 7], "contain": [6, 7, 14], "These": [6, 10, 11, 12, 13, 15, 16, 17], "intern": [6, 7], "volum": 6, "In": [6, 7], "chang": [6, 7], "made": [6, 9], "id": [6, 7, 9], "appli": [6, 7], "insid": 6, "carri": 6, "out": 6, "quickli": 6, "our": [6, 7], "exampl": [6, 7, 8, 9, 13], "name": [6, 7], "new_provid": 6, "placehold": 6, "must": 6, "like": [6, 7, 8], "version": [6, 7, 8, 9, 18], "now": 6, "project": [6, 7], "below": [6, 7, 8, 9], "structur": [6, 7], "understand": 6, "compon": [6, 7], "If": [6, 7, 8], "still": 6, "doubt": 6, "build": [6, 7], "open": 6, "issu": 6, "so": [6, 7], "__init__": 6, "py": [6, 7], "example_dag": 6, "example_": 6, "test_": 6, "_system": 6, "consid": [6, 7], "ll": 6, "run": [6, 7, 9, 18], "my": [6, 7], "root": 6, "fafd8d630e46": 6, "opt": 6, "python": [6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18], "m": 6, "pytest": 6, "import": [6, 7, 9], "part": [6, 7], "occur": 6, "pre": 6, "commit": 6, "instal": [6, 18], "rst": [6, 7], "setup": [6, 7], "spelling_wordlist": 6, "txt": [6, 8], "packag": [6, 8], "ref": 6, "logo": 6, "png": 6, "index": [6, 7], "yaml": 6, "changelog": 6, "releas": [6, 7, 14], "There": [6, 7, 9], "chanc": 6, "common": [6, 9, 14], "english": 6, "word": 6, "case": [6, 7], "add": [6, 7], "begin": 6, "capit": 6, "lowercas": 6, "second": 6, "block": 6, "namespac": 6, "nextdoor": 6, "line": [6, 7], "none": 6, "notfound": 6, "nullabl": 6, "neq": 6, "networkuri": 6, "nginx": 6, "nobr": 6, "nodash": 6, "under": [6, 7], "kei": [6, 9], "doesn": 6, "t": [6, 7], "ani": [6, 7], "empti": 6, "It": [6, 7, 9], "addit": [6, 7], "_howto": 6, "newprovideroper": 6, "class": [6, 7], "do": [6, 7, 8, 9], "someth": [6, 7], "amaz": 6, "requir": [6, 7, 8], "connection_id": 6, "awesom": 6, "exampleinclud": 6, "languag": 6, "after": [6, 7], "howto_operator_": 6, "end": [6, 7], "befor": [6, 7], "purpos": [6, 7], "check": [6, 7, 9, 16], "complet": 6, "best": [6, 7], "descript": [6, 7], "io": 6, "__": 6, "1": [6, 9, 18], "url": [6, 7], "www": 6, "tag": 6, "modul": [6, 7], "newproviderhook": 6, "deprec": [6, 7], "onli": [6, 7, 8], "behavior": 6, "howev": [6, 7], "support": [6, 8, 10, 11, 12, 13], "target": [6, 7, 10, 11, 12, 13, 15, 16, 17], "arrai": [6, 7], "allow": [6, 7, 10, 11, 12, 13, 15, 16, 17], "optim": [6, 7], "individu": [6, 7], "handl": [6, 7], "both": [6, 7], "definit": [6, 7], "two": [6, 7], "command": [6, 7, 8], "serv": 6, "accomplish": 6, "ensur": 6, "main": [6, 7, 9], "involv": 6, "filter": 6, "3": [6, 7, 8, 18], "might": [6, 7], "which": [6, 7, 12], "librari": 6, "Such": 6, "typic": [6, 8], "result": 6, "importerror": 6, "error": 6, "silent": 6, "ignor": 6, "pollut": 6, "fals": 6, "warn": [6, 9], "veri": [6, 7], "bad": 6, "pattern": 6, "tend": 6, "turn": [6, 7], "blind": 6, "spot": 6, "avoid": 6, "encourag": 6, "until": 6, "had": 6, "mechan": [6, 7], "select": [6, 9], "known": 6, "come": [6, 7, 8], "actual": 6, "lead": 6, "even": 6, "without": [6, 7], "give": [6, 7], "clue": 6, "miss": 6, "except": 6, "optionalproviderfeatureexcept": 6, "been": [6, 7], "introduc": [6, 7], "signal": 6, "providersmanag": 6, "would": [6, 7], "remain": 6, "compat": [6, 7], "continu": 6, "throw": 6, "plyvel": 6, "condit": 6, "keep": [6, 7], "try": [6, 7], "db": [6, 14], "airflowexcept": 6, "basehook": 6, "e": [6, 7], "As": [6, 7], "airflowoptionalproviderfeatureexcept": 6, "backward": [6, 7], "cannot": 6, "origin": 6, "rais": 6, "remov": [6, 7], "ad": [6, 7, 14, 18], "assign": 6, "uniqu": [6, 7], "mean": [6, 7], "want": [6, 7], "retriev": [6, 7], "calcul": 6, "alwai": [6, 7], "ti_kei": 6, "pass": 6, "get_valu": 6, "earlier": [6, 7], "note": [6, 7], "def": [6, 7], "get_link": 6, "self": [6, 9], "baseoper": 6, "dttm": 6, "datetim": 6, "taskinstancekei": 6, "job_id": 6, "els": 6, "assert": 6, "get_on": 6, "dag_id": 6, "dag": [6, 7, 13], "task_id": 6, "execution_d": 6, "len": 6, "bigquery_job_details_link_fmt": 6, "format": [6, 7, 8], "achiev": 6, "instanc": [6, 14], "pokereturnvalu": 6, "object": [6, 7], "poke": 6, "method": 6, "sensorwithxcomvalu": 6, "basesensoroper": 6, "context": 6, "union": 6, "bool": 6, "is_don": 6, "true": 6, "stop": [6, 7], "xcom_valu": 6, "push": 6, "To": [6, 9, 13, 16, 17, 18], "explicitli": 6, "ti": 6, "xcom_push": 6, "xcom_kei": 6, "built": 7, "modular": 7, "schedul": 7, "basic": 7, "call": 7, "sensor": 7, "multitud": 7, "new": 7, "separ": 7, "interfac": [7, 15], "given": 7, "60": 7, "free": 7, "exactli": 7, "same": [7, 8], "written": 7, "share": [7, 8], "full": 7, "refer": 7, "solid": 7, "discov": 7, "onc": 7, "re": 7, "becom": 7, "extens": [7, 13], "public": 7, "privat": 7, "form": 7, "deliv": 7, "visibl": 7, "detail": 7, "view": 7, "By": [7, 9], "default": 7, "save": 7, "make": 7, "them": [7, 8], "where": 7, "remot": [7, 9, 14, 18], "logger": 7, "were": 7, "latest": 7, "particular": 7, "downgrad": 7, "previou": [7, 9], "problem": 7, "impact": 7, "increment": 7, "independ": [7, 14], "valid": [7, 9], "updat": 7, "follow": [7, 9], "usual": 7, "test": 7, "capac": 7, "matter": 7, "third": 7, "parti": 7, "chapter": 7, "point": 7, "multipl": 7, "semver": 7, "scheme": 7, "gener": 7, "approach": 7, "unless": 7, "good": [7, 9], "reason": 7, "recent": 7, "x": 7, "vari": 7, "per": 7, "limit": [7, 12], "constrain": 7, "includ": [7, 8, 18], "correspond": 7, "togeth": 7, "correct": [7, 9], "constraint": [7, 8], "appropri": [7, 8], "cross": 7, "well": [7, 9], "simpli": 7, "enabl": [7, 18], "often": 7, "between": 7, "differ": [7, 9], "again": 7, "kind": 7, "break": 7, "document": [7, 10, 11, 12, 13, 14, 15, 16, 17], "everi": 7, "could": 7, "back": 7, "port": 7, "last": 7, "done": 7, "march": 7, "17": 7, "2021": [7, 9], "longer": 7, "sinc": 7, "reach": 7, "Of": 7, "life": 7, "june": 7, "standard": [7, 15], "moreov": 7, "mention": 7, "just": 7, "right": [7, 8], "meta": 7, "data": [7, 10, 14, 15, 16], "entri": 7, "apache_airflow_provid": 7, "callabl": 7, "return": 7, "dictionari": 7, "discover": 7, "json": 7, "schema": 7, "displai": [7, 14], "cli": 7, "human": 7, "friendli": 7, "revers": 7, "chronolog": 7, "current": [7, 8], "taken": 7, "provider_info": 7, "replac": 7, "queri": 7, "verifi": [7, 9], "properli": 7, "recogn": 7, "whether": 7, "sub": 7, "convent": 7, "possibli": 7, "beyond": 7, "practic": 7, "time": 7, "autom": 7, "semi": 7, "verif": 7, "go": 7, "reli": 7, "manual": 7, "advis": 7, "stage": 7, "choic": 7, "either": 7, "round": 7, "probabl": 7, "safer": 7, "older": 7, "lightli": 7, "fine": 7, "am": 7, "scope": 7, "later": 7, "incompat": 7, "speak": 7, "major": 7, "modif": 7, "long": 7, "anyth": 7, "special": 7, "besid": 7, "anyon": 7, "who": 7, "what": [7, 18], "cfg": 7, "tell": 7, "get": [7, 9], "metadata": 7, "sure": 7, "pypi": [7, 9, 18], "compliant": 7, "runtim": 7, "sever": 7, "org": [7, 9], "draft": 7, "07": 7, "properti": 7, "repositori": [7, 18], "string": 7, "item": 7, "favour": 7, "perform": [7, 10, 11, 12, 13, 15, 16, 17], "deprecatedvers": 7, "map": 7, "handler": 7, "decor": 7, "taskflow": 7, "path": 7, "entry_point": 7, "get_provider_info": 7, "myproviderpackag": 7, "somemodul": 7, "sourc": [7, 10, 11, 12, 13, 15, 16, 17], "sourcehook": 7, "hood": 7, "least": 7, "three": 7, "itself": 7, "venv": 7, "pip": [7, 8, 18], "relat": [7, 11], "g": 7, "folder": 7, "normal": 7, "doe": 7, "loop": 7, "through": 7, "section": 7, "valu": 7, "statement": 7, "translat": 7, "being": 7, "get_ui_field_behaviour": 7, "get_connection_form_widget": 7, "attribut": 7, "conn_typ": 7, "hook_nam": 7, "quit": 7, "number": 7, "intent": 7, "pr": 7, "But": 7, "conflict": 7, "prefer": 7, "choos": [7, 9], "domain": 7, "question": 7, "glad": 7, "ask": 7, "_default": 7, "few": 7, "google_cloud_default": 7, "aws_default": 7, "succe": 7, "cours": 7, "better": 7, "mail": 7, "accept": 7, "invest": 7, "enough": 7, "fulli": 7, "peopl": 7, "posit": 7, "think": 7, "match": [7, 9], "expect": 7, "prerequisit": 7, "discuss": 7, "devlist": 7, "team": 7, "publish": [7, 8], "whatev": 7, "find": 7, "advertis": 7, "absolut": 7, "ecosystem": 7, "area": 7, "websit": 7, "non": 7, "feel": 7, "evalu": 7, "merg": 7, "charg": 7, "outsid": 7, "control": 7, "commerci": 7, "busi": 7, "around": 7, "softwar": [7, 14], "never": 7, "3rd": 7, "12": [7, 9], "stabl": 7, "becaus": 7, "don": 7, "anymor": 7, "know": [7, 9], "highest": 7, "offici": 8, "success": 8, "poetri": 8, "especi": 8, "v": 8, "wish": 8, "convert": 8, "celeri": [8, 9], "raw": 8, "githubusercont": 8, "com": [8, 9], "7": [8, 18], "how": [8, 13, 16, 17], "upgrad": 8, "beam": [9, 14], "kylin": [9, 14], "pinot": [9, 14], "datadog": [9, 14], "powershel": [9, 14, 18], "psrp": [9, 15], "window": [9, 14, 18], "winrm": [9, 14], "openfaa": [9, 14], "papermil": [9, 14], "plexu": [9, 14], "sendgrid": 9, "singular": [9, 14], "telegram": [9, 14], "drop": 9, "down": 9, "top": 9, "left": 9, "pgp": 9, "signatur": 9, "essenti": 9, "download": [9, 13], "sha": 9, "gpg": 9, "pleas": 9, "asc": 9, "relev": 9, "distribut": [9, 14, 18], "directori": 9, "mirror": 9, "pgpk": 9, "ka": 9, "binari": 9, "pgpv": 9, "tar": 9, "gz": 9, "sat": 9, "11": 9, "sep": 9, "49": 9, "54": 9, "bst": 9, "rsa": 9, "cde15c6e4d3a8ec4ecf4ba4b6674e08ad7de406f": 9, "issuer": 9, "kaxilnaik": 9, "kaxil": 9, "naik": 9, "unknown": 9, "aka": 9, "gmail": 9, "certifi": 9, "trust": 9, "indic": 9, "belong": 9, "owner": 9, "primari": 9, "fingerprint": 9, "cde1": 9, "5c6e": 9, "4d3a": 9, "8ec4": 9, "ecf4": 9, "ba4b": 9, "6674": 9, "e08a": 9, "d7de": 9, "406f": 9, "worri": 9, "certif": 9, "sign": 9, "why": 9, "sha512": 9, "sum": 9, "shasum": 9, "512": 9, "diff": 9, "variou": [10, 11, 12, 13, 15, 16, 17], "within": [10, 11, 12, 13, 15, 16], "product": [10, 11, 12, 13, 15, 16, 17], "druid_check": 10, "hive_stat": 10, "kylin_cub": 10, "spark_submit": 10, "spark_jdbc_script": 10, "copi": [10, 11, 12, 13, 15, 17], "hive_to_dynamodb": [10, 11], "hive_to_druid": 10, "vertica_to_h": [10, 17], "hive_to_mysql": [10, 17], "hive_to_samba": [10, 15], "s3_to_hiv": [10, 11], "mysql_to_h": [10, 17], "mssql_to_hiv": [10, 17], "cassandra_to_gc": [10, 13], "base_aw": 11, "cloud_form": 11, "comput": 11, "elasticache_replication_group": 11, "redshift_sql": 11, "redshift_clust": 11, "redshift_data": 11, "secrets_manag": 11, "batch_client": 11, "batch_wait": 11, "dm": 11, "glue_crawl": 11, "glue_catalog": 11, "aws_lambda": 11, "lambda_funct": 11, "step_funct": 11, "dynamodb_to_s3": 11, "gcs_to_s3": [11, 13], "glacier_to_gc": [11, 13], "google_api_to_s3": 11, "attach": [11, 15], "imap_attachment_to_s3": [11, 15], "mongo_to_s3": [11, 17], "redshift_to_s3": 11, "s3_to_redshift": 11, "s3_to_sftp": [11, 15], "sftp_to_s3": [11, 15], "s3_to_ftp": [11, 15], "exasol_to_s3": [11, 17], "ftp_to_s3": [11, 15], "salesforce_to_s3": [11, 16], "filesystem": [11, 12, 13], "local_to_s3": 11, "sql_to_s3": [11, 17], "s3_to_gc": [11, 13], "s3_to_mysql": [11, 17], "s3tosnowflakeoper": [11, 16], "s3_to_snowflak": [11, 16], "copy_into_snowflak": [11, 12, 13, 16], "base_azur": 12, "sdk": 12, "client": 12, "wasb_delete_blob": 12, "container_inst": 12, "container_volum": 12, "container_registri": 12, "adx": 12, "data_factori": 12, "adl": 12, "data_lak": 12, "datalak": 12, "asb": 12, "azure_fileshare_to_gc": [12, 13], "adls_to_gc": [12, 13], "upload": [12, 13], "local_to_adl": 12, "oracle_to_azure_data_lak": [12, 17], "local_to_wasb": 12, "azure_blob_to_gc": [12, 13], "sftp_to_wasb": [12, 15], "base_googl": 13, "discovery_api": 13, "analyz": 13, "code": 13, "bigquery_dt": 13, "marketing_platform": 13, "campaign_manag": 13, "cloud_build": 13, "firebas": [13, 18], "life_sci": 13, "cloud_memorystor": 13, "memcach": 13, "natural_languag": 13, "os_login": 13, "pubsub": 13, "secret_manag": 13, "speech_to_text": 13, "cloud_sql": 13, "cloud_storage_transfer_servic": 13, "text_to_speech": 13, "translate_speech": 13, "video_intellig": 13, "compute_ssh": 13, "datacatalog": 13, "datafus": 13, "dataproc_metastor": 13, "gdm": 13, "kubernetes_engin": 13, "mlengin": 13, "vertex_ai": 13, "dataset": 13, "custom_job": 13, "auto_ml": 13, "batch_prediction_job": 13, "endpoint_servic": 13, "hyperparameter_tuning_job": 13, "model_servic": 13, "vertexai": 13, "presto_to_gc": [13, 17], "trino_to_gc": [13, 17], "sql_to_gc": [13, 17], "suit": [13, 17, 18], "gcs_to_gdriv": 13, "gdrive_to_gc": 13, "mssql_to_gc": [13, 17], "calendar_to_gc": 13, "sheet": [13, 17], "sheets_to_gc": 13, "gcs_to_sftp": [13, 15], "postgres_to_gc": [13, 17], "bigquery_to_mysql": [13, 17], "bigquery_to_mssql": [13, 17], "gcs_to_bigqueri": 13, "gcs_to_gc": 13, "facebook_ads_to_gc": [13, 16], "sftp_to_gc": [13, 15], "bigquery_to_bigqueri": 13, "mysql_to_gc": [13, 17], "oracle_to_gc": [13, 17], "gcs_to_sheet": 13, "local_to_gc": 13, "bigquery_to_gc": 13, "gcs_to_loc": 13, "salesforce_to_gc": [13, 16], "ads_to_gc": 13, "gcs_to_presto": [13, 17], "gcs_to_trino": [13, 17], "analyt": 13, "display_video": 13, "search_ad": 13, "cloud_compos": 13, "A": 14, "asf": 14, "foundat": 14, "hadoop": [14, 18], "webhdf": [14, 18], "dynamodb": 14, "simpl": 14, "s3": 14, "gc": 14, "appflow": 14, "athena": 14, "cloudform": 14, "cloudwatch": 14, "datasync": 14, "ec2": 14, "ec": 14, "elast": 14, "ek": 14, "elasticach": 14, "glacier": 14, "kinesi": 14, "firehos": 14, "quicksight": 14, "rd": 14, "sagemak": 14, "secretsmanag": 14, "email": 14, "se": 14, "notif": 14, "sn": 14, "queue": 14, "sq": 14, "batch": 14, "migrat": 14, "glue": 14, "lambda": 14, "token": 14, "st": 14, "cosmo": 14, "explor": 14, "factori": 14, "lake": 14, "fileshar": 14, "bu": 14, "synaps": 14, "market": [14, 18], "analytics360": 14, "video": 14, "360": 14, "search": 14, "calendar": 14, "compos": 14, "dataform": 14, "discoveri": 14, "drive": 14, "spreadsheet": 14, "shell": [14, 18], "repo": 14, "dataproc": 14, "swarm": 14, "bigqueri": 14, "jdbcoper": 15, "airbytetriggersyncoper": 16, "databricks_bas": 16, "databrickssubmitrunoper": 16, "databricksrunnowoper": 16, "databricks_repo": 16, "databricksreposcreateoper": 16, "databricksreposupdateoper": 16, "databricksreposdeleteoper": 16, "databricks_sql": 16, "databrickssqloper": 16, "databrickscopyintooper": 16, "discord_webhook": 16, "opsgeniecreatealertoper": 16, "job": 16, "qubole_check": 16, "salesforce_apex_rest": 16, "bulk": 16, "salesforceapexrestoper": 16, "salesforcebulkoper": 16, "segment_track_ev": 16, "slack_webhook": 16, "snowflakeoper": 16, "tableauoper": 16, "telegramoper": 16, "yandexcloud_dataproc": 16, "proc": 16, "sqltoslackoper": [16, 17], "sql_to_slack": [16, 17], "snowflaketoslackoper": 16, "snowflake_to_slack": 16, "asana_task": 17, "asanacreatetaskoper": 17, "docker_swarm": 17, "jenkins_job_trigg": 17, "cncf": 17, "kubernetes_pod": 17, "spark_kubernet": 17, "kubernetespodoper": 17, "mssqloper": 17, "mysqloper": 17, "neo4joper": 17, "postgresoper": 17, "redis_publish": 17, "sqliteoper": 17, "trinooper": 17, "sql_to_sheet": 17, "vertica_to_mysql": 17, "presto_to_mysql": 17, "trino_to_mysql": 17, "oracle_to_oracl": 17, "4": 18, "6": 18, "gcp": 18, "workspac": 18, "formerli": 18, "8": 18, "9": 18}, "objects": {"": [[18, 0, 1, "std-provider-apache-airflow-providers-airbyte", "apache-airflow-providers-airbyte"], [18, 0, 1, "std-provider-apache-airflow-providers-alibaba", "apache-airflow-providers-alibaba"], [18, 0, 1, "std-provider-apache-airflow-providers-amazon", "apache-airflow-providers-amazon"], [18, 0, 1, "std-provider-apache-airflow-providers-apache-beam", "apache-airflow-providers-apache-beam"], [18, 0, 1, "std-provider-apache-airflow-providers-apache-cassandra", "apache-airflow-providers-apache-cassandra"], [18, 0, 1, "std-provider-apache-airflow-providers-apache-drill", "apache-airflow-providers-apache-drill"], [18, 0, 1, "std-provider-apache-airflow-providers-apache-druid", "apache-airflow-providers-apache-druid"], [18, 0, 1, "std-provider-apache-airflow-providers-apache-hdfs", "apache-airflow-providers-apache-hdfs"], [18, 0, 1, "std-provider-apache-airflow-providers-apache-hive", "apache-airflow-providers-apache-hive"], [18, 0, 1, "std-provider-apache-airflow-providers-apache-kylin", "apache-airflow-providers-apache-kylin"], [18, 0, 1, "std-provider-apache-airflow-providers-apache-livy", "apache-airflow-providers-apache-livy"], [18, 0, 1, "std-provider-apache-airflow-providers-apache-pig", "apache-airflow-providers-apache-pig"], [18, 0, 1, "std-provider-apache-airflow-providers-apache-pinot", "apache-airflow-providers-apache-pinot"], [18, 0, 1, "std-provider-apache-airflow-providers-apache-spark", "apache-airflow-providers-apache-spark"], [18, 0, 1, "std-provider-apache-airflow-providers-apache-sqoop", "apache-airflow-providers-apache-sqoop"], [18, 0, 1, "std-provider-apache-airflow-providers-arangodb", "apache-airflow-providers-arangodb"], [18, 0, 1, "std-provider-apache-airflow-providers-asana", "apache-airflow-providers-asana"], [18, 0, 1, "std-provider-apache-airflow-providers-atlassian-jira", "apache-airflow-providers-atlassian-jira"], [18, 0, 1, "std-provider-apache-airflow-providers-celery", "apache-airflow-providers-celery"], [18, 0, 1, "std-provider-apache-airflow-providers-cloudant", "apache-airflow-providers-cloudant"], [18, 0, 1, "std-provider-apache-airflow-providers-cncf-kubernetes", "apache-airflow-providers-cncf-kubernetes"], [18, 0, 1, "std-provider-apache-airflow-providers-common-sql", "apache-airflow-providers-common-sql"], [18, 0, 1, "std-provider-apache-airflow-providers-databricks", "apache-airflow-providers-databricks"], [18, 0, 1, "std-provider-apache-airflow-providers-datadog", "apache-airflow-providers-datadog"], [18, 0, 1, "std-provider-apache-airflow-providers-dbt-cloud", "apache-airflow-providers-dbt-cloud"], [18, 0, 1, "std-provider-apache-airflow-providers-dingding", "apache-airflow-providers-dingding"], [18, 0, 1, "std-provider-apache-airflow-providers-discord", "apache-airflow-providers-discord"], [18, 0, 1, "std-provider-apache-airflow-providers-docker", "apache-airflow-providers-docker"], [18, 0, 1, "std-provider-apache-airflow-providers-elasticsearch", "apache-airflow-providers-elasticsearch"], [18, 0, 1, "std-provider-apache-airflow-providers-exasol", "apache-airflow-providers-exasol"], [18, 0, 1, "std-provider-apache-airflow-providers-facebook", "apache-airflow-providers-facebook"], [18, 0, 1, "std-provider-apache-airflow-providers-ftp", "apache-airflow-providers-ftp"], [18, 0, 1, "std-provider-apache-airflow-providers-github", "apache-airflow-providers-github"], [18, 0, 1, "std-provider-apache-airflow-providers-google", "apache-airflow-providers-google"], [18, 0, 1, "std-provider-apache-airflow-providers-grpc", "apache-airflow-providers-grpc"], [18, 0, 1, "std-provider-apache-airflow-providers-hashicorp", "apache-airflow-providers-hashicorp"], [18, 0, 1, "std-provider-apache-airflow-providers-http", "apache-airflow-providers-http"], [18, 0, 1, "std-provider-apache-airflow-providers-imap", "apache-airflow-providers-imap"], [18, 0, 1, "std-provider-apache-airflow-providers-influxdb", "apache-airflow-providers-influxdb"], [18, 0, 1, "std-provider-apache-airflow-providers-jdbc", "apache-airflow-providers-jdbc"], [18, 0, 1, "std-provider-apache-airflow-providers-jenkins", "apache-airflow-providers-jenkins"], [18, 0, 1, "std-provider-apache-airflow-providers-microsoft-azure", "apache-airflow-providers-microsoft-azure"], [18, 0, 1, "std-provider-apache-airflow-providers-microsoft-mssql", "apache-airflow-providers-microsoft-mssql"], [18, 0, 1, "std-provider-apache-airflow-providers-microsoft-psrp", "apache-airflow-providers-microsoft-psrp"], [18, 0, 1, "std-provider-apache-airflow-providers-microsoft-winrm", "apache-airflow-providers-microsoft-winrm"], [18, 0, 1, "std-provider-apache-airflow-providers-mongo", "apache-airflow-providers-mongo"], [18, 0, 1, "std-provider-apache-airflow-providers-mysql", "apache-airflow-providers-mysql"], [18, 0, 1, "std-provider-apache-airflow-providers-neo4j", "apache-airflow-providers-neo4j"], [18, 0, 1, "std-provider-apache-airflow-providers-odbc", "apache-airflow-providers-odbc"], [18, 0, 1, "std-provider-apache-airflow-providers-openfaas", "apache-airflow-providers-openfaas"], [18, 0, 1, "std-provider-apache-airflow-providers-opsgenie", "apache-airflow-providers-opsgenie"], [18, 0, 1, "std-provider-apache-airflow-providers-oracle", "apache-airflow-providers-oracle"], [18, 0, 1, "std-provider-apache-airflow-providers-pagerduty", "apache-airflow-providers-pagerduty"], [18, 0, 1, "std-provider-apache-airflow-providers-papermill", "apache-airflow-providers-papermill"], [18, 0, 1, "std-provider-apache-airflow-providers-plexus", "apache-airflow-providers-plexus"], [18, 0, 1, "std-provider-apache-airflow-providers-postgres", "apache-airflow-providers-postgres"], [18, 0, 1, "std-provider-apache-airflow-providers-presto", "apache-airflow-providers-presto"], [18, 0, 1, "std-provider-apache-airflow-providers-qubole", "apache-airflow-providers-qubole"], [18, 0, 1, "std-provider-apache-airflow-providers-redis", "apache-airflow-providers-redis"], [18, 0, 1, "std-provider-apache-airflow-providers-salesforce", "apache-airflow-providers-salesforce"], [18, 0, 1, "std-provider-apache-airflow-providers-samba", "apache-airflow-providers-samba"], [18, 0, 1, "std-provider-apache-airflow-providers-segment", "apache-airflow-providers-segment"], [18, 0, 1, "std-provider-apache-airflow-providers-sendgrid", "apache-airflow-providers-sendgrid"], [18, 0, 1, "std-provider-apache-airflow-providers-sftp", "apache-airflow-providers-sftp"], [18, 0, 1, "std-provider-apache-airflow-providers-singularity", "apache-airflow-providers-singularity"], [18, 0, 1, "std-provider-apache-airflow-providers-slack", "apache-airflow-providers-slack"], [18, 0, 1, "std-provider-apache-airflow-providers-snowflake", "apache-airflow-providers-snowflake"], [18, 0, 1, "std-provider-apache-airflow-providers-sqlite", "apache-airflow-providers-sqlite"], [18, 0, 1, "std-provider-apache-airflow-providers-ssh", "apache-airflow-providers-ssh"], [18, 0, 1, "std-provider-apache-airflow-providers-tableau", "apache-airflow-providers-tableau"], [18, 0, 1, "std-provider-apache-airflow-providers-tabular", "apache-airflow-providers-tabular"], [18, 0, 1, "std-provider-apache-airflow-providers-telegram", "apache-airflow-providers-telegram"], [18, 0, 1, "std-provider-apache-airflow-providers-trino", "apache-airflow-providers-trino"], [18, 0, 1, "std-provider-apache-airflow-providers-vertica", "apache-airflow-providers-vertica"], [18, 0, 1, "std-provider-apache-airflow-providers-yandex", "apache-airflow-providers-yandex"], [18, 0, 1, "std-provider-apache-airflow-providers-zendesk", "apache-airflow-providers-zendesk"]]}, "objtypes": {"0": "std:provider"}, "objnames": {"0": ["std", "provider", "provider"]}, "titleterms": {"auth": [0, 7], "backend": [0, 5, 7], "googl": [0, 1, 2, 4, 5, 10, 11, 12, 13, 15, 16, 17, 18], "connect": [1, 7, 15], "airbyt": [1, 16, 18], "alibaba": [1, 4, 18], "amazon": [1, 2, 4, 5, 10, 11, 13, 15, 16, 17, 18], "apach": [1, 10, 11, 13, 15, 17, 18], "cassandra": [1, 10, 13, 18], "drill": [1, 10, 18], "druid": [1, 10, 18], "hdf": [1, 10, 18], "hive": [1, 10, 11, 15, 17, 18], "livi": [1, 10, 18], "pig": [1, 10, 18], "spark": [1, 10, 18], "sqoop": [1, 10, 18], "arangodb": [1, 17, 18], "asana": [1, 17, 18], "atlassian": [1, 17, 18], "jira": [1, 17, 18], "ibm": [1, 16], "cloudant": [1, 16, 18], "kubernet": [1, 11, 13, 17, 18], "databrick": [1, 2, 16, 18], "dbt": [1, 2, 18], "cloud": [1, 2, 10, 11, 12, 13, 15, 16, 17, 18], "dingd": [1, 16, 18], "discord": [1, 16, 18], "docker": [1, 17, 18], "elasticsearch": [1, 4, 17, 18], "exasol": [1, 11, 17, 18], "facebook": [1, 13, 16, 18], "file": [1, 10, 11, 12, 13, 15], "transfer": [1, 10, 11, 12, 13, 15, 16, 17], "protocol": [1, 11, 12, 13, 15], "ftp": [1, 11, 15, 18], "github": [1, 17, 18], "grpc": [1, 15, 18], "hashicorp": [1, 5, 17, 18], "hypertext": [1, 15], "http": [1, 15, 18], "internet": [1, 11, 15], "messag": [1, 11, 15], "access": [1, 11, 15], "imap": [1, 11, 15, 18], "influxdb": [1, 17, 18], "java": [1, 15], "databas": [1, 11, 15], "jdbc": [1, 15, 18], "jenkin": [1, 17, 18], "microsoft": [1, 2, 4, 5, 10, 12, 13, 15, 16, 17, 18], "azur": [1, 2, 4, 5, 12, 13, 15, 16, 17, 18], "sql": [1, 10, 11, 13, 16, 17, 18], "server": [1, 10, 13, 17], "mssql": [1, 10, 13, 17, 18], "mongodb": [1, 11, 17], "mysql": [1, 10, 11, 13, 17, 18], "neo4j": [1, 17, 18], "odbc": [1, 15, 18], "opsgeni": [1, 16, 18], "oracl": [1, 12, 13, 17, 18], "pagerduti": [1, 16, 18], "postgresql": [1, 13, 17], "presto": [1, 13, 17, 18], "qubol": [1, 2, 16, 18], "redi": [1, 17, 18], "salesforc": [1, 11, 13, 16, 18], "samba": [1, 10, 15, 18], "segment": [1, 16, 18], "sftp": [1, 11, 12, 13, 15, 18], "slack": [1, 16, 17, 18], "snowflak": [1, 11, 12, 13, 16, 18], "sqlite": [1, 17, 18], "ssh": [1, 11, 12, 13, 15, 18], "tableau": [1, 16, 18], "tabular": [1, 17, 18], "trino": [1, 13, 17, 18], "vertica": [1, 10, 17, 18], "yandex": [1, 16, 18], "zendesk": [1, 17, 18], "extra": [2, 7], "link": [2, 7], "core": [3, 7], "extens": 3, "write": 4, "log": [4, 7, 11], "secret": [5, 7, 13], "commun": [6, 7], "provid": [6, 7, 9, 18], "how": [6, 7], "creat": [6, 7], "new": 6, "initi": 6, "code": 6, "unit": 6, "test": 6, "integr": [6, 9, 15, 17], "document": 6, "option": 6, "featur": 6, "us": [6, 7], "dynam": 6, "task": [6, 13], "map": 6, "have": 6, "sensor": 6, "return": 6, "xcom": 6, "valu": 6, "updat": 6, "packag": [7, 9, 18], "extend": 7, "airflow": [7, 18], "function": [7, 11, 13], "custom": 7, "instal": [7, 8, 9], "upgrad": 7, "type": 7, "maintain": 7, "your": 7, "own": 7, "faq": 7, "2": 7, "0": 7, "backport": 7, "1": 7, "10": 7, "from": [8, 9], "pypi": 8, "tool": 8, "sourc": 9, "releas": 9, "asf": 10, "softwar": [10, 17], "foundat": 10, "beam": [10, 18], "kylin": [10, 18], "pinot": [10, 18], "hadoop": 10, "distribut": 10, "system": 10, "webhdf": 10, "dynamodb": [10, 11], "simpl": [10, 11, 13, 15, 16, 17], "storag": [10, 11, 12, 13, 15, 16, 17], "servic": [10, 11, 12, 13, 15, 16, 17], "s3": [10, 11, 13, 15, 16, 17], "gc": [10, 11, 12, 13, 15, 16, 17], "aw": 11, "web": 11, "appflow": 11, "athena": 11, "cloudform": 11, "cloudwatch": 11, "datasync": 11, "ec2": 11, "ec": 11, "elast": 11, "ek": 11, "elasticach": 11, "emr": 11, "glacier": [11, 13], "kinesi": 11, "data": [11, 12, 13, 17], "firehos": 11, "quicksight": 11, "rd": 11, "redshift": 11, "sagemak": 11, "secretsmanag": 11, "email": 11, "se": 11, "notif": 11, "sn": 11, "queue": 11, "sq": 11, "batch": [11, 12], "migrat": 11, "glue": 11, "lambda": 11, "secur": [11, 15], "token": 11, "st": 11, "step": 11, "local": [11, 12, 13], "common": [11, 13, 16, 17, 18], "blob": [12, 13, 15, 16], "contain": 12, "instanc": 12, "cosmo": 12, "db": 12, "explor": 12, "factori": 12, "lake": [12, 13, 17], "fileshar": [12, 13], "bu": 12, "synaps": 12, "automl": 13, "bigqueri": [13, 17], "bigtabl": 13, "campaign": 13, "manag": [13, 15], "build": 13, "loss": 13, "prevent": 13, "dlp": 13, "firestor": 13, "kei": 13, "km": 13, "life": 13, "scienc": 13, "memorystor": 13, "natur": 13, "languag": 13, "o": 13, "login": 13, "pub": 13, "sub": 13, "spanner": 13, "speech": 13, "text": 13, "stackdriv": 13, "translat": 13, "video": 13, "intellig": 13, "vision": 13, "workflow": 13, "comput": 13, "engin": 13, "catalog": 13, "fusion": 13, "dataflow": 13, "dataplex": 13, "dataprep": 13, "dataproc": [13, 16], "metastor": 13, "datastor": 13, "deploy": 13, "looker": 13, "machin": 13, "learn": 13, "vertex": 13, "ai": 13, "drive": 13, "calendar": 13, "spreadsheet": [13, 17], "ad": [13, 16], "market": 13, "platform": 13, "analytics360": 13, "displai": 13, "360": 13, "search": 13, "other": 13, "oper": [13, 14], "hook": [13, 14], "compos": 13, "dataform": 13, "discoveri": 13, "api": 13, "leveldb": 13, "refer": [14, 18], "shell": 15, "window": 15, "powershel": 15, "remot": 15, "winrm": [15, 18], "repo": 16, "datadog": [16, 18], "plexu": [16, 18], "telegram": [16, 18], "swarm": 17, "vault": 17, "openfaa": [17, 18], "papermil": [17, 18], "singular": [17, 18], "celeri": 18, "cncf": 18, "psrp": 18, "mongo": 18, "postgr": 18, "sendgrid": 18}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.intersphinx": 1, "sphinx": 57}, "alltitles": {"Auth backends": [[0, "auth-backends"], [7, "auth-backends"]], "Google": [[0, "google"], [1, "google"], [2, "google"], [4, "google"], [5, "google"], [13, "google"], [13, "id3"]], "Connections": [[1, "connections"]], "Airbyte": [[1, "airbyte"], [16, "airbyte"]], "Alibaba": [[1, "alibaba"], [4, "alibaba"]], "Amazon": [[1, "amazon"], [2, "amazon"], [4, "amazon"], [5, "amazon"]], "Apache Cassandra": [[1, "apache-cassandra"], [10, "apache-cassandra"]], "Apache Drill": [[1, "apache-drill"], [10, "apache-drill"]], "Apache Druid": [[1, "apache-druid"], [10, "apache-druid"]], "Apache HDFS": [[1, "apache-hdfs"]], "Apache Hive": [[1, "apache-hive"], [10, "apache-hive"]], "Apache Livy": [[1, "apache-livy"], [10, "apache-livy"]], "Apache Pig": [[1, "apache-pig"], [10, "apache-pig"]], "Apache Spark": [[1, "apache-spark"], [10, "apache-spark"]], "Apache Sqoop": [[1, "apache-sqoop"], [10, "apache-sqoop"]], "ArangoDB": [[1, "arangodb"], [17, "arangodb"]], "Asana": [[1, "asana"], [17, "asana"]], "Atlassian Jira": [[1, "atlassian-jira"], [17, "atlassian-jira"]], "IBM Cloudant": [[1, "ibm-cloudant"], [16, "ibm-cloudant"]], "Kubernetes": [[1, "kubernetes"], [17, "kubernetes"]], "Databricks": [[1, "databricks"], [2, "databricks"], [16, "databricks"]], "dbt Cloud": [[1, "dbt-cloud"], [2, "dbt-cloud"]], "Dingding": [[1, "dingding"], [16, "dingding"]], "Discord": [[1, "discord"], [16, "discord"]], "Docker": [[1, "docker"], [17, "docker"]], "Elasticsearch": [[1, "elasticsearch"], [4, "elasticsearch"], [17, "elasticsearch"]], "Exasol": [[1, "exasol"], [17, "exasol"]], "Facebook": [[1, "facebook"]], "File Transfer Protocol (FTP)": [[1, "file-transfer-protocol-ftp"], [15, "file-transfer-protocol-ftp"]], "Github": [[1, "github"], [17, "github"]], "gRPC": [[1, "grpc"], [15, "grpc"]], "Hashicorp": [[1, "hashicorp"], [5, "hashicorp"]], "Hypertext Transfer Protocol (HTTP)": [[1, "hypertext-transfer-protocol-http"], [15, "hypertext-transfer-protocol-http"]], "Internet Message Access Protocol (IMAP)": [[1, "internet-message-access-protocol-imap"], [15, "internet-message-access-protocol-imap"]], "Influxdb": [[1, "influxdb"], [17, "influxdb"]], "Java Database Connectivity (JDBC)": [[1, "java-database-connectivity-jdbc"], [15, "java-database-connectivity-jdbc"]], "Jenkins": [[1, "jenkins"], [17, "jenkins"]], "Microsoft Azure": [[1, "microsoft-azure"], [2, "microsoft-azure"], [4, "microsoft-azure"], [5, "microsoft-azure"], [12, "microsoft-azure"]], "Microsoft SQL Server (MSSQL)": [[1, "microsoft-sql-server-mssql"], [17, "microsoft-sql-server-mssql"]], "MongoDB": [[1, "mongodb"], [17, "mongodb"]], "MySQL": [[1, "mysql"], [17, "mysql"]], "Neo4j": [[1, "neo4j"], [17, "neo4j"]], "ODBC": [[1, "odbc"], [15, "odbc"]], "Opsgenie": [[1, "opsgenie"], [16, "opsgenie"]], "Oracle": [[1, "oracle"], [17, "oracle"]], "Pagerduty": [[1, "pagerduty"], [16, "pagerduty"]], "PostgreSQL": [[1, "postgresql"], [17, "postgresql"]], "Presto": [[1, "presto"], [17, "presto"]], "Qubole": [[1, "qubole"], [2, "qubole"], [16, "qubole"]], "Redis": [[1, "redis"], [17, "redis"]], "Salesforce": [[1, "salesforce"], [16, "salesforce"]], "Samba": [[1, "samba"], [15, "samba"]], "Segment": [[1, "segment"], [16, "segment"]], "SFTP": [[1, "sftp"]], "Slack": [[1, "slack"], [16, "slack"]], "Snowflake": [[1, "snowflake"], [16, "snowflake"]], "SQLite": [[1, "sqlite"], [17, "sqlite"]], "SSH": [[1, "ssh"]], "Tableau": [[1, "tableau"], [16, "tableau"]], "Tabular": [[1, "tabular"], [17, "tabular"]], "Trino": [[1, "trino"], [17, "trino"]], "Vertica": [[1, "vertica"], [17, "vertica"]], "Yandex": [[1, "yandex"]], "Zendesk": [[1, "zendesk"], [17, "zendesk"]], "Extra Links": [[2, "extra-links"]], "Core Extensions": [[3, "core-extensions"]], "Writing logs": [[4, "writing-logs"]], "Secret backends": [[5, "secret-backends"], [7, "secret-backends"]], "Community Providers": [[6, "community-providers"]], "How-to creating a new community provider": [[6, "how-to-creating-a-new-community-provider"]], "Initial Code and Unit Tests": [[6, "initial-code-and-unit-tests"]], "Integration tests": [[6, "integration-tests"]], "Documentation": [[6, "documentation"]], "Optional provider features": [[6, "optional-provider-features"]], "Using Providers with dynamic task mapping": [[6, "using-providers-with-dynamic-task-mapping"]], "Having sensors return XCOM values": [[6, "having-sensors-return-xcom-values"]], "How-to Update a community provider": [[6, "how-to-update-a-community-provider"]], "Provider packages": [[7, "provider-packages"]], "Extending Airflow core functionality": [[7, "extending-airflow-core-functionality"]], "Custom connections": [[7, "custom-connections"]], "Extra links": [[7, "extra-links"]], "Logging": [[7, "logging"]], "Installing and upgrading providers": [[7, "installing-and-upgrading-providers"]], "Types of providers": [[7, "types-of-providers"]], "Community maintained providers": [[7, "community-maintained-providers"]], "Custom provider packages": [[7, "custom-provider-packages"]], "How to create your own provider": [[7, "how-to-create-your-own-provider"]], "FAQ for Airflow and Providers": [[7, "faq-for-airflow-and-providers"]], "Upgrading Airflow 2.0 and Providers": [[7, "upgrading-airflow-2-0-and-providers"]], "Customizing Provider Packages": [[7, "customizing-provider-packages"]], "Creating your own providers": [[7, "creating-your-own-providers"]], "Using Backport Providers in Airflow 1.10": [[7, "using-backport-providers-in-airflow-1-10"]], "Installation from PyPI": [[8, "installation-from-pypi"]], "Installation tools": [[8, "installation-tools"]], "Installing Providers from Sources": [[9, "installing-providers-from-sources"]], "Released packages": [[9, "released-packages"]], "Release integrity": [[9, "release-integrity"]], "ASF: Apache Software Foundation": [[10, "asf-apache-software-foundation"]], "Software": [[10, "software"], [17, "software"]], "Apache Beam": [[10, "apache-beam"]], "Apache Kylin": [[10, "apache-kylin"]], "Apache Pinot": [[10, "apache-pinot"]], "Hadoop Distributed File System (HDFS)": [[10, "hadoop-distributed-file-system-hdfs"]], "WebHDFS": [[10, "webhdfs"]], "Transfers": [[10, "transfers"], [11, "transfers"], [12, "transfers"], [13, "transfers"], [15, "transfers"], [16, "transfers"], [17, "transfers"]], "Apache Hive to Amazon DynamoDB": [[10, "apache-hive-to-amazon-dynamodb"], [11, "apache-hive-to-amazon-dynamodb"]], "Apache Hive to Apache Druid": [[10, "apache-hive-to-apache-druid"]], "Vertica to Apache Hive": [[10, "vertica-to-apache-hive"], [17, "vertica-to-apache-hive"]], "Apache Hive to MySQL": [[10, "apache-hive-to-mysql"], [17, "apache-hive-to-mysql"]], "Apache Hive to Samba": [[10, "apache-hive-to-samba"], [15, "apache-hive-to-samba"]], "Amazon Simple Storage Service (S3) to Apache Hive": [[10, "amazon-simple-storage-service-s3-to-apache-hive"], [11, "amazon-simple-storage-service-s3-to-apache-hive"]], "MySQL to Apache Hive": [[10, "mysql-to-apache-hive"], [17, "mysql-to-apache-hive"]], "Microsoft SQL Server (MSSQL) to Apache Hive": [[10, "microsoft-sql-server-mssql-to-apache-hive"], [17, "microsoft-sql-server-mssql-to-apache-hive"]], "Apache Cassandra to Google Cloud Storage (GCS)": [[10, "apache-cassandra-to-google-cloud-storage-gcs"], [13, "apache-cassandra-to-google-cloud-storage-gcs"]], "AWS: Amazon Web Services": [[11, "aws-amazon-web-services"]], "Services": [[11, "services"], [12, "services"], [13, "services"], [16, "services"], [16, "id1"]], "Amazon Appflow": [[11, "amazon-appflow"]], "Amazon Athena": [[11, "amazon-athena"]], "Amazon CloudFormation": [[11, "amazon-cloudformation"]], "Amazon CloudWatch Logs": [[11, "amazon-cloudwatch-logs"]], "Amazon DataSync": [[11, "amazon-datasync"]], "Amazon DynamoDB": [[11, "amazon-dynamodb"]], "Amazon EC2": [[11, "amazon-ec2"]], "Amazon ECS": [[11, "amazon-ecs"]], "Amazon Elastic Kubernetes Service (EKS)": [[11, "amazon-elastic-kubernetes-service-eks"]], "Amazon ElastiCache": [[11, "amazon-elasticache"]], "Amazon EMR": [[11, "amazon-emr"]], "Amazon EMR on EKS": [[11, "amazon-emr-on-eks"]], "Amazon Glacier": [[11, "amazon-glacier"]], "Amazon Kinesis Data Firehose": [[11, "amazon-kinesis-data-firehose"]], "Amazon QuickSight": [[11, "amazon-quicksight"]], "Amazon RDS": [[11, "amazon-rds"]], "Amazon Redshift": [[11, "amazon-redshift"]], "Amazon SageMaker": [[11, "amazon-sagemaker"]], "Amazon SecretsManager": [[11, "amazon-secretsmanager"]], "Amazon Simple Email Service (SES)": [[11, "amazon-simple-email-service-ses"]], "Amazon Simple Notification Service (SNS)": [[11, "amazon-simple-notification-service-sns"]], "Amazon Simple Queue Service (SQS)": [[11, "amazon-simple-queue-service-sqs"]], "Amazon Simple Storage Service (S3)": [[11, "amazon-simple-storage-service-s3"]], "Amazon Web Services": [[11, "amazon-web-services"]], "AWS Batch": [[11, "aws-batch"]], "AWS Database Migration Service": [[11, "aws-database-migration-service"]], "AWS Glue": [[11, "aws-glue"]], "AWS Lambda": [[11, "aws-lambda"]], "AWS Security Token Service (STS)": [[11, "aws-security-token-service-sts"]], "AWS Step Functions": [[11, "aws-step-functions"]], "Amazon DynamoDB to Amazon Simple Storage Service (S3)": [[11, "amazon-dynamodb-to-amazon-simple-storage-service-s3"]], "Google Cloud Storage (GCS) to Amazon Simple Storage Service (S3)": [[11, "google-cloud-storage-gcs-to-amazon-simple-storage-service-s3"], [13, "google-cloud-storage-gcs-to-amazon-simple-storage-service-s3"]], "Amazon Glacier to Google Cloud Storage (GCS)": [[11, "amazon-glacier-to-google-cloud-storage-gcs"], [13, "amazon-glacier-to-google-cloud-storage-gcs"]], "Google to Amazon Simple Storage Service (S3)": [[11, "google-to-amazon-simple-storage-service-s3"]], "Internet Message Access Protocol (IMAP) to Amazon Simple Storage Service (S3)": [[11, "internet-message-access-protocol-imap-to-amazon-simple-storage-service-s3"], [15, "internet-message-access-protocol-imap-to-amazon-simple-storage-service-s3"]], "MongoDB to Amazon Simple Storage Service (S3)": [[11, "mongodb-to-amazon-simple-storage-service-s3"], [17, "mongodb-to-amazon-simple-storage-service-s3"]], "Amazon Redshift to Amazon Simple Storage Service (S3)": [[11, "amazon-redshift-to-amazon-simple-storage-service-s3"]], "Amazon Simple Storage Service (S3) to Amazon Redshift": [[11, "amazon-simple-storage-service-s3-to-amazon-redshift"]], "Amazon Simple Storage Service (S3) to SSH File Transfer Protocol (SFTP)": [[11, "amazon-simple-storage-service-s3-to-ssh-file-transfer-protocol-sftp"], [15, "amazon-simple-storage-service-s3-to-ssh-file-transfer-protocol-sftp"]], "SSH File Transfer Protocol (SFTP) to Amazon Simple Storage Service (S3)": [[11, "ssh-file-transfer-protocol-sftp-to-amazon-simple-storage-service-s3"], [15, "ssh-file-transfer-protocol-sftp-to-amazon-simple-storage-service-s3"]], "Amazon Simple Storage Service (S3) to File Transfer Protocol (FTP)": [[11, "amazon-simple-storage-service-s3-to-file-transfer-protocol-ftp"], [15, "amazon-simple-storage-service-s3-to-file-transfer-protocol-ftp"]], "Exasol to Amazon Simple Storage Service (S3)": [[11, "exasol-to-amazon-simple-storage-service-s3"], [17, "exasol-to-amazon-simple-storage-service-s3"]], "File Transfer Protocol (FTP) to Amazon Simple Storage Service (S3)": [[11, "file-transfer-protocol-ftp-to-amazon-simple-storage-service-s3"], [15, "file-transfer-protocol-ftp-to-amazon-simple-storage-service-s3"]], "Salesforce to Amazon Simple Storage Service (S3)": [[11, "salesforce-to-amazon-simple-storage-service-s3"], [16, "salesforce-to-amazon-simple-storage-service-s3"]], "Local to Amazon Simple Storage Service (S3)": [[11, "local-to-amazon-simple-storage-service-s3"]], "Common SQL to Amazon Simple Storage Service (S3)": [[11, "common-sql-to-amazon-simple-storage-service-s3"], [17, "common-sql-to-amazon-simple-storage-service-s3"]], "Amazon Simple Storage Service (S3) to Google Cloud Storage (GCS)": [[11, "amazon-simple-storage-service-s3-to-google-cloud-storage-gcs"], [13, "amazon-simple-storage-service-s3-to-google-cloud-storage-gcs"]], "Amazon Simple Storage Service (S3) to MySQL": [[11, "amazon-simple-storage-service-s3-to-mysql"], [17, "amazon-simple-storage-service-s3-to-mysql"]], "Amazon Simple Storage Service (S3) to Snowflake": [[11, "amazon-simple-storage-service-s3-to-snowflake"], [11, "id1"], [16, "amazon-simple-storage-service-s3-to-snowflake"], [16, "id2"]], "Azure: Microsoft Azure": [[12, "azure-microsoft-azure"]], "Microsoft Azure Batch": [[12, "microsoft-azure-batch"]], "Microsoft Azure Blob Storage": [[12, "microsoft-azure-blob-storage"]], "Microsoft Azure Container Instances": [[12, "microsoft-azure-container-instances"]], "Microsoft Azure Cosmos DB": [[12, "microsoft-azure-cosmos-db"]], "Microsoft Azure Data Explorer": [[12, "microsoft-azure-data-explorer"]], "Microsoft Azure Data Factory": [[12, "microsoft-azure-data-factory"]], "Microsoft Azure Data Lake Storage": [[12, "microsoft-azure-data-lake-storage"]], "Microsoft Azure FileShare": [[12, "microsoft-azure-fileshare"]], "Microsoft Azure Service Bus": [[12, "microsoft-azure-service-bus"]], "Microsoft Azure Synapse": [[12, "microsoft-azure-synapse"]], "Microsoft Azure FileShare to Google Cloud Storage (GCS)": [[12, "microsoft-azure-fileshare-to-google-cloud-storage-gcs"], [13, "microsoft-azure-fileshare-to-google-cloud-storage-gcs"]], "Microsoft Azure Data Lake Storage to Google Cloud Storage (GCS)": [[12, "microsoft-azure-data-lake-storage-to-google-cloud-storage-gcs"], [13, "microsoft-azure-data-lake-storage-to-google-cloud-storage-gcs"]], "Local to Microsoft Azure Data Lake Storage": [[12, "local-to-microsoft-azure-data-lake-storage"]], "Oracle to Microsoft Azure Data Lake Storage": [[12, "oracle-to-microsoft-azure-data-lake-storage"], [17, "oracle-to-microsoft-azure-data-lake-storage"]], "Local to Microsoft Azure Blob Storage": [[12, "local-to-microsoft-azure-blob-storage"]], "Microsoft Azure Blob Storage to Google Cloud Storage (GCS)": [[12, "microsoft-azure-blob-storage-to-google-cloud-storage-gcs"], [13, "microsoft-azure-blob-storage-to-google-cloud-storage-gcs"]], "SSH File Transfer Protocol (SFTP) to Microsoft Azure Blob Storage": [[12, "ssh-file-transfer-protocol-sftp-to-microsoft-azure-blob-storage"], [15, "ssh-file-transfer-protocol-sftp-to-microsoft-azure-blob-storage"]], "Microsoft Azure Blob Storage to Snowflake": [[12, "microsoft-azure-blob-storage-to-snowflake"], [16, "microsoft-azure-blob-storage-to-snowflake"]], "Google Cloud": [[13, "google-cloud"]], "Google AutoML": [[13, "google-automl"]], "Google BigQuery": [[13, "google-bigquery"]], "Google BigQuery Data Transfer Service": [[13, "google-bigquery-data-transfer-service"]], "Google Bigtable": [[13, "google-bigtable"]], "Google Campaign Manager": [[13, "google-campaign-manager"]], "Google Cloud Build": [[13, "google-cloud-build"]], "Google Cloud Data Loss Prevention (DLP)": [[13, "google-cloud-data-loss-prevention-dlp"]], "Google Cloud Firestore": [[13, "google-cloud-firestore"]], "Google Cloud Functions": [[13, "google-cloud-functions"]], "Google Cloud Key Management Service (KMS)": [[13, "google-cloud-key-management-service-kms"]], "Google Cloud Life Sciences": [[13, "google-cloud-life-sciences"]], "Google Cloud Memorystore": [[13, "google-cloud-memorystore"]], "Google Cloud Natural Language": [[13, "google-cloud-natural-language"]], "Google Cloud OS Login": [[13, "google-cloud-os-login"]], "Google Cloud Pub/Sub": [[13, "google-cloud-pub-sub"]], "Google Cloud Secret Manager": [[13, "google-cloud-secret-manager"]], "Google Cloud Spanner": [[13, "google-cloud-spanner"]], "Google Cloud Speech-to-Text": [[13, "google-cloud-speech-to-text"]], "Google Cloud SQL": [[13, "google-cloud-sql"]], "Google Cloud Stackdriver": [[13, "google-cloud-stackdriver"]], "Google Cloud Storage (GCS)": [[13, "google-cloud-storage-gcs"]], "Google Cloud Storage Transfer Service": [[13, "google-cloud-storage-transfer-service"]], "Google Cloud Tasks": [[13, "google-cloud-tasks"]], "Google Cloud Text-to-Speech": [[13, "google-cloud-text-to-speech"]], "Google Cloud Translation": [[13, "google-cloud-translation"]], "Google Cloud Video Intelligence": [[13, "google-cloud-video-intelligence"]], "Google Cloud Vision": [[13, "google-cloud-vision"]], "Google Cloud Workflows": [[13, "google-cloud-workflows"]], "Google Compute Engine": [[13, "google-compute-engine"]], "Google Data Catalog": [[13, "google-data-catalog"]], "Google Data Fusion": [[13, "google-data-fusion"]], "Google Dataflow": [[13, "google-dataflow"]], "Google Dataplex": [[13, "google-dataplex"]], "Google Dataprep": [[13, "google-dataprep"]], "Google Dataproc": [[13, "google-dataproc"]], "Google Dataproc Metastore": [[13, "google-dataproc-metastore"]], "Google Datastore": [[13, "google-datastore"]], "Google Deployment Manager": [[13, "google-deployment-manager"]], "Google Kubernetes Engine": [[13, "google-kubernetes-engine"]], "Google Looker": [[13, "google-looker"]], "Google Machine Learning Engine": [[13, "google-machine-learning-engine"]], "Google Vertex AI": [[13, "google-vertex-ai"]], "Presto to Google Cloud Storage (GCS)": [[13, "presto-to-google-cloud-storage-gcs"], [17, "presto-to-google-cloud-storage-gcs"]], "Trino to Google Cloud Storage (GCS)": [[13, "trino-to-google-cloud-storage-gcs"], [17, "trino-to-google-cloud-storage-gcs"]], "Common SQL to Google Cloud Storage (GCS)": [[13, "common-sql-to-google-cloud-storage-gcs"], [17, "common-sql-to-google-cloud-storage-gcs"]], "Google Cloud Storage (GCS) to Google Drive": [[13, "google-cloud-storage-gcs-to-google-drive"]], "Google Drive to Google Cloud Storage (GCS)": [[13, "google-drive-to-google-cloud-storage-gcs"]], "Microsoft SQL Server (MSSQL) to Google Cloud Storage (GCS)": [[13, "microsoft-sql-server-mssql-to-google-cloud-storage-gcs"], [13, "id2"], [17, "microsoft-sql-server-mssql-to-google-cloud-storage-gcs"], [17, "id1"]], "Google Calendar to Google Cloud Storage (GCS)": [[13, "google-calendar-to-google-cloud-storage-gcs"]], "Google Spreadsheet to Google Cloud Storage (GCS)": [[13, "google-spreadsheet-to-google-cloud-storage-gcs"]], "Google Cloud Storage (GCS) to SSH File Transfer Protocol (SFTP)": [[13, "google-cloud-storage-gcs-to-ssh-file-transfer-protocol-sftp"], [15, "google-cloud-storage-gcs-to-ssh-file-transfer-protocol-sftp"]], "PostgreSQL to Google Cloud Storage (GCS)": [[13, "postgresql-to-google-cloud-storage-gcs"], [17, "postgresql-to-google-cloud-storage-gcs"]], "Google BigQuery to MySQL": [[13, "google-bigquery-to-mysql"], [17, "google-bigquery-to-mysql"]], "Google BigQuery to Microsoft SQL Server (MSSQL)": [[13, "google-bigquery-to-microsoft-sql-server-mssql"], [17, "google-bigquery-to-microsoft-sql-server-mssql"]], "Google Cloud Storage (GCS) to Google BigQuery": [[13, "google-cloud-storage-gcs-to-google-bigquery"]], "Google Cloud Storage (GCS) to Google Cloud Storage (GCS)": [[13, "google-cloud-storage-gcs-to-google-cloud-storage-gcs"]], "Facebook Ads to Google Cloud Storage (GCS)": [[13, "facebook-ads-to-google-cloud-storage-gcs"], [16, "facebook-ads-to-google-cloud-storage-gcs"]], "SSH File Transfer Protocol (SFTP) to Google Cloud Storage (GCS)": [[13, "ssh-file-transfer-protocol-sftp-to-google-cloud-storage-gcs"], [15, "ssh-file-transfer-protocol-sftp-to-google-cloud-storage-gcs"]], "Google BigQuery to Google BigQuery": [[13, "google-bigquery-to-google-bigquery"]], "MySQL to Google Cloud Storage (GCS)": [[13, "mysql-to-google-cloud-storage-gcs"], [17, "mysql-to-google-cloud-storage-gcs"]], "Oracle to Google Cloud Storage (GCS)": [[13, "oracle-to-google-cloud-storage-gcs"], [17, "oracle-to-google-cloud-storage-gcs"]], "Google Cloud Storage (GCS) to Google Spreadsheet": [[13, "google-cloud-storage-gcs-to-google-spreadsheet"]], "Local to Google Cloud Storage (GCS)": [[13, "local-to-google-cloud-storage-gcs"]], "Google BigQuery to Google Cloud Storage (GCS)": [[13, "google-bigquery-to-google-cloud-storage-gcs"]], "Google Cloud Storage (GCS) to Local": [[13, "google-cloud-storage-gcs-to-local"]], "Salesforce to Google Cloud Storage (GCS)": [[13, "salesforce-to-google-cloud-storage-gcs"], [16, "salesforce-to-google-cloud-storage-gcs"]], "Google Ads to Google Cloud Storage (GCS)": [[13, "google-ads-to-google-cloud-storage-gcs"]], "Google Cloud Storage (GCS) to Presto": [[13, "google-cloud-storage-gcs-to-presto"], [17, "google-cloud-storage-gcs-to-presto"]], "Google Cloud Storage (GCS) to Snowflake": [[13, "google-cloud-storage-gcs-to-snowflake"], [16, "google-cloud-storage-gcs-to-snowflake"]], "Google Cloud Storage (GCS) to Trino": [[13, "google-cloud-storage-gcs-to-trino"], [17, "google-cloud-storage-gcs-to-trino"]], "Google Marketing Platform": [[13, "google-marketing-platform"]], "Google Ads": [[13, "google-ads"]], "Google Analytics360": [[13, "google-analytics360"]], "Google Display&Video 360": [[13, "google-display-video-360"]], "Google Search Ads 360": [[13, "google-search-ads-360"]], "Other Google operators and hooks": [[13, "other-google-operators-and-hooks"]], "Google Calendar": [[13, "google-calendar"]], "Google Cloud Composer": [[13, "google-cloud-composer"]], "Google Cloud Dataform": [[13, "google-cloud-dataform"]], "Google Discovery API": [[13, "google-discovery-api"]], "Google Drive": [[13, "google-drive"]], "Google LevelDB": [[13, "google-leveldb"]], "Google Spreadsheet": [[13, "google-spreadsheet"]], "Operators and Hooks Reference": [[14, "operators-and-hooks-reference"]], "Protocol integrations": [[15, "protocol-integrations"]], "Protocols": [[15, "protocols"]], "Secure Shell (SSH)": [[15, "secure-shell-ssh"]], "SSH File Transfer Protocol (SFTP)": [[15, "ssh-file-transfer-protocol-sftp"]], "Windows PowerShell Remoting Protocol": [[15, "windows-powershell-remoting-protocol"]], "Windows Remote Management (WinRM)": [[15, "windows-remote-management-winrm"]], "Databricks Repos": [[16, "databricks-repos"]], "Databricks SQL": [[16, "databricks-sql"]], "Datadog": [[16, "datadog"]], "Facebook Ads": [[16, "facebook-ads"]], "Plexus": [[16, "plexus"]], "Telegram": [[16, "telegram"]], "Yandex.Cloud": [[16, "yandex-cloud"]], "Yandex.Cloud Dataproc": [[16, "yandex-cloud-dataproc"]], "Common SQL to Slack": [[16, "common-sql-to-slack"], [17, "common-sql-to-slack"]], "Snowflake to Slack": [[16, "snowflake-to-slack"]], "Software integrations": [[17, "software-integrations"]], "Common SQL": [[17, "common-sql"]], "Docker Swarm": [[17, "docker-swarm"]], "Hashicorp Vault": [[17, "hashicorp-vault"]], "OpenFaaS": [[17, "openfaas"]], "Papermill": [[17, "papermill"]], "Singularity": [[17, "singularity"]], "Common SQL to Google Spreadsheet": [[17, "common-sql-to-google-spreadsheet"]], "Vertica to MySQL": [[17, "vertica-to-mysql"]], "Presto to MySQL": [[17, "presto-to-mysql"]], "Trino to MySQL": [[17, "trino-to-mysql"]], "Oracle to Oracle": [[17, "oracle-to-oracle"]], "Providers packages reference": [[18, "providers-packages-reference"]], "apache-airflow-providers-airbyte": [[18, "apache-airflow-providers-airbyte"]], "apache-airflow-providers-alibaba": [[18, "apache-airflow-providers-alibaba"]], "apache-airflow-providers-amazon": [[18, "apache-airflow-providers-amazon"]], "apache-airflow-providers-apache-beam": [[18, "apache-airflow-providers-apache-beam"]], "apache-airflow-providers-apache-cassandra": [[18, "apache-airflow-providers-apache-cassandra"]], "apache-airflow-providers-apache-drill": [[18, "apache-airflow-providers-apache-drill"]], "apache-airflow-providers-apache-druid": [[18, "apache-airflow-providers-apache-druid"]], "apache-airflow-providers-apache-hdfs": [[18, "apache-airflow-providers-apache-hdfs"]], "apache-airflow-providers-apache-hive": [[18, "apache-airflow-providers-apache-hive"]], "apache-airflow-providers-apache-kylin": [[18, "apache-airflow-providers-apache-kylin"]], "apache-airflow-providers-apache-livy": [[18, "apache-airflow-providers-apache-livy"]], "apache-airflow-providers-apache-pig": [[18, "apache-airflow-providers-apache-pig"]], "apache-airflow-providers-apache-pinot": [[18, "apache-airflow-providers-apache-pinot"]], "apache-airflow-providers-apache-spark": [[18, "apache-airflow-providers-apache-spark"]], "apache-airflow-providers-apache-sqoop": [[18, "apache-airflow-providers-apache-sqoop"]], "apache-airflow-providers-arangodb": [[18, "apache-airflow-providers-arangodb"]], "apache-airflow-providers-asana": [[18, "apache-airflow-providers-asana"]], "apache-airflow-providers-atlassian-jira": [[18, "apache-airflow-providers-atlassian-jira"]], "apache-airflow-providers-celery": [[18, "apache-airflow-providers-celery"]], "apache-airflow-providers-cloudant": [[18, "apache-airflow-providers-cloudant"]], "apache-airflow-providers-cncf-kubernetes": [[18, "apache-airflow-providers-cncf-kubernetes"]], "apache-airflow-providers-common-sql": [[18, "apache-airflow-providers-common-sql"]], "apache-airflow-providers-databricks": [[18, "apache-airflow-providers-databricks"]], "apache-airflow-providers-datadog": [[18, "apache-airflow-providers-datadog"]], "apache-airflow-providers-dbt-cloud": [[18, "apache-airflow-providers-dbt-cloud"]], "apache-airflow-providers-dingding": [[18, "apache-airflow-providers-dingding"]], "apache-airflow-providers-discord": [[18, "apache-airflow-providers-discord"]], "apache-airflow-providers-docker": [[18, "apache-airflow-providers-docker"]], "apache-airflow-providers-elasticsearch": [[18, "apache-airflow-providers-elasticsearch"]], "apache-airflow-providers-exasol": [[18, "apache-airflow-providers-exasol"]], "apache-airflow-providers-facebook": [[18, "apache-airflow-providers-facebook"]], "apache-airflow-providers-ftp": [[18, "apache-airflow-providers-ftp"]], "apache-airflow-providers-github": [[18, "apache-airflow-providers-github"]], "apache-airflow-providers-google": [[18, "apache-airflow-providers-google"]], "apache-airflow-providers-grpc": [[18, "apache-airflow-providers-grpc"]], "apache-airflow-providers-hashicorp": [[18, "apache-airflow-providers-hashicorp"]], "apache-airflow-providers-http": [[18, "apache-airflow-providers-http"]], "apache-airflow-providers-imap": [[18, "apache-airflow-providers-imap"]], "apache-airflow-providers-influxdb": [[18, "apache-airflow-providers-influxdb"]], "apache-airflow-providers-jdbc": [[18, "apache-airflow-providers-jdbc"]], "apache-airflow-providers-jenkins": [[18, "apache-airflow-providers-jenkins"]], "apache-airflow-providers-microsoft-azure": [[18, "apache-airflow-providers-microsoft-azure"]], "apache-airflow-providers-microsoft-mssql": [[18, "apache-airflow-providers-microsoft-mssql"]], "apache-airflow-providers-microsoft-psrp": [[18, "apache-airflow-providers-microsoft-psrp"]], "apache-airflow-providers-microsoft-winrm": [[18, "apache-airflow-providers-microsoft-winrm"]], "apache-airflow-providers-mongo": [[18, "apache-airflow-providers-mongo"]], "apache-airflow-providers-mysql": [[18, "apache-airflow-providers-mysql"]], "apache-airflow-providers-neo4j": [[18, "apache-airflow-providers-neo4j"]], "apache-airflow-providers-odbc": [[18, "apache-airflow-providers-odbc"]], "apache-airflow-providers-openfaas": [[18, "apache-airflow-providers-openfaas"]], "apache-airflow-providers-opsgenie": [[18, "apache-airflow-providers-opsgenie"]], "apache-airflow-providers-oracle": [[18, "apache-airflow-providers-oracle"]], "apache-airflow-providers-pagerduty": [[18, "apache-airflow-providers-pagerduty"]], "apache-airflow-providers-papermill": [[18, "apache-airflow-providers-papermill"]], "apache-airflow-providers-plexus": [[18, "apache-airflow-providers-plexus"]], "apache-airflow-providers-postgres": [[18, "apache-airflow-providers-postgres"]], "apache-airflow-providers-presto": [[18, "apache-airflow-providers-presto"]], "apache-airflow-providers-qubole": [[18, "apache-airflow-providers-qubole"]], "apache-airflow-providers-redis": [[18, "apache-airflow-providers-redis"]], "apache-airflow-providers-salesforce": [[18, "apache-airflow-providers-salesforce"]], "apache-airflow-providers-samba": [[18, "apache-airflow-providers-samba"]], "apache-airflow-providers-segment": [[18, "apache-airflow-providers-segment"]], "apache-airflow-providers-sendgrid": [[18, "apache-airflow-providers-sendgrid"]], "apache-airflow-providers-sftp": [[18, "apache-airflow-providers-sftp"]], "apache-airflow-providers-singularity": [[18, "apache-airflow-providers-singularity"]], "apache-airflow-providers-slack": [[18, "apache-airflow-providers-slack"]], "apache-airflow-providers-snowflake": [[18, "apache-airflow-providers-snowflake"]], "apache-airflow-providers-sqlite": [[18, "apache-airflow-providers-sqlite"]], "apache-airflow-providers-ssh": [[18, "apache-airflow-providers-ssh"]], "apache-airflow-providers-tableau": [[18, "apache-airflow-providers-tableau"]], "apache-airflow-providers-tabular": [[18, "apache-airflow-providers-tabular"]], "apache-airflow-providers-telegram": [[18, "apache-airflow-providers-telegram"]], "apache-airflow-providers-trino": [[18, "apache-airflow-providers-trino"]], "apache-airflow-providers-vertica": [[18, "apache-airflow-providers-vertica"]], "apache-airflow-providers-yandex": [[18, "apache-airflow-providers-yandex"]], "apache-airflow-providers-zendesk": [[18, "apache-airflow-providers-zendesk"]]}, "indexentries": {}}) \ No newline at end of file