ethyca-fides 2.69.1rc0__py2.py3-none-any.whl → 2.76.0rc2__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ethyca_fides-2.69.1rc0.dist-info → ethyca_fides-2.76.0rc2.dist-info}/METADATA +9 -6
- {ethyca_fides-2.69.1rc0.dist-info → ethyca_fides-2.76.0rc2.dist-info}/RECORD +488 -361
- fides/_version.py +3 -3
- fides/api/alembic/alembic.ini +5 -1
- fides/api/alembic/migrations/env.py +7 -1
- fides/api/alembic/migrations/versions/0eef0016cf06_adding_oauth2_config_for_.py +69 -0
- fides/api/alembic/migrations/versions/303287c70600_migrate_resource_type_from_enum_to_.py +99 -0
- fides/api/alembic/migrations/versions/30369bb8ae01_add_webmonitorgroupjob_model.py +67 -0
- fides/api/alembic/migrations/versions/3efe14d4469a_adds_new_experience_configs_for_vendor_.py +79 -0
- fides/api/alembic/migrations/versions/4bfbeff34611_add_polling_status.py +68 -0
- fides/api/alembic/migrations/versions/4d8c0fcc5771_adding_default_system_groups.py +78 -0
- fides/api/alembic/migrations/versions/5fa78b1f324d_add_event_audit_table.py +82 -0
- fides/api/alembic/migrations/versions/65a1bc82ae09_adds_experience_config_for_delete_.py +53 -0
- fides/api/alembic/migrations/versions/67d0e389b003_update_consentstatus_enum.py +47 -0
- fides/api/alembic/migrations/versions/795f46f656c0_migrate_field_type_from_enum_to_string.py +61 -0
- fides/api/alembic/migrations/versions/7db29f9cd77b_create_new_sub_request_table.py +95 -0
- fides/api/alembic/migrations/versions/918aefc950c9_create_digest_conditional_dependencies.py +125 -0
- fides/api/alembic/migrations/versions/9caf76161e55_make_user_assigned_data_uses_nullable_.py +64 -0
- fides/api/alembic/migrations/versions/9e0dcbf67b9f_add_digest_config.py +84 -0
- fides/api/alembic/migrations/versions/a55e12c2c2df_add_tagging_instructions_to_data_.py +29 -0
- fides/api/alembic/migrations/versions/a8e0c016afd_add_classification_benchmark_table.py +126 -0
- fides/api/alembic/migrations/versions/b97e92b038d2_add_digest_execution_model.py +117 -0
- fides/api/alembic/migrations/versions/b9bfa12c167b_add_not_applicable_to_asset_consentstatus.py +46 -0
- fides/api/alembic/migrations/versions/c09e76282dd1_add_privacy_request_duplication_cols.py +64 -0
- fides/api/alembic/migrations/versions/cd8649be3a2b_add_classifications_and_user_assigned_.py +74 -0
- fides/api/alembic/migrations/versions/e2cda8d6abc3_add_dismissed_in_activity_view_to_.py +29 -0
- fides/api/alembic/migrations/versions/f108fa05c579_adds_optional_duration_field_to_assets.py +28 -0
- fides/api/alembic/migrations/versions/f36ce1bde293_add_system_groups.py +132 -0
- fides/api/alembic/migrations/versions/fd7571bef683_adds_new_fields_to_messagingconfig_for_.py +31 -0
- fides/api/alembic/migrations/versions/xx_2025_10_17_1603_5093e92e2a5a_add_consent_data_v3_to_the_database.py +72 -0
- fides/api/alembic/migrations/versions/xx_2025_10_27_1834_67f0f2f4748e_adding_identity_definition_model.py +45 -0
- fides/api/alembic/migrations/versions/xx_2025_10_29_1659_80d28dea3b6b_added_duplicate_group_table.py +79 -0
- fides/api/alembic/migrations/versions/xx_2025_11_05_0200_f1a2b3c4d5e6_create_staged_resource_error_table.py +82 -0
- fides/api/alembic/migrations/versions/xx_2025_11_07_1709_56fe6fad2d89_add_notice_display_order.py +47 -0
- fides/api/alembic/migrations/versions/xx_2025_11_10_1200_a1b2c3d4e5f6_add_test_datastore_to_connectiontype.py +53 -0
- fides/api/alembic/migrations/versions/xx_2025_11_11_1317_7d82c8fc4c34_store_saas_template_datasets.py +68 -0
- fides/api/alembic/migrations/versions/xx_2025_11_12_1430_b2c3d4e5f6a7_add_default_identity_definitions.py +81 -0
- fides/api/alembic/migrations/versions/xx_2025_11_25_1854_3ff6449c099e_add_index_on_providedidentity_privacy_.py +50 -0
- fides/api/api/v1/api.py +2 -0
- fides/api/api/v1/endpoints/admin.py +39 -0
- fides/api/api/v1/endpoints/connection_endpoints.py +191 -47
- fides/api/api/v1/endpoints/connector_template_endpoints.py +167 -0
- fides/api/api/v1/endpoints/generic_overrides.py +90 -15
- fides/api/api/v1/endpoints/messaging_endpoints.py +164 -34
- fides/api/api/v1/endpoints/pre_approval_webhook_endpoints.py +5 -5
- fides/api/api/v1/endpoints/privacy_request_endpoints.py +231 -46
- fides/api/api/v1/endpoints/saas_config_endpoints.py +63 -92
- fides/api/api/v1/endpoints/storage_endpoints.py +5 -1
- fides/api/api/v1/endpoints/system.py +157 -100
- fides/api/api/v1/endpoints/user_endpoints.py +17 -4
- fides/api/app_setup.py +1 -3
- fides/api/common_exceptions.py +8 -0
- fides/api/db/base.py +8 -0
- fides/api/db/crud.py +30 -2
- fides/api/db/database.py +261 -4
- fides/api/db/safe_crud.py +377 -0
- fides/api/db/seed.py +35 -1
- fides/api/email_templates/get_email_template.py +3 -0
- fides/api/email_templates/template_names.py +1 -0
- fides/api/email_templates/templates/external_user_welcome.html +9 -5
- fides/api/email_templates/templates/manual_task_digest.html +316 -0
- fides/api/main.py +2 -0
- fides/api/migrations/post_upgrade_index_creation.py +20 -0
- fides/api/models/asset.py +17 -1
- fides/api/models/attachment.py +1 -0
- fides/api/models/conditional_dependency/__init__.py +0 -0
- fides/api/models/conditional_dependency/conditional_dependency_base.py +311 -0
- fides/api/models/connection_oauth_credentials.py +57 -0
- fides/api/models/connectionconfig.py +11 -1
- fides/api/models/detection_discovery/__init__.py +4 -0
- fides/api/models/detection_discovery/classification_benchmark.py +140 -0
- fides/api/models/detection_discovery/core.py +78 -3
- fides/api/models/detection_discovery/monitor_task.py +3 -1
- fides/api/models/detection_discovery/staged_resource_error.py +25 -0
- fides/api/models/detection_discovery/web_monitor.py +61 -0
- fides/api/models/digest/__init__.py +16 -0
- fides/api/models/digest/conditional_dependencies.py +275 -0
- fides/api/models/digest/digest_config.py +110 -0
- fides/api/models/digest/digest_execution.py +142 -0
- fides/api/models/event_audit.py +85 -0
- fides/api/models/experience_notices.py +6 -1
- fides/api/models/fides_user.py +9 -0
- fides/api/models/identity_definition.py +66 -0
- fides/api/models/location_regulation_selections.py +22 -0
- fides/api/models/manual_task/conditional_dependency.py +29 -87
- fides/api/models/manual_webhook.py +17 -6
- fides/api/models/messaging.py +30 -10
- fides/api/models/messaging_template.py +14 -0
- fides/api/models/policy.py +27 -0
- fides/api/models/privacy_experience.py +41 -0
- fides/api/models/privacy_notice.py +196 -13
- fides/api/models/privacy_preference.py +2 -0
- fides/api/models/privacy_request/duplicate_group.py +84 -0
- fides/api/models/privacy_request/privacy_request.py +154 -8
- fides/api/models/privacy_request/provided_identity.py +22 -1
- fides/api/models/privacy_request/request_task.py +98 -1
- fides/api/models/privacy_request/webhook.py +3 -1
- fides/api/models/saas_template_dataset.py +63 -0
- fides/api/models/sql_models.py +161 -7
- fides/api/models/system_group.py +85 -0
- fides/api/models/taxonomy.py +91 -9
- fides/api/models/v3/__init__.py +0 -0
- fides/api/models/v3/privacy_preferences.py +85 -0
- fides/api/models/worker_task.py +8 -0
- fides/api/oauth/roles.py +4 -0
- fides/api/schemas/application_config.py +32 -1
- fides/api/schemas/connection_configuration/connection_config.py +1 -30
- fides/api/schemas/connection_configuration/connection_oauth_config.py +42 -0
- fides/api/schemas/connection_configuration/connection_secrets_mongodb.py +15 -3
- fides/api/schemas/connection_configuration/connection_secrets_mssql.py +5 -0
- fides/api/schemas/messaging/messaging.py +49 -66
- fides/api/schemas/messaging/messaging_secrets_docs_only.py +1 -1
- fides/api/schemas/messaging/shared_schemas.py +102 -0
- fides/api/schemas/oauth.py +2 -1
- fides/api/schemas/privacy_center_config.py +29 -5
- fides/api/schemas/privacy_request.py +44 -7
- fides/api/schemas/saas/async_polling_configuration.py +81 -0
- fides/api/schemas/saas/connector_template.py +14 -0
- fides/api/schemas/saas/saas_config.py +12 -20
- fides/api/schemas/system.py +8 -0
- fides/api/schemas/taxonomy_extensions.py +8 -0
- fides/api/schemas/user.py +2 -2
- fides/api/service/async_dsr/handlers/__init__.py +0 -0
- fides/api/service/async_dsr/handlers/polling_attachment_handler.py +155 -0
- fides/api/service/async_dsr/handlers/polling_request_handler.py +88 -0
- fides/api/service/async_dsr/handlers/polling_response_handler.py +261 -0
- fides/api/service/async_dsr/handlers/polling_sub_request_handler.py +123 -0
- fides/api/service/async_dsr/strategies/__init__.py +0 -0
- fides/api/service/async_dsr/strategies/async_dsr_strategy.py +52 -0
- fides/api/service/async_dsr/strategies/async_dsr_strategy_callback.py +199 -0
- fides/api/service/async_dsr/strategies/async_dsr_strategy_factory.py +72 -0
- fides/api/service/async_dsr/strategies/async_dsr_strategy_polling.py +691 -0
- fides/api/service/async_dsr/utils.py +130 -0
- fides/api/service/connectors/base_erasure_email_connector.py +7 -0
- fides/api/service/connectors/bigquery_connector.py +34 -16
- fides/api/service/connectors/fides/fides_client.py +63 -1
- fides/api/service/connectors/http_connector.py +48 -12
- fides/api/service/connectors/microsoft_sql_server_connector.py +6 -1
- fides/api/service/connectors/mongodb_connector.py +74 -9
- fides/api/service/connectors/query_configs/saas_query_config.py +160 -79
- fides/api/service/connectors/saas/connector_registry_service.py +42 -135
- fides/api/service/connectors/saas_connector.py +116 -76
- fides/api/service/connectors/sql_connector.py +14 -4
- fides/api/service/deps.py +25 -2
- fides/api/service/messaging/message_dispatch_service.py +98 -20
- fides/api/service/messaging/messaging_crud_service.py +5 -9
- fides/api/service/privacy_request/attachment_handling.py +9 -2
- fides/api/service/privacy_request/dsr_package/dsr_report_builder.py +17 -9
- fides/api/service/privacy_request/dsr_package/templates/attachments_index.html +41 -30
- fides/api/service/privacy_request/dsr_package/templates/clickme.html +68 -0
- fides/api/service/privacy_request/dsr_package/templates/dataset_index.html +30 -27
- fides/api/service/privacy_request/duplication_detection.py +439 -0
- fides/api/service/privacy_request/email_batch_service.py +2 -1
- fides/api/service/privacy_request/request_runner_service.py +92 -91
- fides/api/service/privacy_request/request_service.py +74 -90
- fides/api/service/saas_request/saas_request_override_factory.py +71 -1
- fides/api/service/storage/streaming/schemas.py +27 -19
- fides/api/service/storage/streaming/smart_open_client.py +2 -2
- fides/api/service/storage/streaming/smart_open_streaming_storage.py +238 -147
- fides/api/service/storage/util.py +20 -106
- fides/api/service/strategy.py +6 -3
- fides/api/task/conditional_dependencies/privacy_request/__init__.py +0 -0
- fides/api/task/conditional_dependencies/privacy_request/convenience_fields.py +155 -0
- fides/api/task/conditional_dependencies/privacy_request/privacy_request_data.py +140 -0
- fides/api/task/conditional_dependencies/privacy_request/schemas.py +212 -0
- fides/api/task/conditional_dependencies/sql_schemas.py +301 -0
- fides/api/task/conditional_dependencies/sql_translator.py +757 -0
- fides/api/task/conditional_dependencies/util.py +111 -0
- fides/api/task/execute_request_tasks.py +34 -13
- fides/api/task/filter_results.py +35 -2
- fides/api/task/graph_runners.py +2 -32
- fides/api/task/graph_task.py +42 -12
- fides/api/task/manual/manual_task_conditional_evaluation.py +33 -28
- fides/api/task/manual/manual_task_graph_task.py +4 -1
- fides/api/task/manual/manual_task_utils.py +68 -26
- fides/api/task/scheduler_utils.py +39 -0
- fides/api/tasks/__init__.py +15 -1
- fides/api/util/cache.py +5 -1
- fides/api/util/connection_util.py +101 -218
- fides/api/util/event_audit_util.py +230 -0
- fides/api/util/filter_utils.py +0 -3
- fides/api/util/fuzzy_search_utils.py +7 -1
- fides/api/util/lock.py +13 -3
- fides/api/util/logger.py +58 -4
- fides/api/util/logger_context_utils.py +3 -1
- fides/api/util/masking_util.py +31 -0
- fides/api/util/memory_watchdog.py +118 -0
- fides/api/util/rate_limit.py +25 -7
- fides/api/util/saas_config_updater.py +76 -0
- fides/api/util/saas_util.py +28 -1
- fides/api/worker/__init__.py +6 -0
- fides/common/api/scope_registry.py +6 -7
- fides/common/api/v1/urn_registry.py +15 -3
- fides/config/__init__.py +11 -2
- fides/config/celery_settings.py +42 -0
- fides/config/config_proxy.py +10 -0
- fides/config/duplicate_detection_settings.py +31 -0
- fides/config/execution_settings.py +6 -6
- fides/config/security_settings.py +4 -1
- fides/config/utils.py +5 -0
- fides/data/language/languages.yml +2 -0
- fides/service/connection/__init__.py +0 -0
- fides/service/connection/connection_service.py +651 -0
- fides/service/dataset/dataset_service.py +39 -0
- fides/service/event_audit_service.py +109 -0
- fides/service/messaging/aws_ses_service.py +2 -4
- fides/service/messaging/messaging_service.py +75 -74
- fides/service/privacy_request/privacy_request_service.py +345 -100
- fides/service/system/__init__.py +0 -0
- fides/service/system/system_service.py +153 -0
- fides/service/taxonomy/handlers/legacy_handler.py +3 -3
- fides/service/taxonomy/taxonomy_service.py +64 -18
- fides/ui-build/static/admin/404.html +1 -1
- fides/ui-build/static/admin/_next/static/chunks/1099-688fa865621531cc.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/1115-7fd171dac1eb0e51.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/1276.deb10ae2643f8463.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/1438-8a33b3834d6e43f3.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{6148-59a59d5c5925344f.js → 1533-84e250d1f26e6d7d.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/1821-c1daa160f492aacf.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/1840-359ee056e4cf6629.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{1975.78e719130cfe3fd6.js → 1975.bef017bc80e2012c.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/2040-70972e15960d9afe.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/2121.321b0fd3932164d4.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/2397-3434603a97f3f5d6.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/2921-49ed0ed897832958.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3150-da5406b80d25fe6d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3214-90ce0a366b0f461a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3377-02bf9780fd383d94.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3615-5e2d062d684b8fa1.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3655-5e1ba5dd68b5ec48.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3729-31ff8ba51491bf21.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3872-cff30ca0844fe2b1.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3931-8bedde156fe83564.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/401-582d9970d89deefe.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/4093-7e47408c28de5375.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{4259.d1507e0db19cbed7.js → 4259.05038c9b78467244.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/431-e01ee730c8ad9ece.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/4322-f6aeff6880726c83.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/4339-04a715ab07122744.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/4496-ccbce2459174e0d6.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/454-d5c2c84f1a14e4f1.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/4589-c1d83c6a8dab4d30.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/4809-a8f4a108a42f53ed.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/4903-19c0bc07a956dfa8.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/4910-d990773601f794c1.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/5185-96423702fba70ced.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/5258-4e308cca01d59367.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/5487-5c3501754bf027ba.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/549-1bdc3e6f3264c020.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/5505-43b9c39491b88e08.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/5698.2135391a128cc373.js +164 -0
- fides/ui-build/static/admin/_next/static/chunks/5783-016dfcee8e49bf61.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/5826-4db99ea4e5077911.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/590-be447cacf12419dd.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6084-91badbc6569a0efb.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6344-026cb323c1d49926.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6362-ba0e12f2fc4cad94.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6853-882889659769d7b4.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6882-bb1b469d7d7f5335.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6954-0dcf22a9aabe39c5.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/7170-46db82bb5b55e856.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/7218-2ace8c82e3e7eb74.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/7245-1cdafb35f289861b.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/7630-7f75ab7b8df42eb3.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/7654-2e9a8be02e41769a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/8212-348ddd2b6933db70.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/9014-eeae6f581158e645.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{5596-bb601cbf40e47a0f.js → 9195-da717d324917b049.js} +3 -3
- fides/ui-build/static/admin/_next/static/chunks/9450-b7b7bb1d755ecf57.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{9676.9fd9552ef744c717.js → 9676.1f395eeb9cc34968.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/9826-1078e46f3ac0b688.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/9911-ece086f2230e34f0.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/{404-471a6b18e712f050.js → 404-800be6996aaa999c.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{_app-fcdad91f6f66292b.js → _app-de4b578c904df772.js} +57 -220
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems/manual-f12020b82dd4bd1a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems/multiple-a911b7990371704d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems-ad585b79953c2753.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/configure/{add-vendors-406170eaae4329c6.js → add-vendors-bb263d394ca1c8fa.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/configure-6907c368d8611c44.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-experience/{[id]-f80cf2d3966816fd.js → [id]-c32f381af358149b.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-experience/{new-e74cb5ea87f15b40.js → new-6efb3c069d8b47dd.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-experience-1975c529905eea9b.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices/{[id]-b378576cba255609.js → [id]-b05331178928ab52.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices/{new-2ca1de7b88094ab0.js → new-516834e930bb0d0d.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices-985717f2565f9d9d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/{properties-226efa1dcd41437f.js → properties-2be773e08498e40c.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/reporting-850afb74f4192e87.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/consent-b63d1e395d879b86.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects/[projectUrn]/[resourceUrn]-5b28f0f674ea87bd.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects/{[projectUrn]-04cfe2cfba7b7cd8.js → [projectUrn]-676177e2f3c9c2a2.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects-794906929efb8e1d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/resources/[resourceUrn]-3ccbf7c0d06507b9.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog-1ea0b24d306b1e67.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/datastore/[monitorId]-d4861a4a218bb65a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/datastore-4498881c26f1458d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/infrastructure/[monitorId]-66bd265044daf97d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/infrastructure-c9c79fa8576a4f77.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/website/[monitorId]/[systemId]-60cacc3232c2eead.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/website/[monitorId]-437bd64a3016de36.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/website-5b3e0009d442bc3f.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center-8349248c2da970a6.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/activity-6919a1d6cadaa46b.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/detection/{[resourceUrn]-8f736b078e9842da.js → [resourceUrn]-1a50d421897d3da1.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/{detection-eb814e3c22807871.js → detection-49509414a15e8393.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/discovery/{[resourceUrn]-6875b7783fcfda2f.js → [resourceUrn]-1a1bb80b586d0c0f.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/{discovery-172dbd7740e212ca.js → discovery-49de61df1e8e7fba.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datamap-c2719f5cff20c0f8.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]/[collectionName]/{[...subfieldNames]-dfd71c1e9c458b89.js → [...subfieldNames]-415015aebab60436.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]/{[collectionName]-7cdc42ec5493b83d.js → [collectionName]-5accb09715b5122d.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]-aebecca1d8ec5f98.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/new-9551a82ddec9f909.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset-72f8fe47beef0f09.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/[id]-3a8aa3f633528e88.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/new-87512616f35ec6da.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection-2f1bf4eac7aa55fd.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/{fides-js-docs-1f4335dca5c09860.js → fides-js-docs-5235760b3e508d7d.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/index-8d67cd2872cb682a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/integrations/[id]-7a631df29cd0e31a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/integrations-ea3bc43cdaf273de.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/new-privacy-requests-5d8632bba1b81cd4.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/digests/[id]-92e01822ecde8fb8.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/digests/new-1256cf6d3f6794e0.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/digests-0daac00911d27617.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/providers/[key]-2d976fe5e8ba0a3a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/providers/new-7766ba497b863740.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/providers-f2880d2ed4734270.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/templates/[id]-669f585c3458faff.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/templates/add-template-c79e7724e4bc3899.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/templates-891654e8dc13965c.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications-40c8148244c5d347.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/ant-components-1e86f3e28bd23ed6.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/AntForm-9b7bd8c38f02c091.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikAntFormItem-b18a53a940cf9e19.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikControlled-6d028d7450e77578.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikField-8399083ee2cd8cc2.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/forms-0a910125cdb2b3b8.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/[id]-acc90b6f7fe915cb.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure/storage-bbc42026f2685438.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure-c08ca6ad21c99799.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests-77c2db582f8823bc.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/properties/{[id]-e784c05d056b2371.js → [id]-74ccea4868408e3d.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/properties/{add-property-0a7a2db148a7561a.js → add-property-7d9f09bfe9d44dfc.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{properties-da734840e4f9d04b.js → properties-cd77bc30672bb1fa.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/reporting/datamap-cc3bd9540132d5ed.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/sandbox/privacy-notices-7ce7d720107ab4b5.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/about/alpha-68eaac2d79133679.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/about-6c4904c157477285.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/consent/[configuration_id]/[purpose_id]-ae789892343c24f5.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/consent-13ee1b331ced0846.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields/[id]-ee4e43692336a330.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields/new-ca51d794abfcbf25.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields-ecd1dc5db8e81409.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/domain-records-df06f7e2f668c540.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/domains-da0c77bd510c6c51.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/email-templates-950b0c115bf673d8.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/{locations-2e635dcd11b78224.js → locations-7e36cb4756973a9d.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/organization-a0e5ed486d24ccf3.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/privacy-requests-3cdebafb6870d3ad.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/{regulations-7c02e469d8c5bd74.js → regulations-159aad34f1021320.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/systems/configure/[id]/test-datasets-dbd1a64090ad0946.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/systems/configure/[id]-7d042497a57a3788.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/systems-21f1172e73dfc9f0.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/taxonomy-e553161e6338ee48.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/user-management/{new-92f52c43f522a350.js → new-efc4af017723e57a.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/user-management/profile/{[id]-64452dfae2c5e614.js → [id]-b152319d67372ee4.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/user-management-dba8692491f7935e.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/webpack-09ca52bc7beb0b43.js +1 -0
- fides/ui-build/static/admin/_next/static/css/012b10627a654d5c.css +1 -0
- fides/ui-build/static/admin/_next/static/css/05d05fc31d09638b.css +1 -0
- fides/ui-build/static/admin/_next/static/css/0fd6e0884cfcc5f3.css +1 -0
- fides/ui-build/static/admin/_next/static/css/14ba79c49597d37a.css +1 -0
- fides/ui-build/static/admin/_next/static/css/{34a7eb08b86ddb57.css → 3d6582469f7d56e0.css} +1 -1
- fides/ui-build/static/admin/_next/static/css/3d66bb57ddcb0978.css +1 -0
- fides/ui-build/static/admin/_next/static/css/4861ca3e088f2d05.css +1 -0
- fides/ui-build/static/admin/_next/static/css/a1800714b486e230.css +1 -0
- fides/ui-build/static/admin/_next/static/css/a1e4be9466578ef1.css +1 -0
- fides/ui-build/static/admin/_next/static/css/af32fcac7a177a0e.css +1 -0
- fides/ui-build/static/admin/_next/static/css/cb417f0587918f85.css +1 -0
- fides/ui-build/static/admin/_next/static/css/dd15c278b964de80.css +1 -0
- fides/ui-build/static/admin/_next/static/css/{5f393dea1c0d031c.css → f89607996ad54f4b.css} +1 -1
- fides/ui-build/static/admin/_next/static/css/f9a2a44d3d34c904.css +1 -0
- fides/ui-build/static/admin/_next/static/l2vgGUHB04Fi4oEVlVMrc/_buildManifest.js +1 -0
- fides/ui-build/static/admin/add-systems/manual.html +1 -1
- fides/ui-build/static/admin/add-systems/multiple.html +1 -1
- fides/ui-build/static/admin/add-systems.html +1 -1
- fides/ui-build/static/admin/consent/configure/add-vendors.html +1 -1
- fides/ui-build/static/admin/consent/configure.html +1 -1
- fides/ui-build/static/admin/consent/privacy-experience/[id].html +1 -1
- fides/ui-build/static/admin/consent/privacy-experience/new.html +1 -1
- fides/ui-build/static/admin/consent/privacy-experience.html +1 -1
- fides/ui-build/static/admin/consent/privacy-notices/[id].html +1 -1
- fides/ui-build/static/admin/consent/privacy-notices/new.html +1 -1
- fides/ui-build/static/admin/consent/privacy-notices.html +1 -1
- fides/ui-build/static/admin/consent/properties.html +1 -1
- fides/ui-build/static/admin/consent/reporting.html +1 -1
- fides/ui-build/static/admin/consent.html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/projects/[projectUrn]/[resourceUrn].html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/projects/[projectUrn].html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/projects.html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/resources/[resourceUrn].html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/resources.html +1 -1
- fides/ui-build/static/admin/data-catalog.html +1 -1
- fides/ui-build/static/admin/data-discovery/action-center/datastore/[monitorId].html +1 -0
- fides/ui-build/static/admin/data-discovery/action-center/datastore.html +1 -0
- fides/ui-build/static/admin/data-discovery/action-center/infrastructure/[monitorId].html +1 -0
- fides/ui-build/static/admin/data-discovery/action-center/infrastructure.html +1 -0
- fides/ui-build/static/admin/data-discovery/action-center/website/[monitorId]/[systemId].html +1 -0
- fides/ui-build/static/admin/data-discovery/action-center/website/[monitorId].html +1 -0
- fides/ui-build/static/admin/data-discovery/action-center/website.html +1 -0
- fides/ui-build/static/admin/data-discovery/action-center.html +1 -1
- fides/ui-build/static/admin/data-discovery/activity.html +1 -1
- fides/ui-build/static/admin/data-discovery/detection/[resourceUrn].html +1 -1
- fides/ui-build/static/admin/data-discovery/detection.html +1 -1
- fides/ui-build/static/admin/data-discovery/discovery/[resourceUrn].html +1 -1
- fides/ui-build/static/admin/data-discovery/discovery.html +1 -1
- fides/ui-build/static/admin/datamap.html +1 -1
- fides/ui-build/static/admin/dataset/[datasetId]/[collectionName]/[...subfieldNames].html +1 -1
- fides/ui-build/static/admin/dataset/[datasetId]/[collectionName].html +1 -1
- fides/ui-build/static/admin/dataset/[datasetId].html +1 -1
- fides/ui-build/static/admin/dataset/new.html +1 -1
- fides/ui-build/static/admin/dataset.html +1 -1
- fides/ui-build/static/admin/datastore-connection/[id].html +1 -1
- fides/ui-build/static/admin/datastore-connection/new.html +1 -1
- fides/ui-build/static/admin/datastore-connection.html +1 -1
- fides/ui-build/static/admin/index.html +1 -1
- fides/ui-build/static/admin/integrations/[id].html +1 -1
- fides/ui-build/static/admin/integrations.html +1 -1
- fides/ui-build/static/admin/lib/fides-ext-gpp.js +1 -1
- fides/ui-build/static/admin/lib/fides-headless.js +1 -1
- fides/ui-build/static/admin/lib/fides-preview.js +1 -1
- fides/ui-build/static/admin/lib/fides-tcf.js +3 -3
- fides/ui-build/static/admin/lib/fides.js +3 -3
- fides/ui-build/static/admin/login/[provider].html +1 -1
- fides/ui-build/static/admin/login.html +1 -1
- fides/ui-build/static/admin/new-privacy-requests.html +1 -0
- fides/ui-build/static/admin/notifications/digests/[id].html +1 -0
- fides/ui-build/static/admin/notifications/digests/new.html +1 -0
- fides/ui-build/static/admin/notifications/digests.html +1 -0
- fides/ui-build/static/admin/notifications/providers/[key].html +1 -0
- fides/ui-build/static/admin/notifications/providers/new.html +1 -0
- fides/ui-build/static/admin/notifications/providers.html +1 -0
- fides/ui-build/static/admin/notifications/templates/[id].html +1 -0
- fides/ui-build/static/admin/notifications/templates/add-template.html +1 -0
- fides/ui-build/static/admin/notifications/templates.html +1 -0
- fides/ui-build/static/admin/notifications.html +1 -0
- fides/ui-build/static/admin/poc/ant-components.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/AntForm.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/FormikAntFormItem.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/FormikControlled.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/FormikField.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/FormikSpreadField.html +1 -1
- fides/ui-build/static/admin/poc/forms.html +1 -1
- fides/ui-build/static/admin/privacy-requests/[id].html +1 -1
- fides/ui-build/static/admin/privacy-requests/configure/storage.html +1 -1
- fides/ui-build/static/admin/privacy-requests/configure.html +1 -1
- fides/ui-build/static/admin/privacy-requests.html +1 -1
- fides/ui-build/static/admin/properties/[id].html +1 -1
- fides/ui-build/static/admin/properties/add-property.html +1 -1
- fides/ui-build/static/admin/properties.html +1 -1
- fides/ui-build/static/admin/reporting/datamap.html +1 -1
- fides/ui-build/static/admin/sandbox/privacy-notices.html +1 -0
- fides/ui-build/static/admin/settings/about/alpha.html +1 -1
- fides/ui-build/static/admin/settings/about.html +1 -1
- fides/ui-build/static/admin/settings/consent/[configuration_id]/[purpose_id].html +1 -1
- fides/ui-build/static/admin/settings/consent.html +1 -1
- fides/ui-build/static/admin/settings/custom-fields/[id].html +1 -0
- fides/ui-build/static/admin/settings/custom-fields/new.html +1 -0
- fides/ui-build/static/admin/settings/custom-fields.html +1 -1
- fides/ui-build/static/admin/settings/domain-records.html +1 -1
- fides/ui-build/static/admin/settings/domains.html +1 -1
- fides/ui-build/static/admin/settings/email-templates.html +1 -1
- fides/ui-build/static/admin/settings/locations.html +1 -1
- fides/ui-build/static/admin/settings/organization.html +1 -1
- fides/ui-build/static/admin/settings/privacy-requests.html +1 -1
- fides/ui-build/static/admin/settings/regulations.html +1 -1
- fides/ui-build/static/admin/systems/configure/[id]/test-datasets.html +1 -1
- fides/ui-build/static/admin/systems/configure/[id].html +1 -1
- fides/ui-build/static/admin/systems.html +1 -1
- fides/ui-build/static/admin/taxonomy.html +1 -1
- fides/ui-build/static/admin/user-management/new.html +1 -1
- fides/ui-build/static/admin/user-management/profile/[id].html +1 -1
- fides/ui-build/static/admin/user-management.html +1 -1
- fides/api/service/async_dsr/async_dsr_service.py +0 -75
- fides/api/service/privacy_request/dsr_package/templates/welcome.html +0 -66
- fides/ui-build/static/admin/_next/static/OmXHlY9MvjoZH9jDkAytl/_buildManifest.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/1099-79646e64f26d62fa.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/1316-2606e19807c08aa5.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/1345-5e1c5b66e25c566e.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/1467-8808ec8836e033f9.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/1817-0ca16d288fad916d.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/2150-930ffaf2c4718edc.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/255-1bc0cbef7a59cdc6.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/2921-52328140bc420d0f.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/346-aa3b88efb85f2e28.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/3550-d04125c828d591a1.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/3620-602eb74dc896d556.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/3729-c17ac8031a4c4fd1.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/3847-230bf61b053bc706.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/3855-ef5194cdb228beb6.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/3872-f78dec02f0d959ae.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/3923-bb2417b8dcade7a4.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/401-4af0a912e249d30f.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/4164-355644b916ae0094.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/431-86ad2beeb93c95c9.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/4608-be8cba73f5d7c326.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/4786-61154adf88e448e1.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/4808-dd4157aa72648068.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/4831-fd99c0b3784de128.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/4844-46324c3d848b8b6a.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/5163-e682273cd76a7d07.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/5258-b0de22a8521686ab.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/5487-02d00bad7c6830e0.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/549-38ea1d91ee2addaa.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/5619-9b50cec521203989.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/6084-c153669d5567e242.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/6419-d0c00d661b01f8fa.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/6853-b17673391117c976.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/6954-5296188c19d7d0ac.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/699-8ca44b0de9fa20f0.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/7476-45c5088baa8b66af.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/7630-7ed6c6117775dffe.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/787-a8c7eab617e2fceb.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/79-65674011d455af4d.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/796-9e1ca1a4030707c5.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/8002-24af20d679efc04e.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/8765-f622a35b40a7ec63.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9046-712156d461165f56.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9187-7438242f0d380bb0.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9278-08cc704317fe535e.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9729-fcf6ff4e3534e4a8.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9826-dbae8dee941a7fac.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9951-a88367a129b724ba.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems/manual-ace203dfacacbdc4.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems/multiple-920fb469e0dda1d2.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems-bd0d82078e67cac3.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/configure-7207ab23bdb36ce8.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-experience-9dda4de5ec580279.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices-0d4844d0b808e6e4.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/reporting-28b192e2c074b0f3.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent-3e8bdefe714254ec.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects/[projectUrn]/[resourceUrn]-2c29ff7a01198f30.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects-5f2d7b24804f861f.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/resources/[resourceUrn]-8eb581024bc0172f.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog-30108b00ac769fc3.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/[monitorId]/[systemId]-e1ba213fb666b3f4.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/[monitorId]-6d133580045abdda.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center-9a81d42a474e1e48.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/activity-b6ae7adb8ef0b525.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datamap-c7390e046b2e2b7f.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]-e12b11ba15bc3fc1.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/new-e32fccc4ca520d2b.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset-7c59a6abf6ba6207.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/[id]-927b7e476c4b47d0.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/new-cbe100d50df34285.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection-cce20440b177050b.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/index-6cd8708106331b8d.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/integrations/[id]-4c3c413a2668df53.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/integrations-95402b5001c07ef2.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/messaging/[id]-3c6dc2f6e6bae960.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/messaging/add-template-4a6d4023a7791be8.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/messaging-76b204c9b98d656f.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/ant-components-bc0e2adf6e0d3ac7.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/AntForm-86ffcc1ad3fa912e.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikAntFormItem-ec04f595465bdf69.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikControlled-41d309754ff0c1de.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikField-cab1f78cec7808f9.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/forms-eb6058221403b156.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/table-migration-48500551fd6a7602.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/[id]-0f25a76dd18c5e20.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure/messaging-ad6ad3e5bd72765d.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure/storage-6032d82f0fc2893d.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure-d83e5bd52a638234.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests-baf31c3e4b081046.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/reporting/datamap-6903f42a0412bfa6.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/about/alpha-a82f3df840d5c1b5.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/about-d06fb16487705b9d.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/consent/[configuration_id]/[purpose_id]-9495e2eb506606c7.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/consent-93a978443bf299db.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields-9ecb803099082bf4.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/domain-records-16fdd91a81074dd1.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/domains-4cdd6001e7cb9aee.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/email-templates-1914de830ce5cfc4.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/organization-f547f1f33c12faf3.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/privacy-requests-2ecc073f41628f62.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/systems/configure/[id]/test-datasets-20b1193ed76c56b0.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/systems/configure/[id]-6e15332935f6b538.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/systems-fbc8761ef4d55516.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/taxonomy-4d7827fc9c46b6b8.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/user-management-9cec020f89544426.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/webpack-678e89d68dbcd94f.js +0 -1
- fides/ui-build/static/admin/_next/static/css/073713cd1eddda79.css +0 -1
- fides/ui-build/static/admin/_next/static/css/23cf870196941c9a.css +0 -1
- fides/ui-build/static/admin/_next/static/css/304c6f148886a8d4.css +0 -1
- fides/ui-build/static/admin/_next/static/css/650df9c348000a26.css +0 -1
- fides/ui-build/static/admin/data-discovery/action-center/[monitorId]/[systemId].html +0 -1
- fides/ui-build/static/admin/data-discovery/action-center/[monitorId].html +0 -1
- fides/ui-build/static/admin/messaging/[id].html +0 -1
- fides/ui-build/static/admin/messaging/add-template.html +0 -1
- fides/ui-build/static/admin/messaging.html +0 -1
- fides/ui-build/static/admin/poc/table-migration.html +0 -1
- fides/ui-build/static/admin/privacy-requests/configure/messaging.html +0 -1
- {ethyca_fides-2.69.1rc0.dist-info → ethyca_fides-2.76.0rc2.dist-info}/WHEEL +0 -0
- {ethyca_fides-2.69.1rc0.dist-info → ethyca_fides-2.76.0rc2.dist-info}/entry_points.txt +0 -0
- {ethyca_fides-2.69.1rc0.dist-info → ethyca_fides-2.76.0rc2.dist-info}/licenses/LICENSE +0 -0
- {ethyca_fides-2.69.1rc0.dist-info → ethyca_fides-2.76.0rc2.dist-info}/top_level.txt +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/{resources-de704de849960f01.js → resources-81d1b50585468fb0.js} +0 -0
- /fides/ui-build/static/admin/_next/static/{OmXHlY9MvjoZH9jDkAytl → l2vgGUHB04Fi4oEVlVMrc}/_ssgManifest.js +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
if(typeof Fides<"u"&&Fides.options?.fidesUnsupportedRepeatedScriptLoading!=="enabled_acknowledge_not_supported")throw new Error("Fides detected that it was already loaded on this page, aborting execution! See https://www.ethyca.com/docs/dev-docs/js/troubleshooting for more information.");(function(b,He){typeof exports=="object"&&typeof module<"u"?He(exports):(b=typeof globalThis<"u"?globalThis:b||self,He(b.Fides={}))})(this,function(b){"use strict";var He=Object.defineProperty,sr=(e,t,n)=>t in e?He(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Ot=(e,t,n)=>sr(e,typeof t!="symbol"?t+"":t,n);class Ct{constructor(t,n,i){Ot(this,"consentPreference"),Ot(this,"notice"),Ot(this,"noticeHistoryId"),this.notice=t,this.consentPreference=n,this.noticeHistoryId=i}}b.TCMobileDataVals=void 0,(e=>{(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFgdprApplies||(e.IABTCFgdprApplies={})),(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFPurposeOneTreatment||(e.IABTCFPurposeOneTreatment={})),(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFUseNonStandardTexts||(e.IABTCFUseNonStandardTexts={}))})(b.TCMobileDataVals||(b.TCMobileDataVals={}));var pn=(e=>(e.GPP_US_NATIONAL="gpp_us_national",e.GPP_US_STATE="gpp_us_state",e))(pn||{}),_n=(e=>(e.FRONTEND="frontend",e.SYSTEM_WIDE="system_wide",e.NOT_APPLICABLE="not_applicable",e))(_n||{}),V=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.NOTICE_ONLY="notice_only",e))(V||{}),H=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.ACKNOWLEDGE="acknowledge",e.NOT_APPLICABLE="not_applicable",e.TCF="tcf",e))(H||{}),we=(e=>(e.OMIT="omit",e.INCLUDE="include",e))(we||{}),de=(e=>(e.BOOLEAN="boolean",e.CONSENT_MECHANISM="consent_mechanism",e))(de||{}),ue=(e=>(e.THROW="throw",e.WARN="warn",e.IGNORE="ignore",e))(ue||{}),U=(e=>(e.OVERLAY="overlay",e.BANNER_AND_MODAL="banner_and_modal",e.MODAL="modal",e.PRIVACY_CENTER="privacy_center",e.TCF_OVERLAY="tcf_overlay",e.HEADLESS="headless",e))(U||{}),vn=(e=>(e.ALWAYS_ENABLED="always_enabled",e.ENABLED_WHERE_REQUIRED="enabled_where_required",e.ALWAYS_DISABLED="always_disabled",e))(vn||{}),gn=(e=>(e.PURPOSES="/tcf/purposes",e.FEATURES="/tcf/features",e.VENDORS="/tcf/vendors",e))(gn||{}),Ee=(e=>(e.OPTIONS="options",e.EXPERIENCE_TRANSLATION="language",e))(Ee||{}),ee=(e=>(e.PRIMARY="primary",e.SECONDARY="secondary",e.TERTIARY="tertiary",e))(ee||{}),Pt=(e=>(e.ACKNOWLEDGE="acknowledge",e.OPT_IN_OPT_OUT="opt_in_opt_out",e.OPT_IN_ONLY="opt_in_only",e))(Pt||{}),bn=(e=>(e.REJECT_ALL="reject_all",e.REJECT_CONSENT_ONLY="reject_consent_only",e))(bn||{}),L=(e=>(e.BUTTON="button",e.REJECT="reject",e.ACCEPT="accept",e.SCRIPT="script",e.SAVE="save",e.DISMISS="dismiss",e.GPC="gpc",e.INDIVIDUAL_NOTICE="individual_notice",e.ACKNOWLEDGE="acknowledge",e.OT_MIGRATION="ot_migration",e))(L||{}),hn=(e=>(e.privacy_center="privacy_center",e.overlay="overlay",e.api="api",e))(hn||{}),oe=(e=>(e.NONE="none",e.APPLIED="applied",e.OVERRIDDEN="overridden",e))(oe||{}),Le=(e=>(e.OVERLAY="overlay",e.MODAL="modal",e.BANNER="banner",e.PRIVACY_CENTER="privacy_center",e.TCF_OVERLAY="tcf_overlay",e.TCF_BANNER="tcf_banner",e))(Le||{}),xt=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Ke={exports:{}};/*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */Ke.exports,function(e,t){(function(n){var i=t,o=e&&e.exports==i&&e,r=typeof xt=="object"&&xt;(r.global===r||r.window===r)&&(n=r);var l=function(g){this.message=g};l.prototype=new Error,l.prototype.name="InvalidCharacterError";var s=function(g){throw new l(g)},a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",c=/[\t\n\f\r ]/g,u=function(g){g=String(g).replace(c,"");var f=g.length;f%4==0&&(g=g.replace(/==?$/,""),f=g.length),(f%4==1||/[^+a-zA-Z0-9/]/.test(g))&&s("Invalid character: the string to be decoded is not correctly encoded.");for(var v=0,y,m,w="",k=-1;++k<f;)m=a.indexOf(g.charAt(k)),y=v%4?y*64+m:m,v++%4&&(w+=String.fromCharCode(255&y>>(-2*v&6)));return w},d=function(g){g=String(g),/[^\0-\xFF]/.test(g)&&s("The string to be encoded contains characters outside of the Latin1 range.");for(var f=g.length%3,v="",y=-1,m,w,k,E,N=g.length-f;++y<N;)m=g.charCodeAt(y)<<16,w=g.charCodeAt(++y)<<8,k=g.charCodeAt(++y),E=m+w+k,v+=a.charAt(E>>18&63)+a.charAt(E>>12&63)+a.charAt(E>>6&63)+a.charAt(E&63);return f==2?(m=g.charCodeAt(y)<<8,w=g.charCodeAt(++y),E=m+w,v+=a.charAt(E>>10)+a.charAt(E>>4&63)+a.charAt(E<<2&63)+"="):f==1&&(E=g.charCodeAt(y),v+=a.charAt(E>>2)+a.charAt(E<<4&63)+"=="),v},h={encode:d,decode:u,version:"1.0.0"};if(i&&!i.nodeType)if(o)o.exports=h;else for(var _ in h)h.hasOwnProperty(_)&&(i[_]=h[_]);else n.base64=h})(xt)}(Ke,Ke.exports);var yn=Ke.exports;/*! js-cookie v3.0.5 | MIT */function Ye(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)e[i]=n[i]}return e}var lr={read:function(e){return e[0]==='"'&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}};function Nt(e,t){function n(o,r,l){if(!(typeof document>"u")){l=Ye({},t,l),typeof l.expires=="number"&&(l.expires=new Date(Date.now()+l.expires*864e5)),l.expires&&(l.expires=l.expires.toUTCString()),o=encodeURIComponent(o).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var s="";for(var a in l)l[a]&&(s+="; "+a,l[a]!==!0&&(s+="="+l[a].split(";")[0]));return document.cookie=o+"="+e.write(r,o)+s}}function i(o){if(!(typeof document>"u"||arguments.length&&!o)){for(var r=document.cookie?document.cookie.split("; "):[],l={},s=0;s<r.length;s++){var a=r[s].split("="),c=a.slice(1).join("=");try{var u=decodeURIComponent(a[0]);if(l[u]=e.read(c,u),o===u)break}catch{}}return o?l[o]:l}}return Object.create({set:n,get:i,remove:function(o,r){n(o,"",Ye({},r,{expires:-1}))},withAttributes:function(o){return Nt(this.converter,Ye({},this.attributes,o))},withConverter:function(o){return Nt(Ye({},this.converter,o),this.attributes)}},{attributes:{value:Object.freeze(t)},converter:{value:Object.freeze(e)}})}var cr=Nt(lr,{path:"/"});let qe;const dr=new Uint8Array(16);function ur(){if(!qe&&(qe=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!qe))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return qe(dr)}const M=[];for(let e=0;e<256;++e)M.push((e+256).toString(16).slice(1));function fr(e,t=0){return M[e[t+0]]+M[e[t+1]]+M[e[t+2]]+M[e[t+3]]+"-"+M[e[t+4]]+M[e[t+5]]+"-"+M[e[t+6]]+M[e[t+7]]+"-"+M[e[t+8]]+M[e[t+9]]+"-"+M[e[t+10]]+M[e[t+11]]+M[e[t+12]]+M[e[t+13]]+M[e[t+14]]+M[e[t+15]]}var mn={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function wn(e,t,n){if(mn.randomUUID&&!e)return mn.randomUUID();e=e||{};const i=e.random||(e.rng||ur)();return i[6]=i[6]&15|64,i[8]=i[8]&63|128,fr(i)}const We=(e,t)=>!!Object.keys(t).includes(e.notice_key),fe=e=>!e||e===H.OPT_OUT?!1:e===H.OPT_IN?!0:e===H.ACKNOWLEDGE,Fe=(e,t)=>e?t===V.NOTICE_ONLY?H.ACKNOWLEDGE:H.OPT_IN:H.OPT_OUT,$e=e=>typeof e=="string"?fe(e):e,En=e=>e?e.split(",").map(t=>t.trim()).filter(Boolean):[],kn=(e,t)=>e===void 0?!1:typeof e=="boolean"?e:t.globalPrivacyControl===!0?e.globalPrivacyControl:e.value,On=(e,t)=>e.consent_mechanism===V.NOTICE_ONLY?!0:t&&We(e,t)?!!t[e.notice_key]:fe(e.default_preference);var At=(e=>(e.CONSENT="Consent",e.LEGITIMATE_INTERESTS="Legitimate interests",e))(At||{});const pr=",",_r=[{experienceKey:"tcf_purpose_consents",tcfModelKey:"purposeConsents",enabledIdsKey:"purposesConsent"},{experienceKey:"tcf_purpose_legitimate_interests",tcfModelKey:"purposeLegitimateInterests",enabledIdsKey:"purposesLegint"},{experienceKey:"tcf_special_features",tcfModelKey:"specialFeatureOptins",enabledIdsKey:"specialFeatures"},{experienceKey:"tcf_vendor_consents",tcfModelKey:"vendorConsents",enabledIdsKey:"vendorsConsent"},{experienceKey:"tcf_vendor_legitimate_interests",tcfModelKey:"vendorLegitimateInterests",enabledIdsKey:"vendorsLegint"}],vr=[{cookieKey:"system_consent_preferences",experienceKey:"tcf_system_consents"},{cookieKey:"system_legitimate_interests_preferences",experienceKey:"tcf_system_legitimate_interests"}];_r.filter(({experienceKey:e})=>e!=="tcf_features"&&e!=="tcf_special_purposes").map(e=>e.experienceKey),At.CONSENT.toString(),At.LEGITIMATE_INTERESTS.toString();var gr=Object.defineProperty,br=Object.defineProperties,hr=Object.getOwnPropertyDescriptors,Cn=Object.getOwnPropertySymbols,yr=Object.prototype.hasOwnProperty,mr=Object.prototype.propertyIsEnumerable,Pn=(e,t,n)=>t in e?gr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,pe=(e,t)=>{for(var n in t||(t={}))yr.call(t,n)&&Pn(e,n,t[n]);if(Cn)for(var n of Cn(t))mr.call(t,n)&&Pn(e,n,t[n]);return e},ke=(e,t)=>br(e,hr(t)),wr=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const Tt="fides_consent",xn=365,Ze=cr.withConverter({read(e){return decodeURIComponent(e)},write(e){return encodeURIComponent(e)}}),St=e=>e?Object.values(e).some(t=>t!==void 0):!1,Nn=()=>wn(),Er=Nn(),An=e=>{var t;return!!!((t=e.fides_meta)!=null&&t.updatedAt)},Tn=e=>{const t=new Date;return{consent:e||{},identity:{fides_user_device_id:Er||Nn()},fides_meta:{version:"0.9.0",createdAt:t.toISOString(),updatedAt:""},tcf_consent:{},non_applicable_notice_keys:[]}},Xe=e=>Ze.get(e),Oe=()=>{const e=Xe(Tt);if(e)try{return JSON.parse(e)}catch{try{return JSON.parse(yn.decode(e))}catch{return}}},Sn=(e,t=!1)=>{const n=Tn(e);if(typeof document>"u")return n;if(t)return document.cookie="fides_consent=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT",n;let i=Oe();if(i?.consent){const{consent:o}=i;Object.entries(o).forEach(([r,l])=>{o[r]=$e(l)})}if(!i)return n;try{"consent"in i&&"fides_meta"in i||(i=ke(pe({},n),{consent:i}));const o=pe(pe({},e),i.consent);return i.consent=o,i}catch(o){return console.error("Unable to read consent cookie: invalid JSON.",o),n}},In=(e,t=!1)=>{if(typeof document>"u")return;const i=new Date().toISOString();e.fides_meta.updatedAt=i;let o=JSON.stringify(e);t&&(o=yn.encode(o));const r=window.location.hostname.split(".");let l="";for(let s=1;s<=r.length;s+=1)if(l=r.slice(-s).join("."),Ze.set(Tt,o,{path:"/",domain:l,expires:xn})){const c=Oe();if(c&&c.fides_meta.updatedAt===e.fides_meta.updatedAt)break}},It=({experience:e,cookie:t})=>{var n;if(!e.privacy_notices)return e;const i=(n=e.privacy_notices)==null?void 0:n.map(r=>{var l,s;const a=(l=t.non_applicable_notice_keys)==null?void 0:l.includes(r.notice_key),c=(s=e.non_applicable_privacy_notices)==null?void 0:s.includes(r.notice_key);if(a&&!c)return ke(pe({},r),{current_preference:void 0});const u=Object.keys(t.consent).includes(r.notice_key)?Fe(!!t.consent[r.notice_key],r.consent_mechanism):void 0;return ke(pe({},r),{current_preference:u})});return ke(pe({},e),{privacy_notices:i})},kr=e=>{const t={};return vr.forEach(({cookieKey:n})=>{var i;const o=(i=e[n])!=null?i:[];t[n]=Object.fromEntries(o.map(r=>[r.id,fe(r.preference)]))}),t},Ln=(e,t)=>{const n={};return e?.options.forEach(({cookieKeys:i,default:o})=>{if(o===void 0)return;const r=kn(o,t);i.forEach(l=>{const s=n[l];if(s===void 0){n[l]=r;return}n[l]=s&&r})}),n},Fn=(e,t=!0)=>{e.forEach(n=>{var i;if(Ze.remove(n.name,{path:(i=n.path)!=null?i:"/",domain:n.domain}),t){const{hostname:o}=window.location;Ze.remove(n.name,{domain:`.${o}`})}})},$n=e=>{const t=new Map(e.map(({notice:n,consentPreference:i})=>[n.notice_key,fe(i)]));return Object.fromEntries(t)},jn=(e,t)=>wr(void 0,null,function*(){var n;const i=(n=window.Fides)==null?void 0:n.experience,o=i?.non_applicable_privacy_notices||[];return ke(pe({},e),{consent:$n(t),non_applicable_notice_keys:o})}),Or=e=>{const t={};return e.privacy_notices&&e.privacy_notices.forEach(n=>{n.current_preference?t[n.notice_key]=fe(n.current_preference):n.default_preference&&(t[n.notice_key]=fe(n.default_preference))}),t},Dn=({cookie:e,experience:t})=>{const n=Or(t);return ke(pe({},e),{consent:n,non_applicable_notice_keys:t.non_applicable_privacy_notices||e.non_applicable_notice_keys||[]})};var Cr=Object.defineProperty,Pr=(e,t,n)=>t in e?Cr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Rn=(e,t,n)=>Pr(e,typeof t!="symbol"?t+"":t,n);class xr{constructor(){Rn(this,"cookieName","OptanonConsent"),Rn(this,"migrationMethod",L.OT_MIGRATION)}getConsentCookie(){return Xe(this.cookieName)}convertToFidesConsent(t,n){if(n.otFidesMapping)try{const o=decodeURIComponent(n.otFidesMapping).replace(/^'|'$/g,""),r=JSON.parse(o),l=this.parseCookieValue(t,r);return l}catch{return}}parseCookieValue(t,n){const i={},o=t.match(/groups=([^&]*)/);return!o||!o[1]||o[1].split(",").forEach(s=>{const[a,c]=s.split(":");n[a]&&n[a].forEach(u=>{const d=c==="1";i[u]===void 0&&(i[u]=d)})}),i}}var zn=(e=>(e.ONETRUST="onetrust",e))(zn||{});const Lt=new Map;function Nr(e,t){Lt.set(e,t)}function Ar(e){e.otFidesMapping&&Nr(zn.ONETRUST,new xr)}function Mn(e){let t,n;if(Array.from(Lt).some(([o,r])=>{const l=r.getConsentCookie();if(!l)return!1;const s=r.convertToFidesConsent(l,e);return s?(t=s,n=o,!0):!1}),!n)return{consent:void 0,method:void 0};const i=Lt.get(n);return{consent:t,method:i.migrationMethod}}const Tr=e=>{typeof window<"u"?window.fidesDebugger||(window.fidesDebugger=e?console.log:()=>{}):globalThis.fidesDebugger=()=>{}},K="en",Je="Manage preferences",Qe=/^([A-Za-z]{2,3})(?:(?:[_-]([A-Za-z0-9]{2,4}))?$|(?:(?:[_-]\w+)+))/,Sr=/^(?:([a-z]{2})(-[a-z0-9]{1,3})?|(eea))$/i,Ir=[{overrideName:"fidesEmbed",overrideType:"boolean",overrideKey:"fides_embed",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableSaveApi",overrideType:"boolean",overrideKey:"fides_disable_save_api",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableNoticesServedApi",overrideType:"boolean",overrideKey:"fides_disable_notices_served_api",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableBanner",overrideType:"boolean",overrideKey:"fides_disable_banner",validationRegex:/^(true|false)$/},{overrideName:"fidesString",overrideType:"string",overrideKey:"fides_string",validationRegex:/(.*)/},{overrideName:"fidesTcfGdprApplies",overrideType:"boolean",overrideKey:"fides_tcf_gdpr_applies",validationRegex:/^(true|false)$/},{overrideName:"fidesLocale",overrideType:"string",overrideKey:"fides_locale",validationRegex:Qe},{overrideName:"fidesPrimaryColor",overrideType:"string",overrideKey:"fides_primary_color",validationRegex:/(.*)/},{overrideName:"fidesClearCookie",overrideType:"string",overrideKey:"fides_clear_cookie",validationRegex:/(.*)/},{overrideName:"fidesConsentOverride",overrideType:"string",overrideKey:"fides_consent_override",validationRegex:/^(accept|reject)$/},{overrideName:"otFidesMapping",overrideType:"string",overrideKey:"ot_fides_mapping",validationRegex:/(.*)/},{overrideName:"fidesDisabledNotices",overrideType:"array",overrideKey:"fides_disabled_notices",validationRegex:/(.*)/,transform:En},{overrideName:"fidesConsentNonApplicableFlagMode",overrideType:"string",overrideKey:"fides_consent_non_applicable_flag_mode",validationRegex:/^(omit|include)$/},{overrideName:"fidesConsentFlagType",overrideType:"string",overrideKey:"fides_consent_flag_type",validationRegex:/^(boolean|consent_mechanism)$/},{overrideName:"fidesInitializedEventMode",overrideType:"string",overrideKey:"fides_initialized_event_mode",validationRegex:/^(multiple|once|disable)$/},{overrideName:"fidesModalDefaultView",overrideType:"string",overrideKey:"fides_modal_default_view",validationRegex:/^\/tcf\/(purposes|features|vendors)$/},{overrideName:"fidesModalDisplay",overrideType:"string",overrideKey:"fides_modal_display",validationRegex:/^(immediate|default)$/},{overrideName:"fidesUnsupportedRepeatedScriptLoading",overrideType:"string",overrideKey:"fides_unsupported_repeated_script_loading",validationRegex:/^(enabled_acknowledge_not_supported|disabled)$/}],Lr=[{overrideName:"title",overrideType:"string",overrideKey:"fides_title",validationRegex:/(.*)/},{overrideName:"description",overrideType:"string",overrideKey:"fides_description",validationRegex:/(.*)/},{overrideName:"privacy_policy_url",overrideType:"string",overrideKey:"fides_privacy_policy_url",validationRegex:/(.*)/},{overrideName:"override_language",overrideType:"string",overrideKey:"fides_override_language",validationRegex:Qe}],Fr="fides-overlay-wrapper",$r="fides-i18n-icon",Ft=["marketing","data_sales","data_sales_and_sharing","data_sales_sharing_gpp_us_state","data_sharing_gpp_us_state","data_sales_gpp_us_state","targeted_advertising_gpp_us_state","sales_sharing_targeted_advertising_gpp_us_national","sales_sharing_targeted_advertising"];var jr=Object.defineProperty,Dr=Object.defineProperties,Rr=Object.getOwnPropertyDescriptors,Un=Object.getOwnPropertySymbols,zr=Object.prototype.hasOwnProperty,Mr=Object.prototype.propertyIsEnumerable,Gn=(e,t,n)=>t in e?jr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,et=(e,t)=>{for(var n in t||(t={}))zr.call(t,n)&&Gn(e,n,t[n]);if(Un)for(var n of Un(t))Mr.call(t,n)&&Gn(e,n,t[n]);return e},Ur=(e,t)=>Dr(e,Rr(t));const Ce=e=>!e||typeof e!="object"?!1:Object.keys(e).length===0||"id"in e,Gr=e=>!!(e&&e.every(t=>t.default_preference===H.OPT_IN)),tt=e=>{if(e){if(e.location&&Sr.test(e.location))return e.location.replace("-","_").toLowerCase();if(e.country&&e.region)return`${e.country.toLowerCase()}_${e.region.toLowerCase()}`}},Bn=e=>{if(typeof e!="object"||!e.fidesApiUrl||!e.privacyCenterUrl)return!1;try{new URL(e.privacyCenterUrl),new URL(e.fidesApiUrl)}catch{return!1}return!0},Vn=e=>{switch(e){case Ee.OPTIONS:return Ir;case Ee.EXPERIENCE_TRANSLATION:return Lr;default:return null}},Hn=e=>{if(!Ce(e))return!1;const t=e.experience_config;return!(!t||!(t.component===U.MODAL||t.component===U.BANNER_AND_MODAL||t.component===U.TCF_OVERLAY||t.component===U.HEADLESS)||t.component===U.BANNER_AND_MODAL&&!(e.privacy_notices&&e.privacy_notices.length>0))},nt=e=>e.fidesConsentOverride===L.ACCEPT||e.fidesConsentOverride===L.REJECT,Br=e=>{var t;return(t=e.default_preference)!=null?t:H.OPT_OUT},it=(e,t,n,i)=>{var o,r,l,s,a,c;return i?.fidesDisableBanner||!Ce(e)||i.fidesModalDisplay==="immediate"?!1:((o=e.experience_config)==null?void 0:o.component)===U.TCF_OVERLAY&&t?i&&nt(i)?!1:(r=e.meta)!=null&&r.version_hash?e.meta.version_hash!==t.tcf_version_hash:!0:((l=e.experience_config)==null?void 0:l.component)===U.MODAL||((s=e.experience_config)==null?void 0:s.component)===U.HEADLESS||!((a=e?.privacy_notices)!=null&&a.length)?!1:n?i&&nt(i)?!1:t?.fides_meta.consentMethod===L.GPC?!0:!((c=e.privacy_notices)==null?void 0:c.every(d=>We(d,n))):!0},Kn=e=>{e[0]==="window"&&e.shift();let t=window;for(;e.length>0;){const n=e.shift();if(typeof n>"u"||typeof t[n]!="object")return;t=t[n]}return t},Yn=({value:e,notice:t,consentContext:n})=>!n.globalPrivacyControl||!t.has_gpc_flag||t.consent_mechanism===V.NOTICE_ONLY?oe.NONE:e?oe.OVERRIDDEN:oe.APPLIED,$t=()=>{},Vr=(e,t)=>e.map(n=>{var i;const o=Fe(t.includes(n.notice.notice_key),n.notice.consent_mechanism);return new Ct(n.notice,o,(i=n.bestTranslation)==null?void 0:i.privacy_notice_history_id)}),qn=e=>{try{const t=JSON.stringify(e);return btoa(t.replace(/\s/g,""))}catch(t){throw new Error("Failed to encode Notice Consent string:",{cause:t})}},ot=e=>{if(!e)return{};try{const t=atob(e),n=JSON.parse(t);return Object.fromEntries(Object.entries(n).map(([i,o])=>[i,!!o]))}catch(t){throw new Error("Failed to decode Notice Consent string:",{cause:t})}},Hr=({consent:e,nonApplicableNotices:t,flagType:n,mode:i=we.OMIT})=>{if(!t?.length)return e;const o=et({},e);return i===we.INCLUDE?t.forEach(r=>{o[r]=n===de.CONSENT_MECHANISM?H.NOT_APPLICABLE:!0}):t.forEach(r=>{delete o[r]}),o},Kr=({consent:e,flagType:t=de.BOOLEAN,consentMechanisms:n})=>{const i={};if(t!==de.CONSENT_MECHANISM)return Object.fromEntries(Object.entries(e).map(([r,l])=>[r,$e(l)]));const o=Object.values(e).some(r=>typeof r=="boolean");if(o&&!n)throw new Error("Cannot transform boolean consent values to consent mechanisms without consent mechanisms map");return o?(Object.keys(e).forEach(r=>{const l=e[r];if(typeof l=="string")i[r]=l;else{const s=n[r];i[r]=Fe(l,s)}}),i):et({},e)},je=(e,t,n=[],i,o,r)=>{var l,s,a;const c=et({},e),u=(l=window.Fides)==null?void 0:l.options,d=(s=o??u?.fidesConsentNonApplicableFlagMode)!=null?s:we.OMIT,h=(a=i??u?.fidesConsentFlagType)!=null?a:de.BOOLEAN,_={};Object.assign(_,Hr({consent:{},nonApplicableNotices:t??[],flagType:h,mode:d}));const g=n.reduce((v,y)=>Ur(et({},v),{[y.notice_key]:y.consent_mechanism}),{}),f={};return Object.entries(c).forEach(([v,y])=>{r?.includes(v)&&!t?.includes(v)||(f[v]=y)}),Object.assign(_,Kr({consent:f,consentMechanisms:g,flagType:h})),_},Yr=e=>{const t=e.split("~")[0];return!!(t&&["1","2"].includes(t)&&e?.match(t==="1"?/\d~[0-9.]*$/:/\d~[0-9.]*~dv.[0-9.]*$/))},jt=(e,t,n)=>new Proxy(e,{get(i,o){if(i[o.toString()]===void 0){const r=t.fidesConsentFlagType===de.CONSENT_MECHANISM;return!n&&o.toString()==="essential"?r?V.NOTICE_ONLY:!0:r?V.OPT_OUT:!1}return i[o.toString()]}});var qr=Object.defineProperty,Wr=Object.defineProperties,Zr=Object.getOwnPropertyDescriptors,Wn=Object.getOwnPropertySymbols,Xr=Object.prototype.hasOwnProperty,Jr=Object.prototype.propertyIsEnumerable,Zn=(e,t,n)=>t in e?qr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,De=(e,t)=>{for(var n in t||(t={}))Xr.call(t,n)&&Zn(e,n,t[n]);if(Wn)for(var n of Wn(t))Jr.call(t,n)&&Zn(e,n,t[n]);return e},Qr=(e,t)=>Wr(e,Zr(t)),be=(e=>(e.FIDES="fides",e.EXTERNAL="external",e))(be||{}),X=(e=>(e.TOGGLE="toggle",e.BUTTON="button",e.LINK="link",e))(X||{});const re=(e,t,n)=>{var i,o,r,l,s,a,c,u;const d=t?De({},t):void 0;if(typeof window<"u"&&typeof CustomEvent<"u"){const h=De({consentMethod:d?.fides_meta.consentMethod},n);(i=n?.trigger)!=null&&i.origin||(h.trigger=De(De({},h.trigger),{origin:"fides"}));const _=(o=performance?.mark)==null?void 0:o.call(performance,e),g=_?.startTime,f=d;f&&d?.consent&&(f.consent=je(d.consent,(l=(r=window.Fides)==null?void 0:r.experience)==null?void 0:l.non_applicable_privacy_notices,(a=(s=window.Fides)==null?void 0:s.experience)==null?void 0:a.privacy_notices,void 0,void 0,d.non_applicable_notice_keys));const v=new CustomEvent(e,{detail:Qr(De({},f),{debug:!!((u=(c=window.Fides)==null?void 0:c.options)!=null&&u.debug),extraDetails:h,timestamp:g}),bubbles:!0});window.dispatchEvent(v)}},Xn=(e,t)=>{const n=i=>t(i.detail);return window.addEventListener(e,n),()=>{window.removeEventListener(e,n)}},Jn=(e,t)=>{var n,i;re("FidesConsentLoaded",e,t),((i=(n=window.Fides)==null?void 0:n.options)==null?void 0:i.fidesInitializedEventMode)==="multiple"&&re("FidesInitialized",e,t)},Qn=(e,t)=>{var n,i;re("FidesReady",e,t);const o=(i=(n=window.Fides)==null?void 0:n.options)==null?void 0:i.fidesInitializedEventMode;(o==="multiple"||o==="once")&&re("FidesInitialized",e,t)},Dt=e=>{if(!e)return{tc:"",ac:"",gpp:"",nc:""};const[t="",n="",i="",o=""]=e.split(pr);return t?{tc:t,ac:n,gpp:i,nc:o}:{tc:"",ac:"",gpp:i,nc:o}},ea=()=>typeof window.blueConicClient<"u"&&typeof window.blueConicClient.event<"u"&&typeof window.blueConicClient.event.subscribe<"u",rt=()=>{var e,t,n;if(!ea()||!((e=window.blueConicClient)!=null&&e.profile))return;const i=(n=(t=window.blueConicClient)==null?void 0:t.profile)==null?void 0:n.getProfile(),{consent:o}=window.Fides,r=o!==void 0&&Object.entries(o).length>0,l=Ft.some(s=>o[s]);!r||l?(i.setConsentedObjectives(["iab_purpose_1","iab_purpose_2","iab_purpose_3","iab_purpose_4"]),i.setRefusedObjectives([])):(i.setConsentedObjectives(["iab_purpose_1"]),i.setRefusedObjectives(["iab_purpose_2","iab_purpose_3","iab_purpose_4"])),window.blueConicClient.profile.updateProfile()},ta=({approach:e="onetrust"}={approach:"onetrust"})=>{if(e!=="onetrust")throw new Error("Unsupported approach");window.addEventListener("FidesReady",rt),window.addEventListener("FidesUpdated",rt),window.addEventListener("onBlueConicLoaded",rt),rt()},ei=(e,t)=>{var n,i,o,r,l,s,a,c,u,d,h,_,g,f,v,y;const m=(n=window.dataLayer)!=null?n:[];window.dataLayer=m;const{detail:w,type:k}=e,{consent:E,extraDetails:N,fides_string:j,timestamp:O}=w;let x=E;const A=(l=(r=t?.flag_type)!=null?r:(o=(i=window.Fides)==null?void 0:i.options)==null?void 0:o.fidesConsentFlagType)!=null?l:de.BOOLEAN,I=(u=(c=t?.non_applicable_flag_mode)!=null?c:(a=(s=window.Fides)==null?void 0:s.options)==null?void 0:a.fidesConsentNonApplicableFlagMode)!=null?u:we.OMIT,Z=(_=(h=(d=window.Fides)==null?void 0:d.experience)==null?void 0:h.privacy_notices)!=null?_:[],q=(f=(g=window.Fides)==null?void 0:g.experience)==null?void 0:f.non_applicable_privacy_notices;x=je(E,q,Z,A,I,(y=(v=window.Fides)==null?void 0:v.cookie)==null?void 0:y.non_applicable_notice_keys);const G={consent:x,extraDetails:N,fides_string:j,timestamp:O};m.push({event:k,Fides:G})},na=e=>{var t,n;if(Object.entries({FidesInitializing:!1,FidesInitialized:!0,FidesConsentLoaded:!0,FidesReady:!0,FidesUpdating:!0,FidesUpdated:!0,FidesUIChanged:!0,FidesUIShown:!0,FidesModalClosed:!0}).filter(([,r])=>r).map(([r])=>r).forEach(r=>{window.addEventListener(r,l=>ei(l,e))}),(t=window.Fides)!=null&&t.initialized){const{consent:r,fides_meta:l,identity:s,tcf_consent:a}=window.Fides,c=(n=performance?.getEntriesByName("FidesInitialized")[0])==null?void 0:n.startTime;ei({type:"FidesInitialized",detail:{consent:r,fides_meta:l,identity:s,tcf_consent:a,timestamp:c,extraDetails:{consentMethod:l?.consentMethod}}},e)}},ia=()=>{if(window.fbq)return window.fbq;const e={queue:[],loaded:!0,version:"2.0",push(...t){const n=window.fbq;n.callMethod?n.callMethod(...t):n.queue.push(t)}};return window.fbq=Object.assign(e.push,e),window._fbq=window.fbq,window.fbq},oa=e=>{const t=ia();t("consent",e.consent?"grant":"revoke"),e.dataUse?t("dataProcessingOptions",[]):t("dataProcessingOptions",["LDU"],1,1e3)},ra={marketing:Ft,sale_of_data:Ft,analytics:["analytics"],preferences:["functional"]};function aa(e,t){var n;const i=Object.fromEntries(Object.entries(e).map(([r,l])=>[r,$e(l)])),o={};return Object.entries(ra).forEach(([r,l])=>{const s=l.some(c=>i[c]===!0),a=l.some(c=>i[c]===!1);s?o[r]=!0:a&&(o[r]=!1)}),o.sale_of_data===void 0&&(o.sale_of_data=(n=t?.sale_of_data_default)!=null?n:!1),o}const at=(e,t)=>{window.Shopify.customerPrivacy.setTrackingConsent(aa(e,t),()=>{})},ti=e=>{var t,n;(t=window.Shopify)!=null&&t.customerPrivacy||console.error("Fides could not access Shopify's customerPrivacy API"),window.addEventListener("FidesReady",i=>at(i.detail.consent,e)),window.addEventListener("FidesUpdating",i=>at(i.detail.consent,e)),window.addEventListener("FidesUpdated",i=>at(i.detail.consent,e)),(n=window.Fides)!=null&&n.initialized&&window.Fides.cookie&&at(window.Fides.cookie.consent,e)},sa=e=>{let t,n;const i=()=>{clearTimeout(t),clearTimeout(n)},o=()=>{if(window.Shopify){if(i(),window.Shopify.customerPrivacy){ti(e);return}window.Shopify.loadFeatures([{name:"consent-tracking-api",version:"0.1"}],r=>{if(r)throw Error("Fides could not load Shopify's consent-tracking-api");ti(e)});return}n=setTimeout(o,200)};t=setTimeout(()=>{throw i(),Error("Fides.shopify was called but Shopify is not present in the page after 3 seconds.")},3e3),o()};var la={"static.gpc":"\u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629","static.gpc.description":"\u062A\u0645 \u062A\u0637\u0628\u064A\u0642 \u062A\u0641\u0636\u064A\u0644\u0643 \u0644\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629. \u0644\u0642\u062F \u0623\u0644\u063A\u064A \u0627\u0634\u062A\u0631\u0627\u0643\u0643 \u062A\u0644\u0642\u0627\u0626\u064A\u064B\u0627 \u0641\u064A \u062D\u0627\u0644\u0627\u062A \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u062A\u064A \u062A\u0644\u062A\u0632\u0645 \u0628\u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629.","static.gpc.status.applied":"\u062A\u0645 \u0627\u0644\u062A\u0637\u0628\u064A\u0642","static.gpc.status.overridden":"\u062A\u0645 \u0627\u0644\u062A\u062C\u0627\u0648\u0632","static.gpc.title":"\u062A\u0645 \u0627\u0643\u062A\u0634\u0627\u0641 \u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629"},ca={"static.gpc":"\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438","static.gpc.description":"\u0412\u0430\u0448\u0435\u0442\u043E \u043F\u0440\u0435\u0434\u043F\u043E\u0447\u0438\u0442\u0430\u043D\u0438\u0435 \u0437\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438 \u0435 \u0437\u0430\u0447\u0435\u0442\u0435\u043D\u043E. \u0412\u0438\u0435 \u0441\u0442\u0435 \u0431\u0438\u043B\u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0438\u0437\u043A\u043B\u044E\u0447\u0435\u043D\u0438 \u043E\u0442 \u0441\u043B\u0443\u0447\u0430\u0438\u0442\u0435 \u043D\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0435 \u043D\u0430 \u0434\u0430\u043D\u043D\u0438, \u043A\u043E\u0438\u0442\u043E \u0441\u0435 \u043E\u0442\u043D\u0430\u0441\u044F\u0442 \u043A\u044A\u043C \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438.","static.gpc.status.applied":"\u041F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u043E","static.gpc.status.overridden":"\u041F\u0440\u0435\u043C\u0430\u0445\u043D\u0430\u0442\u043E","static.gpc.title":"\u041E\u0442\u043A\u0440\u0438\u0442\u043E \u0435 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438"},da={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Va\u0161 izbor globalne kontrole privatnosti je uva\u017Een. Automatski ste isklju\u010Deni iz slu\u010Dajeva kori\u0161tenja podataka koji se pridr\u017Eavaju globalne kontrole privatnosti.","static.gpc.status.applied":"Prihva\u0107ena","static.gpc.status.overridden":"Odbijena","static.gpc.title":"Otkrivena je Globalna kontrola privatnosti"},ua={"static.gpc":"Control de privadesa global","static.gpc.description":"S\u2019ha respectat la vostra prefer\xE8ncia pel que fa al control de privadesa global. Se us ha excl\xF2s autom\xE0ticament dels casos d\u2019\xFAs de dades que s\u2019adhereixen al control de privadesa global.","static.gpc.status.applied":"Aplicat","static.gpc.status.overridden":"Anul\xB7lat","static.gpc.title":"Control de privadesa global detectat"},fa={"static.gpc":"Glob\xE1ln\xED kontrola ochrany osobn\xEDch \xFAdaj\u016F","static.gpc.description":"Byly dodr\u017Eeny va\u0161e glob\xE1ln\xED preference ochrany osobn\xEDch \xFAdaj\u016F. Automaticky jste byli vy\u0159azeni z pou\u017E\xEDv\xE1n\xED \xFAdaj\u016F v p\u0159\xEDpadech, na kter\xE9 se vztahuje glob\xE1ln\xED ochrana osobn\xEDch \xFAdaj\u016F.","static.gpc.status.applied":"Aplikov\xE1no","static.gpc.status.overridden":"P\u0159eps\xE1no","static.gpc.title":"Bylo zji\u0161t\u011Bna glob\xE1ln\xED kontrola ochrany osobn\xEDch \xFAdaj\u016F"},pa={"static.gpc":"Global fortrolighedskontrol","static.gpc.description":"Din pr\xE6ference i forbindelse med global fortrolighedskontrol er blevet efterkommet. Du er automatisk blevet frameldt tilf\xE6lde af databrug, der overholder global fortrolighedskontrol.","static.gpc.status.applied":"Anvendt","static.gpc.status.overridden":"Tilsidesat","static.gpc.title":"Der blev p\xE5vist global fortrolighedskontrol"},_a={"static.gpc":"Globale Datenschutzeinstellungen","static.gpc.description":"Ihre globale Datenschutzeinstellungen werden ber\xFCcksichtigt. Sie wurden automatisch von Anwendungsf\xE4llen ausgenommen, die nicht Ihren globalen Datenschutzeinstellungen unterliegen.","static.gpc.status.applied":"Angewendet","static.gpc.status.overridden":"\xDCberschrieben","static.gpc.title":"Globale Datenschutzeinstellungen entdeckt"},va={"static.gpc":"\u039A\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5","static.gpc.description":"\u0397 \u03C0\u03C1\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03AE \u03C3\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5 \u03AD\u03C7\u03B5\u03B9 \u03C4\u03B7\u03C1\u03B7\u03B8\u03B5\u03AF. \u0388\u03C7\u03B5\u03C4\u03B5 \u03B5\u03BE\u03B1\u03B9\u03C1\u03B5\u03B8\u03B5\u03AF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03B1\u03C0\u03CC \u03C0\u03B5\u03C1\u03B9\u03C0\u03C4\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C3\u03C5\u03BC\u03BC\u03BF\u03C1\u03C6\u03CE\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03BF\u03BD \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5.","static.gpc.status.applied":"\u0395\u03C6\u03B1\u03C1\u03BC\u03CC\u03C3\u03C4\u03B7\u03BA\u03B5","static.gpc.status.overridden":"\u03A0\u03B1\u03C1\u03B1\u03BA\u03AC\u03BC\u03C6\u03B8\u03B7\u03BA\u03B5","static.gpc.title":"\u0395\u03BD\u03C4\u03BF\u03C0\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5"},ga={"static.gpc":"Global Privacy Control","static.gpc.description":"Your global privacy control preference has been honored. You have been automatically opted out of data use cases which adhere to global privacy control.","static.gpc.status.applied":"Applied","static.gpc.status.overridden":"Overridden","static.gpc.title":"Global Privacy Control detected"},ba={"static.gpc":"Control de privacidad global","static.gpc.description":"Su preferencia de control de privacidad global se ha respetado. Se le ha excluido autom\xE1ticamente de los casos de uso de datos que se adhieren al control de privacidad global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidad global detectado"},ha={"static.gpc":"Control de privacidad global","static.gpc.description":"Su preferencia de control de privacidad global se ha respetado. Se le excluy\xF3 autom\xE1ticamente de los casos de uso de datos que se adhieren al control de privacidad global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidad global detectado"},ya={"static.gpc":"\xDCldine andmekaitsekontroll","static.gpc.description":"Teie \xFCldist andmekaitse-eelistust on arvestatud. Teid on automaatselt v\xE4lja arvatud andmete kasutamise juhtudest, mis j\xE4rgivad \xFCldist andmekaitsekontrolli.","static.gpc.status.applied":"Rakendatud","static.gpc.status.overridden":"T\xFChistatud","static.gpc.title":"Tuvastatud \xFCldine andmekaitsekontroll"},ma={"static.gpc":"Pribatutasun-kontrol globala","static.gpc.description":"Pribatutasun-kontrol globalaren lehentasuna bete da. Pribatutasun-kontrol globalari atxikitzen zaizkion datuen erabileren kasuetatik automatikoki baztertua izan zara.","static.gpc.status.applied":"Ezarrita","static.gpc.status.overridden":"Baliogabetuta","static.gpc.title":"Pribatutasun-kontrol globala antzeman da"},wa={"static.gpc":"Maailmanlaajunen tietosuojavalvonta","static.gpc.description":"Maailmanlaajuinen tietosuojavalvontanne on vahvistettu. Teid\xE4t on automaattisesti poistettu tietojen k\xE4ytt\xF6tapauksista, jotka noudattavat maailmanlaajuista tietosuojavalvontaa.","static.gpc.status.applied":"K\xE4yt\xF6ss\xE4","static.gpc.status.overridden":"Ohitettu","static.gpc.title":"Maailmanlaajuinen tietosuojavalvonta havaittu"},Ea={"static.gpc":"Global Privacy Control","static.gpc.description":"Votre pr\xE9f\xE9rence en mati\xE8re de contr\xF4le global de la confidentialit\xE9 (GPC) a \xE9t\xE9 respect\xE9e. Vous avez automatiquement \xE9t\xE9 retir\xE9 des cas d\u2019usage des donn\xE9es qui adh\xE8rent au GPC.","static.gpc.status.applied":"Appliqu\xE9","static.gpc.status.overridden":"Ignor\xE9","static.gpc.title":"Global Privacy Control (GPC) d\xE9tect\xE9"},ka={"static.gpc":"Contr\xF4le mondial de confidentialit\xE9","static.gpc.description":"Votre pr\xE9f\xE9rence en mati\xE8re de contr\xF4le mondial de confidentialit\xE9 a \xE9t\xE9 honor\xE9e. Vous avez \xE9t\xE9 automatiquement \xE9cart\xE9 des cas d'utilisation de donn\xE9es qui adh\xE8rent au contr\xF4le mondial de confidentialit\xE9.","static.gpc.status.applied":"Appliqu\xE9","static.gpc.status.overridden":"Annul\xE9","static.gpc.title":"Contr\xF4le mondial de confidentialit\xE9 d\xE9tect\xE9"},Oa={"static.gpc":"Control de privacidade global","static.gpc.description":"Respetouse a s\xFAa preferencia de control de privacidade global. Foi automaticamente exclu\xEDdo dos casos de uso de datos que cumpren o control de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidade global detectado"},Ca={"static.gpc":"\u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923","static.gpc.description":"\u0906\u092A\u0915\u0940 \u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0935\u0930\u0940\u092F\u0924\u093E\u0913\u0902 \u0915\u093E \u0938\u092E\u094D\u092E\u093E\u0928 \u0915\u093F\u092F\u093E \u0917\u092F\u093E\u0964 \u0906\u092A\u0915\u094B \u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0915\u093E \u092A\u093E\u0932\u0928 \u0915\u0930\u0928\u0947 \u0935\u093E\u0932\u0947 \u0921\u0947\u091F\u093E \u0909\u092A\u092F\u094B\u0917 \u092E\u093E\u092E\u0932\u094B\u0902 \u0938\u0947 \u0938\u094D\u0935\u091A\u093E\u0932\u093F\u0924 \u0930\u0942\u092A \u0938\u0947 \u092C\u093E\u0939\u0930 \u0915\u0930 \u0926\u093F\u092F\u093E \u0917\u092F\u093E \u0939\u0948\u0964","static.gpc.status.applied":"\u0932\u093E\u0917\u0942 \u0915\u093F\u092F\u093E","static.gpc.status.overridden":"\u0913\u0935\u0930\u0930\u093E\u0907\u0921 \u0915\u093F\u092F\u093E","static.gpc.title":"\u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0915\u093E \u092A\u0924\u093E \u091A\u0932\u093E"},Pa={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Po\u0161tuju se va\u0161e preferencije globalne kontrole privatnosti. Automatski se isklju\u010Deni iz slu\u010Dajeve kori\u0161tenja podataka koji se pridr\u017Eavaju globalne kontrole privatnosti.","static.gpc.status.applied":"Primijenjeno","static.gpc.status.overridden":"Premo\u0161\u0107eno","static.gpc.title":"Primije\u0107ena je Globalna kontrola privatnosti (Global Privacy Control)"},xa={"static.gpc":"Glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1s","static.gpc.description":"A glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1ssal kapcsolatos be\xE1ll\xEDt\xE1sai el lettek fogadva. Automatikusan kiker\xFClt azokb\xF3l az adatfelhaszn\xE1l\xE1si esetekb\u0151l, amelyek a glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1shoz tartoznak.","static.gpc.status.applied":"Alkalmazva","static.gpc.status.overridden":"Fel\xFCl\xEDrva","static.gpc.title":"Glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1s \xE9szlelve"},Na={"static.gpc":"Controllo Globale della Privacy","static.gpc.description":"Le tue preferenze del Controllo Globale della Privacy sono state prese in carico. Sei stato automaticamente escluso dai casi di utilizzo dei dati che corrispondono al Controllo Globale della Privacy.","static.gpc.status.applied":"Applicato","static.gpc.status.overridden":"Non applicato","static.gpc.title":"Controllo Globale della Privacy rilevato"},Aa={"static.gpc":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB","static.gpc.description":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306E\u8A2D\u5B9A\u306F\u5C0A\u91CD\u3055\u308C\u307E\u3059\u3002\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306B\u5F93\u3046\u30C7\u30FC\u30BF\u306E\u30E6\u30FC\u30B9\u30B1\u30FC\u30B9\u304B\u3089\u306F\u81EA\u52D5\u7684\u306B\u30AA\u30D7\u30C8\u30A2\u30A6\u30C8\u3055\u308C\u3066\u3044\u307E\u3059\u3002","static.gpc.status.applied":"\u9069\u7528","static.gpc.status.overridden":"\u5909\u66F4","static.gpc.title":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u3092\u691C\u51FA\u3057\u307E\u3057\u305F"},Ta={"static.gpc":"Visuotin\u0117 privatumo kontrol\u0117","static.gpc.description":"Buvo atsi\u017Evelgta \u012F j\u016Bs\u0173 visuotin\u0117s privatumo kontrol\u0117s pageidavim\u0105. Buvote automati\u0161kai at\u0161auktas i\u0161 duomen\u0173 naudojimo atvej\u0173, kai laikomasi visuotin\u0117s privatumo kontrol\u0117s.","static.gpc.status.applied":"Taikoma","static.gpc.status.overridden":"Nebegaliojantis","static.gpc.title":"Aptikta visuotin\u0117 privatumo kontrol\u0117"},Sa={"static.gpc":"Glob\u0101l\u0101 priv\u0101tuma kontrole","static.gpc.description":"M\u0113s esam izpild\u012Bju\u0161i j\u016Bsu pras\u012Bbu kontrol\u0113t glob\u0101lo priv\u0101tumu. P\u0113c noklus\u0113juma esat no\u0146emts no datu lietojuma pieteikumiem, kas atbilst glob\u0101lajai priv\u0101tuma kontrolei.","static.gpc.status.applied":"Pielietots","static.gpc.status.overridden":"Ignor\u0113ts","static.gpc.title":"Konstat\u0113ta glob\u0101l\u0101 priv\u0101tuma kontrole"},Ia={"static.gpc":"Kontroll Globali tal-Privatezza","static.gpc.description":"Il-preferenza globali tieg\u0127ek g\u0127all-kontroll tal-privatezza \u0121iet onorata. Inti awtomatikament g\u0127a\u017Cilt li ma tibqax tu\u017Ca d-dejta f'ka\u017Cijiet li jirrispettaw il-kontroll globali tal-privatezza.","static.gpc.status.applied":"Applikat","static.gpc.status.overridden":"Maqbu\u017Ca","static.gpc.title":"Instab il-Kontroll Globali tal-Privatezza"},La={"static.gpc":"Global Privacy Control","static.gpc.description":"Uw Global Privacy Control-voorkeur wordt gerespecteerd. U bent automatisch afgemeld voor gegevensgebruiksscenario's die zich houden aan Global Privacy Control.","static.gpc.status.applied":"Toegepast","static.gpc.status.overridden":"Genegeerd","static.gpc.title":"Global Privacy Control gedetecteerd"},Fa={"static.gpc":"Globale personverninnstillinger","static.gpc.description":"Preferansene dine vedr\xF8rende de globale personverninnstilingene dine er godtatt. Du har automatisk takket nei til databruksaker som f\xF8lger globale personverninnstillinger.","static.gpc.status.applied":"Anvendt","static.gpc.status.overridden":"Overstyrt","static.gpc.title":"Globale personverninnstillinger er oppdaget"},$a={"static.gpc":"Og\xF3lna kontrola prywatno\u015Bci","static.gpc.description":"Twoja preferencja dotycz\u0105ca og\xF3lnej kontroli prywatno\u015Bci zosta\u0142a uwzgl\u0119dniona. Automatycznie odm\xF3wiono zgody na Twoje przypadki wykorzystania danych, kt\xF3re s\u0105 zgodne z Og\xF3ln\u0105 kontrol\u0105 prywatno\u015Bci.","static.gpc.status.applied":"Zastosowano","static.gpc.status.overridden":"Nadpisano","static.gpc.title":"Wykryta Og\xF3lna kontrola prywatno\u015Bci"},ja={"static.gpc":"Controle de Privacidade Global","static.gpc.description":"Sua prefer\xEAncia global de controle de privacidade foi respeitada. Voc\xEA foi automaticamente removido dos casos de uso de dados que aderem ao controle de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Controle de Privacidade Global detectado"},Da={"static.gpc":"Controlo de Privacidade Global","static.gpc.description":"A sua prefer\xEAncia de controlo de privacidade global foi honrada. Foi automaticamente exclu\xEDdo/a dos casos de utiliza\xE7\xE3o de dados que aderem ao controlo de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Controlo de Privacidade Global detetado"},Ra={"static.gpc":"Control global al confiden\u021Bialit\u0103\u021Bii","static.gpc.description":"Preferin\u021Ba dvs. de control global al confiden\u021Bialit\u0103\u021Bii a fost onorat\u0103. A\u021Bi fost exclus(\u0103) automat de la cazurile de utilizare a datelor care respect\u0103 controlul global al confiden\u021Bialit\u0103\u021Bii.","static.gpc.status.applied":"Aplicat","static.gpc.status.overridden":"Suprascris","static.gpc.title":"A fost detectat un control global al confiden\u021Bialit\u0103\u021Bii"},za={"static.gpc":"Global Privacy Control","static.gpc.description":"\u0412\u0430\u0448\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 Global Privacy Control \u0443\u0447\u0442\u0435\u043D\u0430. \u0412\u044B \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u0438\u0441\u043A\u043B\u044E\u0447\u0430\u0435\u0442\u0435\u0441\u044C \u0432 \u0441\u0446\u0435\u043D\u0430\u0440\u0438\u044F\u0445, \u0433\u0434\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F Global Privacy Control.","static.gpc.status.applied":"\u041F\u0440\u0438\u043C\u0435\u043D\u0435\u043D\u043E","static.gpc.status.overridden":"\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u043E","static.gpc.title":"\u041E\u0431\u043D\u0430\u0440\u0443\u0436\u0435\u043D\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435 Global Privacy Control"},Ma={"static.gpc":"Glob\xE1lna kontrola s\xFAkromia","static.gpc.description":"Va\u0161a predvo\u013Eba pre glob\xE1lnu kontrolu s\xFAkromia bola dodr\u017Ean\xE1. Pre pr\xEDpady pou\u017Eitia, kde sa pou\u017E\xEDva glob\xE1lna kontrola s\xFAkromia, v\xE1m bol automaticky nastaven\xFD explicitn\xFD nes\xFAhlas.","static.gpc.status.applied":"Pou\u017Eit\xE1","static.gpc.status.overridden":"Prep\xEDsan\xE1","static.gpc.title":"Bola zisten\xE1 Glob\xE1lna kontrola s\xFAkromia"},Ua={"static.gpc":"Global Privacy Control","static.gpc.description":"Va\u0161a nastavitev globalnega nadzora zasebnosti je bila upo\u0161tevana. Samodejno je bilo preklicano va\u0161e soglasje za tiste primere uporabe podatkov, ki se ravnajo po globalnem nadzoru zasebnosti.","static.gpc.status.applied":"Uporabljeno","static.gpc.status.overridden":"Pregla\u0161eno","static.gpc.title":"Zaznan globalni nadzor zasebnosti \xBBGlobal Privacy Control\xAB"},Ga={"static.gpc":"Global Privacy Control","static.gpc.description":"\u0412\u0430\u0448\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0435 \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438 \u0458\u0435 \u043F\u043E\u0434\u0435\u0448\u0435\u043D\u0430. \u0410\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u0441\u0442\u0435 \u0438\u0441\u043A\u0459\u0443\u0447\u0435\u043D\u0438 \u0438\u0437 \u0441\u043B\u0443\u0447\u0430\u0458\u0435\u0432\u0430 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0435 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 \u043A\u043E\u0458\u0438 \u0441\u0443 \u0443 \u0441\u043A\u043B\u0430\u0434\u0443 \u0441\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E\u043C \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043E\u043C \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438.","static.gpc.status.applied":"\u041F\u0440\u0438\u043C\u0435\u045A\u0435\u043D\u0430","static.gpc.status.overridden":"\u0417\u0430\u043C\u0435\u045A\u0435\u043D\u0430","static.gpc.title":"Global Privacy Control \u043E\u0442\u043A\u0440\u0438\u0432\u0435\u043D"},Ba={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Va\u0161a globalna postavka kontrole privatnosti se po\u0161tuje. Automatski ste isklju\u010Deni iz slu\u010Dajeva kori\u0161c\u0301enja podataka koji podle\u017Eu globalnoj kontroli privatnosti.","static.gpc.status.applied":"Primenjeno","static.gpc.status.overridden":"Zaobi\u0111eno","static.gpc.title":"Otkrivena je globalna kontrola privatnosti"},Va={"static.gpc":"Global integritetskontroll","static.gpc.description":"Dina preferenser f\xF6r global integritetskontroll har efterf\xF6ljts. Du har automatiskt valt bort anv\xE4ndningsfall f\xF6r uppgifter som efterf\xF6ljer global integritetskontroll.","static.gpc.status.applied":"Till\xE4mpad","static.gpc.status.overridden":"\xC5sidosatt","static.gpc.title":"Global integritetskontroll uppt\xE4cktes"},Ha={"static.gpc":"Global Gizlilik Kontrol\xFC","static.gpc.description":"Global gizlilik kontrol\xFC tercihiniz yerine getirildi. Global gizlilik kontrol\xFCne uygun veri kullan\u0131m durumlar\u0131ndan otomatik olarak \xE7\u0131kar\u0131ld\u0131n\u0131z.","static.gpc.status.applied":"Uyguland\u0131","static.gpc.status.overridden":"Ge\xE7ersiz k\u0131l\u0131nd\u0131","static.gpc.title":"Global Gizlilik Kontrol\xFC tespit edildi"},Ka={"static.gpc":"\u0413\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456","static.gpc.description":"\u0412\u0430\u0448\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456 \u0432\u0440\u0430\u0445\u043E\u0432\u0430\u043D\u043E. \u0412\u0430\u0441 \u0431\u0443\u043B\u043E \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0432\u0438\u043A\u043B\u044E\u0447\u0435\u043D\u043E \u0437 \u0432\u0438\u043F\u0430\u0434\u043A\u0456\u0432 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u0445, \u044F\u043A\u0456 \u0434\u043E\u0442\u0440\u0438\u043C\u0443\u044E\u0442\u044C\u0441\u044F \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u044C \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456.","static.gpc.status.applied":"\u0417\u0430\u0441\u0442\u043E\u0441\u043E\u0432\u0430\u043D\u043E","static.gpc.status.overridden":"\u041F\u0435\u0440\u0435\u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u043E","static.gpc.title":"\u0412\u0438\u044F\u0432\u043B\u0435\u043D\u043E \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456"},Ya={"static.gpc":"\u5168\u5C40\u9690\u79C1\u63A7\u5236","static.gpc.description":"\u60A8\u7684\u5168\u5C40\u9690\u79C1\u63A7\u5236\u504F\u597D\u5DF2\u5F97\u5230\u5C0A\u91CD\u3002\u60A8\u5DF2\u81EA\u52A8\u9009\u62E9\u9000\u51FA\u7B26\u5408\u5168\u5C40\u9690\u79C1\u63A7\u5236\u7684\u6570\u636E\u4F7F\u7528\u6848\u4F8B\u3002","static.gpc.status.applied":"\u5DF2\u5E94\u7528","static.gpc.status.overridden":"\u88AB\u8986\u76D6","static.gpc.title":"\u68C0\u6D4B\u5230\u5168\u5C40\u9690\u79C1\u63A7\u5236"},qa={"static.gpc":"\u5168\u57DF\u96B1\u79C1\u63A7\u5236","static.gpc.description":"\u60A8\u7684\u5168\u57DF\u96B1\u79C1\u63A7\u5236\u504F\u597D\u5DF2\u88AB\u63A5\u53D7\u3002\u6839\u64DA\u60A8\u7684\u9078\u64C7\xB7\uFF0C\u5DF2\u81EA\u52D5\u5C07\u60A8\u9000\u51FA\u7B26\u5408\u5168\u57DF\u96B1\u79C1\u63A7\u5236\u7684\u8CC7\u6599\u4F7F\u7528\u6848\u4F8B\u3002","static.gpc.status.applied":"\u5DF2\u61C9\u7528","static.gpc.status.overridden":"\u5DF2\u8986\u5BEB","static.gpc.title":"\u6AA2\u6E2C\u5230\u5168\u57DF\u96B1\u79C1\u63A7\u5236"};const Rt={ar:la,bg:ca,bs:da,ca:ua,cs:fa,da:pa,de:_a,el:va,en:ga,es:ba,"es-MX":ha,et:ya,eu:ma,fi:wa,fr:Ea,"fr-CA":ka,gl:Oa,"hi-IN":Ca,hr:Pa,hu:xa,it:Na,ja:Aa,lt:Ta,lv:Sa,mt:Ia,nl:La,no:Fa,pl:$a,"pt-BR":ja,"pt-PT":Da,ro:Ra,ru:za,sk:Ma,sl:Ua,"sr-Cyrl":Ga,"sr-Latn":Ba,sv:Va,tr:Ha,uk:Ka,zh:Ya,"zh-Hant":qa},Wa=[{locale:"ar",label_en:"Arabic",label_original:"\u0627\u0644\u0639\u064E\u0631\u064E\u0628\u0650\u064A\u064E\u0651\u0629"},{locale:"bg",label_en:"Bulgarian",label_original:"\u0431\u044A\u043B\u0433\u0430\u0440\u0441\u043A\u0438 \u0435\u0437\u0438\u043A"},{locale:"bs",label_en:"Bosnian",label_original:"Bosanski Jezik"},{locale:"ca",label_en:"Catalan",label_original:"catal\xE0"},{locale:"cs",label_en:"Czech",label_original:"\u010Desk\xFD jazyk"},{locale:"da",label_en:"Danish",label_original:"Dansk"},{locale:"de",label_en:"German",label_original:"Deutsch"},{locale:"el",label_en:"Greek",label_original:"\u03B5\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC"},{locale:"en",label_en:"English",label_original:"English"},{locale:"es",label_en:"Spanish",label_original:"Espa\xF1ol"},{locale:"es-MX",label_en:"Spanish (Mexico)",label_original:"Espa\xF1ol - MX"},{locale:"et",label_en:"Estonian",label_original:"Eesti"},{locale:"eu",label_en:"Basque",label_original:"euskara"},{locale:"fi",label_en:"Finnish",label_original:"Suomi"},{locale:"fr",label_en:"French",label_original:"Fran\xE7ais"},{locale:"fr-CA",label_en:"French (Canada)",label_original:"Fran\xE7ais - CA"},{locale:"gl",label_en:"Galician",label_original:"Galego"},{locale:"hi-IN",label_en:"Hindi (India)",label_original:"\u0939\u093F\u0928\u094D\u0926\u0940"},{locale:"hr",label_en:"Croatian",label_original:"Hrvatski Jezik"},{locale:"hu",label_en:"Hungarian",label_original:"magyar"},{locale:"it",label_en:"Italian",label_original:"Italiano"},{locale:"ja",label_en:"Japanese",label_original:"\u65E5\u672C\u8A9E"},{locale:"lt",label_en:"Lithuanian",label_original:"lietuvi\u0173 kalba"},{locale:"lv",label_en:"Latvian",label_original:"latvie\u0161u valoda"},{locale:"mt",label_en:"Maltese",label_original:"Malti"},{locale:"nl",label_en:"Dutch",label_original:"Nederlands"},{locale:"no",label_en:"Norwegian",label_original:"Norsk"},{locale:"pl",label_en:"Polish",label_original:"Polski"},{locale:"pt-BR",label_en:"Portuguese (Brazil)",label_original:"Portugu\xEAs - BR"},{locale:"pt-PT",label_en:"Portuguese (Portugal)",label_original:"Portugu\xEAs - PT"},{locale:"ro",label_en:"Romanian",label_original:"limba rom\xE2n\u0103"},{locale:"ru",label_en:"Russian",label_original:"\u0440\u0443\u0441\u0441\u043A\u0438\u0439 \u044F\u0437\u044B\u043A"},{locale:"sk",label_en:"Slovak",label_original:"sloven\u010Dina"},{locale:"sl",label_en:"Slovenian",label_original:"Slovenski Jezik"},{locale:"sr-Cyrl",label_en:"Serbian (Cyrillic)",label_original:"\u0441\u0440\u043F\u0441\u043A\u0438"},{locale:"sr-Latn",label_en:"Serbian (Latin)",label_original:"Srpski"},{locale:"sv",label_en:"Swedish",label_original:"Sverige"},{locale:"tr",label_en:"Turkish",label_original:"T\xFCrk\xE7e"},{locale:"uk",label_en:"Ukrainian",label_original:"\u0443\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 \u043C\u043E\u0432\u0430"},{locale:"zh",label_en:"Chinese (Simplified)",label_original:"\u7B80\u4F53\u4E2D\u6587"},{locale:"zh-Hant",label_en:"Chinese (Traditional)",label_original:"\u7E41\u9AD4\u4E2D\u6587"}];var Za=Object.defineProperty,ni=Object.getOwnPropertySymbols,Xa=Object.prototype.hasOwnProperty,Ja=Object.prototype.propertyIsEnumerable,ii=(e,t,n)=>t in e?Za(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,te=(e,t)=>{for(var n in t||(t={}))Xa.call(t,n)&&ii(e,n,t[n]);if(ni)for(var n of ni(t))Ja.call(t,n)&&ii(e,n,t[n]);return e};function ne(e,t){return e.toLowerCase().replaceAll("_","-")===t.toLowerCase().replaceAll("_","-")}function Qa(e,t){const n={},i=["accept_button_label","acknowledge_button_label","banner_description","banner_title","description","purpose_header","privacy_policy_link_label","privacy_policy_url","privacy_preferences_link_label","reject_button_label","save_button_label","title","modal_link_label"];if(e.translations)e.translations.forEach(o=>{const r=o.language;let l=!1;t?.override_language&&(l=ne(t.override_language,r));const s={};i.forEach(a=>{let c=null;t&&(l||a==="privacy_policy_url")&&(c=a in t?t[a]:null);const h=o[a];typeof h=="string"&&(s[`exp.${a}`]=c||h)}),n[r]=te(te({},s),n[r])});else{const o=K,r={};i.forEach(l=>{const s=e[l];typeof s=="string"&&(r[`exp.${l}`]=s)}),n[o]=te(te({},r),n[o])}return n}function zt(e){var t;if((t=e?.experience_config)!=null&&t.translations){const{translations:n}=e.experience_config,i=n.find(o=>o.is_default);return i?.language}}function oi(e,t){const n={};return t.forEach(i=>{const o=Object.keys(e).find(r=>ne(r,i));if(o){const r=e[o],l={};["purposes","specialPurposes","features","specialFeatures","stacks","dataCategories"].forEach(a=>{const c=r[a]||{};Object.keys(c).forEach(u=>{const d=c[u],h=`exp.tcf.${a}.${u}`;l[`${h}.name`]=d.name,l[`${h}.description`]=d.description,d.illustrations&&d.illustrations.length>0&&d.illustrations.forEach((_,g)=>{l[`${h}.illustrations.${g}`]=_})})}),n[i]=te(te({},l),n[i])}}),n}function ri(e){return Object.keys(Rt).forEach(t=>{e.load(t,Rt[t])}),Object.keys(Rt)}function ai(e,t,n){var i;const o={},r=(i=t.available_locales)!=null&&i.length?t.available_locales:[K];if(t?.experience_config){const l=t.experience_config,s=Qa(l,n);Object.keys(s).forEach(a=>{o[a]=te(te({},s[a]),o[a])})}r.forEach(l=>{e.load(l,o[l])})}function si(e,t){if(!t.gvl)return;const{locale:n}=e,i={};i[n]=t.gvl;const o=oi(i,[n]);e.load(n,o[n])}function li(e,t,n){const i=oi(t,n);n.forEach(o=>{e.load(o,i[o])})}function ci(e){return e.locale}function di(e,t,n=K){const i=e?.language;return t||i||n}function ui(e,t,n=K){const i=e.match(Qe);if(i){const[o,r]=i,l=t.find(a=>ne(a,o));if(l)return l;const s=t.find(a=>ne(a,r));if(s)return s}return n}function he(e,t){return e.t(t)!==""&&e.t(t)!==t}function Mt(e,t,n){if(!n||!n.translations)return null;if(e){const o=n.translations.find(r=>ne(r.language,e));if(o)return o}const i=n.translations.find(o=>ne(o.language,t));return i||n.translations[0]||null}function st(e,t,n){if(!n||!n.translations)return null;if(e){const o=n.translations.find(r=>ne(r.language,e));if(o)return o}const i=n.translations.find(o=>ne(o.language,t));return i||n.translations[0]||null}function fi(e,t,n,i,o){var r,l,s,a,c;ri(e);const u=(r=n.available_locales)!=null&&r.length?n.available_locales:[K];ai(e,n,o);const d=Wa.filter(y=>u.includes(y.locale)),h=d.findIndex(y=>ne(y.locale,e.getDefaultLocale()));h>0&&d.unshift(d.splice(h,1)[0]),e.setAvailableLanguages(d);const _=zt(n)||K;e.setDefaultLocale(_);let g=_;((l=n.experience_config)==null?void 0:l.auto_detect_language)===!1||(g=di(t,i?.fidesLocale,_));const f=ui(g,u||[],e.getDefaultLocale());if(!!((a=(s=n.experience_config)==null?void 0:s.translations)!=null&&a.find(y=>y.language===f)))e.activate(f);else{const y=st(f,_,n.experience_config);y?.language,e.activate(y?.language||f)}((c=n.experience_config)==null?void 0:c.component)===U.TCF_OVERLAY&&n.gvl&&si(e,n)}function Ut(){let e=[],t=K,n=K;const i={};return{setAvailableLanguages(o){e=o},get availableLanguages(){return e},activate:o=>{n=o},getDefaultLocale:()=>t,setDefaultLocale:o=>{t=o},get locale(){return n},load:(o,r)=>{i[o]=te(te({},i[o]),r)},t:o=>{if(typeof o>"u")throw new TypeError("Unexpected type for descriptor or id!");let r;if(typeof o=="string")r=o;else if(typeof o=="object"&&o.id)r=o.id;else return"";return n&&n in i&&r&&r in i[n]&&i[n][r]?i[n][r]:r}}}const pi=(e,t,n)=>{var i;let o=Je;if(!e)t.t("exp.modal_link_label")!=="exp.modal_link_label"&&(o=t.t("exp.modal_link_label"));else{const r=t.getDefaultLocale(),l=(i=n?.experience_config)==null?void 0:i.translations.find(s=>s.language===r);l?.modal_link_label&&(o=l.modal_link_label)}return o},es=Ut();function ts(e){return Array.from(e).length}var ns=Object.defineProperty,is=Object.defineProperties,os=Object.getOwnPropertyDescriptors,_i=Object.getOwnPropertySymbols,rs=Object.prototype.hasOwnProperty,as=Object.prototype.propertyIsEnumerable,vi=(e,t,n)=>t in e?ns(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Re=(e,t)=>{for(var n in t||(t={}))rs.call(t,n)&&vi(e,n,t[n]);if(_i)for(var n of _i(t))as.call(t,n)&&vi(e,n,t[n]);return e},Gt=(e,t)=>is(e,os(t)),lt=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())}),gi=(e=>(e.PRIVACY_EXPERIENCE="/privacy-experience",e.PRIVACY_PREFERENCES="/privacy-preferences",e.GVL_TRANSLATIONS="/privacy-experience/gvl/translations",e.NOTICES_SERVED="/notices-served",e))(gi||{});function bi(){return{}}const hi=e=>lt(void 0,[e],function*({userLocationString:t,userLanguageString:n,fidesApiUrl:i,apiOptions:o,propertyId:r,requestMinimalTCF:l,missingExperienceHandler:s=bi}){var a,c,u;if(o?.getPrivacyExperienceFn)try{return yield o.getPrivacyExperienceFn(t,null)}catch(f){return s(f)}const d=[["Unescape-Safestr","true"],["Accept-Encoding","gzip, deflate"]];n&&d.push(["Accept-Language",n]);const h={method:"GET",mode:"cors",headers:d};let _=Re(Re({show_disabled:"false",region:t,component:U.OVERLAY,has_config:"true",systems_applicable:"true",exclude_gvl_languages:"true",include_meta:"true",include_gvl:"true",include_non_applicable_notices:"true"},l&&{minimal_tcf:"true"}),r&&{property_id:r});_=new URLSearchParams(_);let g;try{if(g=yield fetch(`${i}/privacy-experience?${_}`,h),!g.ok)throw new Error("Error fetching experience from Fides API")}catch(f){return s(f)}try{const f=yield g.json();if(((a=f.items)==null?void 0:a.length)<1)return{};const v=f.items&&f.items[0],y=(u=(c=v.experience_config)==null?void 0:c.translations)==null?void 0:u[0].language;return v}catch(f){return s(f)}}),yi=(e,t)=>lt(void 0,null,function*(){const n=new URLSearchParams;t?.forEach(l=>{n.append("language",l)});const i={method:"GET",mode:"cors"};let o;try{o=yield fetch(`${e}/privacy-experience/gvl/translations${ts(n)>0?"?":""}${n.toString()}`,i)}catch{return{}}return o.ok?yield o.json():{}}),mi={method:"PATCH",mode:"cors",headers:{"Content-Type":"application/json"}},wi="Fides.js",Ei=(e,t,n,i,o)=>lt(void 0,null,function*(){var r;if((r=n.apiOptions)!=null&&r.savePreferencesFn){try{yield n.apiOptions.savePreferencesFn(e,i.consent,i.fides_string,o)}catch(a){return Promise.reject(a)}return Promise.resolve()}const l=Gt(Re({},mi),{body:JSON.stringify(Gt(Re({},t),{source:wi}))});return(yield fetch(`${n.fidesApiUrl}/privacy-preferences`,l)).ok,Promise.resolve()}),ki=e=>lt(void 0,[e],function*({request:t,options:n}){var i;if((i=n.apiOptions)!=null&&i.patchNoticesServedFn)try{return yield n.apiOptions.patchNoticesServedFn(t)}catch{return null}const o=Gt(Re({},mi),{body:JSON.stringify(t)});try{const r=yield fetch(`${n.fidesApiUrl}/notices-served`,o);return r.ok?yield r.json():null}catch{return null}});var ss=Object.defineProperty,ls=(e,t,n)=>t in e?ss(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,cs=(e,t,n)=>ls(e,t+"",n);class ds{constructor(){cs(this,"servedNoticeHistoryId",null)}getServedNoticeHistoryId(){return this.servedNoticeHistoryId||(this.servedNoticeHistoryId=wn()),this.servedNoticeHistoryId}reset(){this.servedNoticeHistoryId=null}hasLifecycleId(){return this.servedNoticeHistoryId!==null}}const Oi=new ds;var us=Object.defineProperty,fs=Object.defineProperties,ps=Object.getOwnPropertyDescriptors,Ci=Object.getOwnPropertySymbols,_s=Object.prototype.hasOwnProperty,vs=Object.prototype.propertyIsEnumerable,Pi=(e,t,n)=>t in e?us(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ae=(e,t)=>{for(var n in t||(t={}))_s.call(t,n)&&Pi(e,n,t[n]);if(Ci)for(var n of Ci(t))vs.call(t,n)&&Pi(e,n,t[n]);return e},ct=(e,t)=>fs(e,ps(t)),Bt=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const gs=[L.SCRIPT,L.GPC,L.OT_MIGRATION];function bs(e,t,n,i,o,r,l,s,a){return Bt(this,null,function*(){const c=(r||[]).map(d=>({preference:d.consentPreference,privacy_notice_history_id:d.noticeHistoryId||""})),u=ae({browser_identity:t.identity,preferences:c,privacy_experience_config_history_id:o,user_geography:s,method:i,served_notice_history_id:a,property_id:n.property_id},l??[]);yield Ei(i,u,e,t,n)})}const hs=e=>Bt(void 0,[e],function*({consentPreferencesToSave:t,privacyExperienceConfigHistoryId:n,experience:i,consentMethod:o,options:r,userLocationString:l,cookie:s,eventExtraDetails:a,servedNoticeHistoryId:c,tcf:u,updateCookie:d}){var h,_,g,f,v,y,m,w,k;if(!d&&t&&(d=x=>jn(x,t)),!d&&!t)throw new Error("updateCookie is required");const E=ct(ae({},a?.trigger),{origin:((h=a?.trigger)==null?void 0:h.origin)||(gs.includes(o)?be.EXTERNAL:be.FIDES)}),N=yield d(s);Object.assign(s,N),Object.assign(s.fides_meta,{consentMethod:o}),re("FidesUpdating",s,ct(ae({},a),{trigger:E}));const j=je(s.consent,(g=(_=window.Fides)==null?void 0:_.experience)==null?void 0:g.non_applicable_privacy_notices,(v=(f=window.Fides)==null?void 0:f.experience)==null?void 0:v.privacy_notices,void 0,void 0,s.non_applicable_notice_keys),O=!!((m=(y=window.Fides)==null?void 0:y.experience)!=null&&m.non_applicable_privacy_notices)||!!((k=(w=window.Fides)==null?void 0:w.experience)!=null&&k.privacy_notices);if(window.Fides.consent=jt(j,r,O),window.Fides.fides_string=s.fides_string,window.Fides.tcf_consent=s.tcf_consent,In(ct(ae({},s),{consent:j}),r.base64Cookie),window.Fides.saved_consent=s.consent,!r.fidesDisableSaveApi)try{yield bs(r,s,i,o,n,t,u,l,c)}catch{}t&&t.filter(x=>x.consentPreference===H.OPT_OUT).forEach(x=>{var A,I;(A=x.notice)!=null&&A.cookies&&Fn(x.notice.cookies,(I=i.experience_config)==null?void 0:I.auto_subdomain_cookie_deletion)}),re("FidesUpdated",s,ct(ae({},a),{trigger:E}))}),xi=(e,t,n,i)=>Object.entries(n).reduce((o,[r,l])=>{if(o)return o;const s=t.find(d=>d===r);if(s&&!l&&i!==L.OT_MIGRATION)return new Error(`Provided notice key '${r}' is not applicable to the current experience.`);const a=e.find(d=>d.notice_key===r);if(!s&&!a)return new Error(`'${r}' is not a valid notice key`);const u=a?.consent_mechanism===V.NOTICE_ONLY;return u&&l!==!0&&l!==H.ACKNOWLEDGE&&i!==L.OT_MIGRATION?new Error(`Invalid consent value for notice-only notice key: '${r}'. Must be \`true\` or "acknowledge"`):!u&&typeof l!="boolean"&&l!==H.OPT_IN&&l!==H.OPT_OUT?new Error(`Invalid consent value for notice key: '${r}'. Must be a boolean or "opt_in" or "opt_out"`):null},null),Vt=(e,t)=>Bt(void 0,null,function*(){var n;const{experience:i,cookie:o,config:r,locale:l}=e;if(!i)throw new Error("Experience must be initialized before updating consent");if(!r)throw new Error("Config is not initialized");if(!o)throw new Error("Cookie is not initialized");if(!t?.noticeConsent&&!t?.fidesString&&!t?.tcf)throw new Error("Either consent object or fidesString must be provided");if(t?.validation&&!Object.values(ue).includes(t.validation))throw new Error(`Validation must be one of: ${Object.values(ue).join(", ")} (default is ${ue.THROW})`);const{noticeConsent:s,fidesString:a,validation:c=ue.THROW,consentMethod:u=L.SCRIPT,eventExtraDetails:d={trigger:{origin:be.EXTERNAL}},tcf:h,updateCookie:_}=t,{experience_config:g,privacy_notices:f,non_applicable_privacy_notices:v}=i,y=zt(i)||K,m=O=>{if(c===ue.THROW)throw new Error(O);c===ue.WARN&&console.warn(O)};let w=o.consent||{};if(a)try{const O=Dt(a);if(O.nc){const x=ot(O.nc);w=ae(ae({},o.consent),x);const A=xi(f||[],v||[],w,u);A&&m(A.message)}}catch(O){const x=O instanceof Error?O.message:String(O);m(`Invalid fidesString provided: ${x}`)}else if(s){const O=xi(f||[],v||[],s,u);O&&m(O.message),w=ae(ae({},o.consent),s)}const k=[];Object.entries(w).forEach(([O,x])=>{const A=f?.find(I=>I.notice_key===O);if(A){const I=Mt(l,y,A),Z=I?.privacy_notice_history_id;let q;if(typeof x=="boolean"?q=Fe(x,A.consent_mechanism):q=x,Z){const G=new Ct(A,q,Z);k.push(G)}}});let E;if((n=g?.translations)!=null&&n.length){const O=st(l,y,g);E=O?.privacy_experience_config_history_id}const N=tt(r.geolocation),j=Oi.getServedNoticeHistoryId();return hs({consentPreferencesToSave:k,privacyExperienceConfigHistoryId:E,experience:i,consentMethod:u,options:r.options,userLocationString:N,cookie:o,eventExtraDetails:d,servedNoticeHistoryId:j,tcf:h,updateCookie:_})}),Ht=e=>{throw new Error(e)},dt=e=>{typeof window<"u"&&(window.Fides=e)},Ni=({cookie:e,experience:t})=>{let n=t;return St(e.consent)&&(n=It({experience:t,cookie:e})),n},Ai=({tcfEnabled:e=!1})=>({consent:{},experience:void 0,geolocation:{},locale:K,options:{debug:!0,isOverlayEnabled:!1,isPrefetchEnabled:!1,isGeolocationEnabled:!1,geolocationApiUrl:"",overlayParentId:null,modalLinkId:null,privacyCenterUrl:"",fidesApiUrl:"",tcfEnabled:e,gppEnabled:!1,fidesEmbed:!1,fidesDisableSaveApi:!1,fidesDisableNoticesServedApi:!1,fidesDisableBanner:!1,fidesString:null,apiOptions:null,fidesTcfGdprApplies:e,fidesJsBaseUrl:"",customOptionsPath:null,preventDismissal:!1,allowHTMLDescription:null,base64Cookie:!1,fidesPrimaryColor:null,fidesClearCookie:!1,showFidesBrandLink:!e,fidesConsentOverride:null,otFidesMapping:null,fidesDisabledNotices:null,fidesConsentNonApplicableFlagMode:null,fidesConsentFlagType:null,fidesInitializedEventMode:"once"},fides_meta:{},identity:{},tcf_consent:{},saved_consent:{},version:"DEV",config:void 0,initialized:!1,onFidesEvent:Xn,blueconic:ta,gtm:na,meta:oa,shopify:sa,showModal:$t,getModalLinkLabel:()=>Je,encodeNoticeConsentString:qn,decodeNoticeConsentString:ot,reinitialize(){return typeof this.init!="function"?Promise.reject(new Error("Fides.init method is not available")):((!this.config||!this.initialized)&&Ht("Fides must be initialized before reinitializing"),this.init())},shouldShowExperience(){return!(this!=null&&this.experience)||!(this!=null&&this.cookie)||!(this!=null&&this.saved_consent)||!(this!=null&&this.options)?!1:it(this.experience,this.cookie,this.saved_consent,this.options)},updateConsent(t){const{consent:n,fidesString:i,validation:o}=t;return Vt(this,{noticeConsent:n,fidesString:i,validation:o})}});var ys=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const Ti=(e,t)=>ys(void 0,null,function*(){if(!e||!t)return null;const i=yield fetch(t,{mode:"cors"});if(!i.ok)return null;try{return yield i.json()}catch{return null}}),ms=()=>{var e,t,n;if(window.Fides.options.tcfEnabled&&!((t=(e=window.Fides.experience)==null?void 0:e.privacy_notices)!=null&&t.length))return!1;if(typeof((n=window.navigator)==null?void 0:n.globalPrivacyControl)=="boolean")return window.navigator.globalPrivacyControl;const o=new URL(window.location.href).searchParams.get("globalPrivacyControl");if(o==="true")return!0;if(o==="false")return!1},Pe=()=>typeof window>"u"?{}:{globalPrivacyControl:ms()};var ws=Object.defineProperty,Si=Object.getOwnPropertySymbols,Es=Object.prototype.hasOwnProperty,ks=Object.prototype.propertyIsEnumerable,Ii=(e,t,n)=>t in e?ws(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Os=(e,t)=>{for(var n in t||(t={}))Es.call(t,n)&&Ii(e,n,t[n]);if(Si)for(var n of Si(t))ks.call(t,n)&&Ii(e,n,t[n]);return e},Cs=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const Ps=e=>Cs(void 0,null,function*(){var t;const{experience:n,saved_consent:i,options:o}=e;if(!n||!n.experience_config||!((t=n.privacy_notices)!=null&&t.length))return!1;const r=Pe(),{nc:l}=Dt(o.fidesString||"");r.globalPrivacyControl;const{consent:s,method:a}=Mn(o),c=!!s&&!!a&&!Oe();if(!r.globalPrivacyControl&&!l&&!c)return!1;let u=!1,d=!1,h=!1;const _=n.privacy_notices.reduce((g,f)=>{const v=Os({},g),y=fe(f.default_preference);v[f.notice_key]=y,i[f.notice_key]&&(v[f.notice_key]=i[f.notice_key]);const m=We(f,i),w=f.consent_mechanism===V.NOTICE_ONLY;if(c&&s){const k=s[f.notice_key];if(k!==void 0)return h=!0,v[f.notice_key]=k,v}if(w)return v;if(l){const E=ot(l)[f.notice_key];if(E!==void 0)return d=!0,v[f.notice_key]=E,v}return r.globalPrivacyControl&&!m&&f.has_gpc_flag&&(u=!0,v[f.notice_key]=!1),v},{});if(u||d||h){let g=L.SCRIPT;return h&&a?g=a:d?g=L.SCRIPT:u&&(g=L.GPC),yield Vt(e,{noticeConsent:_,consentMethod:g}),!0}return!1}),xs=()=>{document.body.classList.add("fides-no-scroll")},Li=()=>{document.body.classList.remove("fides-no-scroll")},Ns=e=>new DOMParser().parseFromString(e,"text/html").body.textContent||"",Fi=e=>{let t=0,n=200;return new Promise(i=>{const o=r=>{const l=setTimeout(()=>{const s=document.getElementById(e);s?(clearInterval(l),i(s)):(t+=1,t>=5&&n<1e3&&(n+=200),o(n))},r)};o(n)})};var As=Object.defineProperty,Ts=Object.defineProperties,Ss=Object.getOwnPropertyDescriptors,$i=Object.getOwnPropertySymbols,Is=Object.prototype.hasOwnProperty,Ls=Object.prototype.propertyIsEnumerable,ji=(e,t,n)=>t in e?As(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Kt=(e,t)=>{for(var n in t||(t={}))Is.call(t,n)&&ji(e,n,t[n]);if($i)for(var n of $i(t))Ls.call(t,n)&&ji(e,n,t[n]);return e},Fs=(e,t)=>Ts(e,Ss(t)),Di=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const $s=(e,t)=>Di(void 0,null,function*(){const n=tt(e);return n||tt(yield Ti(t.isGeolocationEnabled,t.geolocationApiUrl))}),Ri=(e,t)=>{const n={};if(typeof window<"u"){const i=new URLSearchParams(window.location.search),o=t.options.customOptionsPath&&t.options.customOptionsPath.split("."),r=o&&o.length>=0?Kn(o):window.fides_overrides,l=Vn(e);l?.forEach(({overrideName:s,overrideType:a,overrideKey:c,validationRegex:u,transform:d})=>{const h=i.get(c),_=r?r[c]:void 0,g=Xe(c),f=h||_||g;f&&u.test(f.toString())&&(d?n[s]=d(f.toString()):n[s]=a==="string"?f:JSON.parse(f.toString()))})}return n},js=({consent:e,options:t})=>{const n=Pe(),i=Ln(e,n);return Sn(i,t.fidesClearCookie)},Ds=({cookie:e,savedConsent:t,experience:n,geolocation:i,options:o,updateExperienceFromCookieConsent:r})=>{let l=n;return Ce(n)&&(l=r({experience:n,cookie:e,debug:o.debug})),{consent:e.consent,fides_meta:e.fides_meta,identity:e.identity,experience:l,tcf_consent:e.tcf_consent,fides_string:e.fides_string,saved_consent:t,geolocation:i,options:o,initialized:!0}},Rs=e=>Di(void 0,[e],function*({fides:t,initOverlay:n,renderOverlay:i,updateExperience:o,overrides:r}){var l,s,a,c,u,d,h,_,g;const{config:f}=t;if(!f)throw new Error("Fides config should be initialized");const{options:v,geolocation:y}=f;let m=!0,w,k=()=>Je;if(!t.cookie)throw new Error("Fides cookie should be initialized");if(m=v.isOverlayEnabled,m){Bn(v)||(m=!1),w=yield $s(y,v);let q=!1;if(w?Ce(t.experience)||(q=!0,t.experience=yield hi({userLocationString:w,fidesApiUrl:v.fidesApiUrl,apiOptions:v.apiOptions,requestMinimalTCF:!1,propertyId:(l=t.config)==null?void 0:l.propertyId})):m=!1,m&&Ce(t.experience)&&Hn(t.experience)){if(q){const B=o({cookie:t.cookie,experience:t.experience});t.experience=Kt(Kt({},t.experience),B)}(s=t.config)!=null&&s.propertyId&&(t.experience.property_id=t.config.propertyId);const G=Dn({cookie:t.cookie,experience:t.experience});t.cookie=G;const Q=Ut();if(fi(Q,window?.navigator,t.experience,v,r?.experienceTranslationOverrides),t.locale=Q.locale||K,k=B=>pi(!!B?.disableLocalization,Q,t.experience),((a=t.experience.experience_config)==null?void 0:a.component)===U.HEADLESS){const B=v.modalLinkId||"fides-modal-link";!t.experience||v.fidesEmbed||v.modalLinkId,Fi(B).then(Ie=>{document.body.classList.add("fides-overlay-modal-link-shown"),Ie.classList.add("fides-modal-link-shown")}),m=!1}if(n&&m){const B=Fs(Kt({},t),{cookie:t.cookie,config:f,options:v,experience:t.experience,fidesRegionString:w});n({initializedFides:B,i18n:Q,renderOverlay:i}).catch(Ie=>{})}setTimeout(Ps.bind(null,t))}}const{fides_meta:N,identity:j,fides_string:O,tcf_consent:x}=t.cookie,A=je(t.cookie.consent,(c=t.experience)==null?void 0:c.non_applicable_privacy_notices,(u=t.experience)==null?void 0:u.privacy_notices,(d=v.fidesConsentFlagType)!=null?d:void 0,(h=v.fidesConsentNonApplicableFlagMode)!=null?h:void 0,t.cookie.non_applicable_notice_keys),I=!!((_=t.experience)!=null&&_.non_applicable_privacy_notices)||!!((g=t.experience)!=null&&g.privacy_notices);return{consent:jt(A,v,I),fides_meta:N,identity:j,fides_string:O,tcf_consent:x,experience:t.experience,geolocation:y,options:v,initialized:!0,getModalLinkLabel:k}});var ut,C,zi,ye,Mi,Ui,Yt,qt,Wt,Zt,Gi,ze={},Bi=[],zs=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,ft=Array.isArray;function _e(e,t){for(var n in t)e[n]=t[n];return e}function Vi(e){var t=e.parentNode;t&&t.removeChild(e)}function Xt(e,t,n){var i,o,r,l={};for(r in t)r=="key"?i=t[r]:r=="ref"?o=t[r]:l[r]=t[r];if(arguments.length>2&&(l.children=arguments.length>3?ut.call(arguments,2):n),typeof e=="function"&&e.defaultProps!=null)for(r in e.defaultProps)l[r]===void 0&&(l[r]=e.defaultProps[r]);return pt(e,l,i,o,null)}function pt(e,t,n,i,o){var r={type:e,props:t,key:n,ref:i,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:o??++zi,__i:-1,__u:0};return o==null&&C.vnode!=null&&C.vnode(r),r}function se(e){return e.children}function le(e,t){this.props=e,this.context=t}function me(e,t){if(t==null)return e.__?me(e.__,e.__i+1):null;for(var n;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null)return n.__e;return typeof e.type=="function"?me(e):null}function Hi(e){var t,n;if((e=e.__)!=null&&e.__c!=null){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null){e.__e=e.__c.base=n.__e;break}return Hi(e)}}function Jt(e){(!e.__d&&(e.__d=!0)&&ye.push(e)&&!_t.__r++||Mi!==C.debounceRendering)&&((Mi=C.debounceRendering)||Ui)(_t)}function _t(){var e,t,n,i,o,r,l,s;for(ye.sort(Yt);e=ye.shift();)e.__d&&(t=ye.length,i=void 0,r=(o=(n=e).__v).__e,l=[],s=[],n.__P&&((i=_e({},o)).__v=o.__v+1,C.vnode&&C.vnode(i),Qt(n.__P,i,o,n.__n,n.__P.namespaceURI,32&o.__u?[r]:null,l,r??me(o),!!(32&o.__u),s),i.__v=o.__v,i.__.__k[i.__i]=i,Zi(l,i,s),i.__e!=r&&Hi(i)),ye.length>t&&ye.sort(Yt));_t.__r=0}function Ki(e,t,n,i,o,r,l,s,a,c,u){var d,h,_,g,f,v=i&&i.__k||Bi,y=t.length;for(n.__d=a,Ms(n,t,v),a=n.__d,d=0;d<y;d++)(_=n.__k[d])!=null&&typeof _!="boolean"&&typeof _!="function"&&(h=_.__i===-1?ze:v[_.__i]||ze,_.__i=d,Qt(e,_,h,o,r,l,s,a,c,u),g=_.__e,_.ref&&h.ref!=_.ref&&(h.ref&&en(h.ref,null,_),u.push(_.ref,_.__c||g,_)),f==null&&g!=null&&(f=g),65536&_.__u||h.__k===_.__k?(a&&typeof _.type=="string"&&!e.contains(a)&&(a=me(h)),a=Yi(_,a,e)):typeof _.type=="function"&&_.__d!==void 0?a=_.__d:g&&(a=g.nextSibling),_.__d=void 0,_.__u&=-196609);n.__d=a,n.__e=f}function Ms(e,t,n){var i,o,r,l,s,a=t.length,c=n.length,u=c,d=0;for(e.__k=[],i=0;i<a;i++)l=i+d,(o=e.__k[i]=(o=t[i])==null||typeof o=="boolean"||typeof o=="function"?null:typeof o=="string"||typeof o=="number"||typeof o=="bigint"||o.constructor==String?pt(null,o,null,null,null):ft(o)?pt(se,{children:o},null,null,null):o.constructor===void 0&&o.__b>0?pt(o.type,o.props,o.key,o.ref?o.ref:null,o.__v):o)!=null?(o.__=e,o.__b=e.__b+1,s=Us(o,n,l,u),o.__i=s,r=null,s!==-1&&(u--,(r=n[s])&&(r.__u|=131072)),r==null||r.__v===null?(s==-1&&d--,typeof o.type!="function"&&(o.__u|=65536)):s!==l&&(s==l-1?d=s-l:s==l+1?d++:s>l?u>a-l?d+=s-l:d--:s<l&&d++,s!==i+d&&(o.__u|=65536))):(r=n[l])&&r.key==null&&r.__e&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=me(r)),tn(r,r,!1),n[l]=null,u--);if(u)for(i=0;i<c;i++)(r=n[i])!=null&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=me(r)),tn(r,r))}function Yi(e,t,n){var i,o;if(typeof e.type=="function"){for(i=e.__k,o=0;i&&o<i.length;o++)i[o]&&(i[o].__=e,t=Yi(i[o],t,n));return t}e.__e!=t&&(n.insertBefore(e.__e,t||null),t=e.__e);do t=t&&t.nextSibling;while(t!=null&&t.nodeType===8);return t}function vt(e,t){return t=t||[],e==null||typeof e=="boolean"||(ft(e)?e.some(function(n){vt(n,t)}):t.push(e)),t}function Us(e,t,n,i){var o=e.key,r=e.type,l=n-1,s=n+1,a=t[n];if(a===null||a&&o==a.key&&r===a.type&&(131072&a.__u)==0)return n;if(i>(a!=null&&(131072&a.__u)==0?1:0))for(;l>=0||s<t.length;){if(l>=0){if((a=t[l])&&(131072&a.__u)==0&&o==a.key&&r===a.type)return l;l--}if(s<t.length){if((a=t[s])&&(131072&a.__u)==0&&o==a.key&&r===a.type)return s;s++}}return-1}function qi(e,t,n){t[0]==="-"?e.setProperty(t,n??""):e[t]=n==null?"":typeof n!="number"||zs.test(t)?n:n+"px"}function gt(e,t,n,i,o){var r;e:if(t==="style")if(typeof n=="string")e.style.cssText=n;else{if(typeof i=="string"&&(e.style.cssText=i=""),i)for(t in i)n&&t in n||qi(e.style,t,"");if(n)for(t in n)i&&n[t]===i[t]||qi(e.style,t,n[t])}else if(t[0]==="o"&&t[1]==="n")r=t!==(t=t.replace(/(PointerCapture)$|Capture$/i,"$1")),t=t.toLowerCase()in e||t==="onFocusOut"||t==="onFocusIn"?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+r]=n,n?i?n.u=i.u:(n.u=qt,e.addEventListener(t,r?Zt:Wt,r)):e.removeEventListener(t,r?Zt:Wt,r);else{if(o=="http://www.w3.org/2000/svg")t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(t!="width"&&t!="height"&&t!="href"&&t!="list"&&t!="form"&&t!="tabIndex"&&t!="download"&&t!="rowSpan"&&t!="colSpan"&&t!="role"&&t!="popover"&&t in e)try{e[t]=n??"";break e}catch{}typeof n=="function"||(n==null||n===!1&&t[4]!=="-"?e.removeAttribute(t):e.setAttribute(t,t=="popover"&&n==1?"":n))}}function Wi(e){return function(t){if(this.l){var n=this.l[t.type+e];if(t.t==null)t.t=qt++;else if(t.t<n.u)return;return n(C.event?C.event(t):t)}}}function Qt(e,t,n,i,o,r,l,s,a,c){var u,d,h,_,g,f,v,y,m,w,k,E,N,j,O,x,A=t.type;if(t.constructor!==void 0)return null;128&n.__u&&(a=!!(32&n.__u),r=[s=t.__e=n.__e]),(u=C.__b)&&u(t);e:if(typeof A=="function")try{if(y=t.props,m="prototype"in A&&A.prototype.render,w=(u=A.contextType)&&i[u.__c],k=u?w?w.props.value:u.__:i,n.__c?v=(d=t.__c=n.__c).__=d.__E:(m?t.__c=d=new A(y,k):(t.__c=d=new le(y,k),d.constructor=A,d.render=Bs),w&&w.sub(d),d.props=y,d.state||(d.state={}),d.context=k,d.__n=i,h=d.__d=!0,d.__h=[],d._sb=[]),m&&d.__s==null&&(d.__s=d.state),m&&A.getDerivedStateFromProps!=null&&(d.__s==d.state&&(d.__s=_e({},d.__s)),_e(d.__s,A.getDerivedStateFromProps(y,d.__s))),_=d.props,g=d.state,d.__v=t,h)m&&A.getDerivedStateFromProps==null&&d.componentWillMount!=null&&d.componentWillMount(),m&&d.componentDidMount!=null&&d.__h.push(d.componentDidMount);else{if(m&&A.getDerivedStateFromProps==null&&y!==_&&d.componentWillReceiveProps!=null&&d.componentWillReceiveProps(y,k),!d.__e&&(d.shouldComponentUpdate!=null&&d.shouldComponentUpdate(y,d.__s,k)===!1||t.__v===n.__v)){for(t.__v!==n.__v&&(d.props=y,d.state=d.__s,d.__d=!1),t.__e=n.__e,t.__k=n.__k,t.__k.forEach(function(I){I&&(I.__=t)}),E=0;E<d._sb.length;E++)d.__h.push(d._sb[E]);d._sb=[],d.__h.length&&l.push(d);break e}d.componentWillUpdate!=null&&d.componentWillUpdate(y,d.__s,k),m&&d.componentDidUpdate!=null&&d.__h.push(function(){d.componentDidUpdate(_,g,f)})}if(d.context=k,d.props=y,d.__P=e,d.__e=!1,N=C.__r,j=0,m){for(d.state=d.__s,d.__d=!1,N&&N(t),u=d.render(d.props,d.state,d.context),O=0;O<d._sb.length;O++)d.__h.push(d._sb[O]);d._sb=[]}else do d.__d=!1,N&&N(t),u=d.render(d.props,d.state,d.context),d.state=d.__s;while(d.__d&&++j<25);d.state=d.__s,d.getChildContext!=null&&(i=_e(_e({},i),d.getChildContext())),m&&!h&&d.getSnapshotBeforeUpdate!=null&&(f=d.getSnapshotBeforeUpdate(_,g)),Ki(e,ft(x=u!=null&&u.type===se&&u.key==null?u.props.children:u)?x:[x],t,n,i,o,r,l,s,a,c),d.base=t.__e,t.__u&=-161,d.__h.length&&l.push(d),v&&(d.__E=d.__=null)}catch(I){t.__v=null,a||r!=null?(t.__e=s,t.__u|=a?160:32,r[r.indexOf(s)]=null):(t.__e=n.__e,t.__k=n.__k),C.__e(I,t,n)}else r==null&&t.__v===n.__v?(t.__k=n.__k,t.__e=n.__e):t.__e=Gs(n.__e,t,n,i,o,r,l,a,c);(u=C.diffed)&&u(t)}function Zi(e,t,n){t.__d=void 0;for(var i=0;i<n.length;i++)en(n[i],n[++i],n[++i]);C.__c&&C.__c(t,e),e.some(function(o){try{e=o.__h,o.__h=[],e.some(function(r){r.call(o)})}catch(r){C.__e(r,o.__v)}})}function Gs(e,t,n,i,o,r,l,s,a){var c,u,d,h,_,g,f,v=n.props,y=t.props,m=t.type;if(m==="svg"?o="http://www.w3.org/2000/svg":m==="math"?o="http://www.w3.org/1998/Math/MathML":o||(o="http://www.w3.org/1999/xhtml"),r!=null){for(c=0;c<r.length;c++)if((_=r[c])&&"setAttribute"in _==!!m&&(m?_.localName===m:_.nodeType===3)){e=_,r[c]=null;break}}if(e==null){if(m===null)return document.createTextNode(y);e=document.createElementNS(o,m,y.is&&y),r=null,s=!1}if(m===null)v===y||s&&e.data===y||(e.data=y);else{if(r=r&&ut.call(e.childNodes),v=n.props||ze,!s&&r!=null)for(v={},c=0;c<e.attributes.length;c++)v[(_=e.attributes[c]).name]=_.value;for(c in v)if(_=v[c],c!="children"){if(c=="dangerouslySetInnerHTML")d=_;else if(c!=="key"&&!(c in y)){if(c=="value"&&"defaultValue"in y||c=="checked"&&"defaultChecked"in y)continue;gt(e,c,null,_,o)}}for(c in y)_=y[c],c=="children"?h=_:c=="dangerouslySetInnerHTML"?u=_:c=="value"?g=_:c=="checked"?f=_:c==="key"||s&&typeof _!="function"||v[c]===_||gt(e,c,_,v[c],o);if(u)s||d&&(u.__html===d.__html||u.__html===e.innerHTML)||(e.innerHTML=u.__html),t.__k=[];else if(d&&(e.innerHTML=""),Ki(e,ft(h)?h:[h],t,n,i,m==="foreignObject"?"http://www.w3.org/1999/xhtml":o,r,l,r?r[0]:n.__k&&me(n,0),s,a),r!=null)for(c=r.length;c--;)r[c]!=null&&Vi(r[c]);s||(c="value",g!==void 0&&(g!==e[c]||m==="progress"&&!g||m==="option"&&g!==v[c])&>(e,c,g,v[c],o),c="checked",f!==void 0&&f!==e[c]&>(e,c,f,v[c],o))}return e}function en(e,t,n){try{typeof e=="function"?e(t):e.current=t}catch(i){C.__e(i,n)}}function tn(e,t,n){var i,o;if(C.unmount&&C.unmount(e),(i=e.ref)&&(i.current&&i.current!==e.__e||en(i,null,t)),(i=e.__c)!=null){if(i.componentWillUnmount)try{i.componentWillUnmount()}catch(r){C.__e(r,t)}i.base=i.__P=null}if(i=e.__k)for(o=0;o<i.length;o++)i[o]&&tn(i[o],t,n||typeof e.type!="function");n||e.__e==null||Vi(e.__e),e.__c=e.__=e.__e=e.__d=void 0}function Bs(e,t,n){return this.constructor(e,n)}function Xi(e,t,n){var i,o,r,l;C.__&&C.__(e,t),o=(i=!1)?null:t.__k,r=[],l=[],Qt(t,e=t.__k=Xt(se,null,[e]),o||ze,ze,t.namespaceURI,o?null:t.firstChild?ut.call(t.childNodes):null,r,o?o.__e:t.firstChild,i,l),Zi(r,e,l)}function xe(e,t){var n={__c:t="__cC"+Gi++,__:e,Consumer:function(i,o){return i.children(o)},Provider:function(i){var o,r;return this.getChildContext||(o=[],(r={})[t]=this,this.getChildContext=function(){return r},this.componentWillUnmount=function(){o=null},this.shouldComponentUpdate=function(l){this.props.value!==l.value&&o.some(function(s){s.__e=!0,Jt(s)})},this.sub=function(l){o.push(l);var s=l.componentWillUnmount;l.componentWillUnmount=function(){o&&o.splice(o.indexOf(l),1),s&&s.call(l)}}),i.children}};return n.Provider.__=n.Consumer.contextType=n}ut=Bi.slice,C={__e:function(e,t,n,i){for(var o,r,l;t=t.__;)if((o=t.__c)&&!o.__)try{if((r=o.constructor)&&r.getDerivedStateFromError!=null&&(o.setState(r.getDerivedStateFromError(e)),l=o.__d),o.componentDidCatch!=null&&(o.componentDidCatch(e,i||{}),l=o.__d),l)return o.__E=o}catch(s){e=s}throw e}},zi=0,le.prototype.setState=function(e,t){var n;n=this.__s!=null&&this.__s!==this.state?this.__s:this.__s=_e({},this.state),typeof e=="function"&&(e=e(_e({},n),this.props)),e&&_e(n,e),e!=null&&this.__v&&(t&&this._sb.push(t),Jt(this))},le.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),Jt(this))},le.prototype.render=se,ye=[],Ui=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,Yt=function(e,t){return e.__v.__b-t.__v.__b},_t.__r=0,qt=0,Wt=Wi(!1),Zt=Wi(!0),Gi=0;const Vs=e=>{try{const t=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);if(!t)return null;let n=parseInt(t[1],16),i=parseInt(t[2],16),o=parseInt(t[3],16);n/=255,i/=255,o/=255;const r=Math.max(n,i,o),l=Math.min(n,i,o);let s,a;const c=(r+l)/2;if(r===l)s=a=0;else{const u=r-l;switch(a=c>.5?u/(2-r-l):u/(r+l),r){case n:s=(i-o)/u+(i<o?6:0);break;case i:s=(o-n)/u+2;break;case o:s=(n-i)/u+4;break}s/=6}return{h:s,s:a,l:c}}catch{return null}},Hs=(e,t=!1)=>{let n="";const i=Math.round(e.h*360),o=Math.round(e.s*100),r=Math.round(e.l*100);return n=`${i},${o}%,${r}%`,n=t?n:`hsl(${n})`,n};var Ji=(e=>(e.HEX="hex",e.HSL="hsl",e))(Ji||{});const Ks=(e,t,n)=>{const i=t==="hex"?Vs(e):e;return i&&i.l?(i.l<.25?i.l=i.l+.1:i.l<.5?i.l=i.l+.08:i.l<.75?i.l=i.l+.06:i.l<.9?i.l=i.l+.04:i.l=.9,Hs(i)):e};var bt=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const Qi="fides-embed-container",Ys="fides-overlay";let ht;const eo=e=>bt(void 0,[e],function*({initializedFides:t,i18n:n,renderOverlay:i}){const{options:o,experience:r}=t,l=()=>bt(void 0,null,function*(){var s,a,c;try{if(ht&&(Xi(null,ht),ht=void 0),o.fidesPrimaryColor){document.documentElement.style.setProperty("--fides-overlay-primary-color",o.fidesPrimaryColor);const d=Ks(o.fidesPrimaryColor,Ji.HEX,1);document.documentElement.style.setProperty("--fides-overlay-primary-button-background-hover-color",d)}let u;if(o.fidesEmbed)u=document.getElementById(Qi),u||(yield bt(void 0,null,function*(){return new Promise(h=>{let _=0,g=200;const f=setInterval(()=>{u=document.getElementById(Qi),u?(clearInterval(f),h()):(_+=1,_>=5&&g<1e3&&(g+=200))},g)})}));else{const d=o.overlayParentId||Ys;u=document.getElementById(d),u||(u=document.createElement("div"),u.id=d,u.className="fides-overlay",document.body.prepend(u))}return u?(i&&(((s=r.experience_config)==null?void 0:s.component)===U.MODAL||((a=r.experience_config)==null?void 0:a.component)===U.BANNER_AND_MODAL||((c=r.experience_config)==null?void 0:c.component)===U.TCF_OVERLAY)&&(i({initializedFides:t,i18n:n},u),ht=u),yield Promise.resolve()):yield Promise.reject(new Error("There was a problem rendering the Fides overlay."))}catch(u){return Promise.reject(u)}});return document?.readyState==="loading"?document.addEventListener("readystatechange",()=>bt(void 0,null,function*(){document.readyState==="interactive"&&l()})):l(),Promise.resolve()});var Ne,$,nn,to,Me=0,no=[],R=C,io=R.__b,oo=R.__r,ro=R.diffed,ao=R.__c,so=R.unmount,lo=R.__;function yt(e,t){R.__h&&R.__h($,e,Me||t),Me=0;var n=$.__H||($.__H={__:[],__h:[]});return e>=n.__.length&&n.__.push({}),n.__[e]}function Y(e){return Me=1,qs(fo,e)}function qs(e,t,n){var i=yt(Ne++,2);if(i.t=e,!i.__c&&(i.__=[n?n(t):fo(void 0,t),function(s){var a=i.__N?i.__N[0]:i.__[0],c=i.t(a,s);a!==c&&(i.__N=[c,i.__[1]],i.__c.setState({}))}],i.__c=$,!$.u)){var o=function(s,a,c){if(!i.__c.__H)return!0;var u=i.__c.__H.__.filter(function(h){return!!h.__c});if(u.every(function(h){return!h.__N}))return!r||r.call(this,s,a,c);var d=!1;return u.forEach(function(h){if(h.__N){var _=h.__[0];h.__=h.__N,h.__N=void 0,_!==h.__[0]&&(d=!0)}}),!(!d&&i.__c.props===s)&&(!r||r.call(this,s,a,c))};$.u=!0;var r=$.shouldComponentUpdate,l=$.componentWillUpdate;$.componentWillUpdate=function(s,a,c){if(this.__e){var u=r;r=void 0,o(s,a,c),r=u}l&&l.call(this,s,a,c)},$.shouldComponentUpdate=o}return i.__N||i.__}function F(e,t){var n=yt(Ne++,3);!R.__s&&uo(n.__H,t)&&(n.__=e,n.i=t,$.__H.__h.push(n))}function Ae(e){return Me=5,ve(function(){return{current:e}},[])}function ve(e,t){var n=yt(Ne++,7);return uo(n.__H,t)&&(n.__=e(),n.__H=t,n.__h=e),n.__}function S(e,t){return Me=8,ve(function(){return e},t)}function Te(e){var t=$.context[e.__c],n=yt(Ne++,9);return n.c=e,t?(n.__==null&&(n.__=!0,t.sub($)),t.props.value):e.__}function Ws(){for(var e;e=no.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(mt),e.__H.__h.forEach(on),e.__H.__h=[]}catch(t){e.__H.__h=[],R.__e(t,e.__v)}}R.__b=function(e){$=null,io&&io(e)},R.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),lo&&lo(e,t)},R.__r=function(e){oo&&oo(e),Ne=0;var t=($=e.__c).__H;t&&(nn===$?(t.__h=[],$.__h=[],t.__.forEach(function(n){n.__N&&(n.__=n.__N),n.i=n.__N=void 0})):(t.__h.forEach(mt),t.__h.forEach(on),t.__h=[],Ne=0)),nn=$},R.diffed=function(e){ro&&ro(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(no.push(t)!==1&&to===R.requestAnimationFrame||((to=R.requestAnimationFrame)||Zs)(Ws)),t.__H.__.forEach(function(n){n.i&&(n.__H=n.i),n.i=void 0})),nn=$=null},R.__c=function(e,t){t.some(function(n){try{n.__h.forEach(mt),n.__h=n.__h.filter(function(i){return!i.__||on(i)})}catch(i){t.some(function(o){o.__h&&(o.__h=[])}),t=[],R.__e(i,n.__v)}}),ao&&ao(e,t)},R.unmount=function(e){so&&so(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.forEach(function(i){try{mt(i)}catch(o){t=o}}),n.__H=void 0,t&&R.__e(t,n.__v))};var co=typeof requestAnimationFrame=="function";function Zs(e){var t,n=function(){clearTimeout(i),co&&cancelAnimationFrame(t),setTimeout(e)},i=setTimeout(n,100);co&&(t=requestAnimationFrame(n))}function mt(e){var t=$,n=e.__c;typeof n=="function"&&(e.__c=void 0,n()),$=t}function on(e){var t=$;e.__c=e.__(),$=t}function uo(e,t){return!e||e.length!==t.length||t.some(function(n,i){return n!==e[i]})}function fo(e,t){return typeof t=="function"?t(e):t}function Xs(e,t){for(var n in t)e[n]=t[n];return e}function po(e,t){for(var n in e)if(n!=="__source"&&!(n in t))return!0;for(var i in t)if(i!=="__source"&&e[i]!==t[i])return!0;return!1}function _o(e,t){this.props=e,this.context=t}(_o.prototype=new le).isPureReactComponent=!0,_o.prototype.shouldComponentUpdate=function(e,t){return po(this.props,e)||po(this.state,t)};var vo=C.__b;C.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),vo&&vo(e)};var Js=C.__e;C.__e=function(e,t,n,i){if(e.then){for(var o,r=t;r=r.__;)if((o=r.__c)&&o.__c)return t.__e==null&&(t.__e=n.__e,t.__k=n.__k),o.__c(e,t)}Js(e,t,n,i)};var go=C.unmount;function bo(e,t,n){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(i){typeof i.__c=="function"&&i.__c()}),e.__c.__H=null),(e=Xs({},e)).__c!=null&&(e.__c.__P===n&&(e.__c.__P=t),e.__c=null),e.__k=e.__k&&e.__k.map(function(i){return bo(i,t,n)})),e}function ho(e,t,n){return e&&n&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(i){return ho(i,t,n)}),e.__c&&e.__c.__P===t&&(e.__e&&n.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=n)),e}function rn(){this.__u=0,this.t=null,this.__b=null}function yo(e){var t=e.__.__c;return t&&t.__a&&t.__a(e)}function wt(){this.u=null,this.o=null}C.unmount=function(e){var t=e.__c;t&&t.__R&&t.__R(),t&&32&e.__u&&(e.type=null),go&&go(e)},(rn.prototype=new le).__c=function(e,t){var n=t.__c,i=this;i.t==null&&(i.t=[]),i.t.push(n);var o=yo(i.__v),r=!1,l=function(){r||(r=!0,n.__R=null,o?o(s):s())};n.__R=l;var s=function(){if(!--i.__u){if(i.state.__a){var a=i.state.__a;i.__v.__k[0]=ho(a,a.__c.__P,a.__c.__O)}var c;for(i.setState({__a:i.__b=null});c=i.t.pop();)c.forceUpdate()}};i.__u++||32&t.__u||i.setState({__a:i.__b=i.__v.__k[0]}),e.then(l,l)},rn.prototype.componentWillUnmount=function(){this.t=[]},rn.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var n=document.createElement("div"),i=this.__v.__k[0].__c;this.__v.__k[0]=bo(this.__b,n,i.__O=i.__P)}this.__b=null}var o=t.__a&&Xt(se,null,e.fallback);return o&&(o.__u&=-33),[Xt(se,null,t.__a?null:e.children),o]};var mo=function(e,t,n){if(++n[1]===n[0]&&e.o.delete(t),e.props.revealOrder&&(e.props.revealOrder[0]!=="t"||!e.o.size))for(n=e.u;n;){for(;n.length>3;)n.pop()();if(n[1]<n[0])break;e.u=n=n[2]}};(wt.prototype=new le).__a=function(e){var t=this,n=yo(t.__v),i=t.o.get(e);return i[0]++,function(o){var r=function(){t.props.revealOrder?(i.push(o),mo(t,e,i)):o()};n?n(r):r()}},wt.prototype.render=function(e){this.u=null,this.o=new Map;var t=vt(e.children);e.revealOrder&&e.revealOrder[0]==="b"&&t.reverse();for(var n=t.length;n--;)this.o.set(t[n],this.u=[1,0,this.u]);return e.children},wt.prototype.componentDidUpdate=wt.prototype.componentDidMount=function(){var e=this;this.o.forEach(function(t,n){mo(e,n,t)})};var Qs=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.element")||60103,el=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,tl=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,nl=/[A-Z0-9]/g,il=typeof document<"u",ol=function(e){return(typeof Symbol<"u"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};le.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(le.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})});var wo=C.event;function rl(){}function al(){return this.cancelBubble}function sl(){return this.defaultPrevented}C.event=function(e){return wo&&(e=wo(e)),e.persist=rl,e.isPropagationStopped=al,e.isDefaultPrevented=sl,e.nativeEvent=e};var ll={enumerable:!1,configurable:!0,get:function(){return this.class}},Eo=C.vnode;C.vnode=function(e){typeof e.type=="string"&&function(t){var n=t.props,i=t.type,o={};for(var r in n){var l=n[r];if(!(r==="value"&&"defaultValue"in n&&l==null||il&&r==="children"&&i==="noscript"||r==="class"||r==="className")){var s=r.toLowerCase();r==="defaultValue"&&"value"in n&&n.value==null?r="value":r==="download"&&l===!0?l="":s==="translate"&&l==="no"?l=!1:s==="ondoubleclick"?r="ondblclick":s!=="onchange"||i!=="input"&&i!=="textarea"||ol(n.type)?s==="onfocus"?r="onfocusin":s==="onblur"?r="onfocusout":tl.test(r)?r=s:i.indexOf("-")===-1&&el.test(r)?r=r.replace(nl,"-$&").toLowerCase():l===null&&(l=void 0):s=r="oninput",s==="oninput"&&o[r=s]&&(r="oninputCapture"),o[r]=l}}i=="select"&&o.multiple&&Array.isArray(o.value)&&(o.value=vt(n.children).forEach(function(a){a.props.selected=o.value.indexOf(a.props.value)!=-1})),i=="select"&&o.defaultValue!=null&&(o.value=vt(n.children).forEach(function(a){a.props.selected=o.multiple?o.defaultValue.indexOf(a.props.value)!=-1:o.defaultValue==a.props.value})),n.class&&!n.className?(o.class=n.class,Object.defineProperty(o,"className",ll)):(n.className&&!n.class||n.class&&n.className)&&(o.class=o.className=n.className),t.props=o}(e),e.$$typeof=Qs,Eo&&Eo(e)};var ko=C.__r;C.__r=function(e){ko&&ko(e),e.__c};var Oo=C.diffed;C.diffed=function(e){Oo&&Oo(e);var t=e.props,n=e.__e;n!=null&&e.type==="textarea"&&"value"in t&&t.value!==n.value&&(n.value=t.value==null?"":t.value)};var cl=0;function p(e,t,n,i,o,r){t||(t={});var l,s,a=t;if("ref"in a)for(s in a={},t)s=="ref"?l=t[s]:a[s]=t[s];var c={type:e,props:a,key:n,ref:l,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:--cl,__i:-1,__u:0,__source:o,__self:r};if(typeof e=="function"&&(l=e.defaultProps))for(s in l)a[s]===void 0&&(a[s]=l[s]);return C.vnode&&C.vnode(c),c}function dl(e,t){t===void 0&&(t={});var n=t.insertAt;if(!(typeof document>"u")){var i=document.head||document.getElementsByTagName("head")[0],o=document.createElement("style");o.type="text/css",n==="top"&&i.firstChild?i.insertBefore(o,i.firstChild):i.appendChild(o),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(document.createTextNode(e))}}var ul=`:root{--fides-overlay-primary-color:#2b2e35;--fides-overlay-background-color:#f7fafc;--fides-overlay-embed-background-color:transparent;--fides-overlay-font-color:#4a5568;--fides-overlay-font-color-dark:#2d3748;--fides-overlay-hover-color:#edf2f7;--fides-overlay-gpc-applied-background-color:#38a169;--fides-overlay-gpc-applied-text-color:#fff;--fides-overlay-gpc-overridden-background-color:#e53e3e;--fides-overlay-gpc-overridden-text-color:#fff;--fides-overlay-brand-link-logo-color:#2b2e35;--fides-overlay-background-dark-color:#e2e8f0;--fides-overlay-background-error-color:#f7c2c2;--fides-overlay-skeleton-gradient-from-color:rgba(0,0,0,.06);--fides-overlay-skeleton-gradient-to-color:rgba(0,0,0,.15);--fides-overlay-inactive-font-color:#a0aec0;--fides-overlay-primary-button-background-color:var(
|
|
1
|
+
if(typeof Fides<"u"&&Fides.options?.fidesUnsupportedRepeatedScriptLoading!=="enabled_acknowledge_not_supported")throw new Error("Fides detected that it was already loaded on this page, aborting execution! See https://www.ethyca.com/docs/dev-docs/js/troubleshooting for more information.");(function(v,ye){typeof exports=="object"&&typeof module<"u"?ye(exports):(v=typeof globalThis<"u"?globalThis:v||self,ye(v.Fides={}))})(this,function(v){"use strict";class ye{constructor(t,i,n){this.notice=t,this.consentPreference=i,this.noticeHistoryId=n}}v.TCMobileDataVals=void 0,(e=>{(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFgdprApplies||(e.IABTCFgdprApplies={})),(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFPurposeOneTreatment||(e.IABTCFPurposeOneTreatment={})),(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFUseNonStandardTexts||(e.IABTCFUseNonStandardTexts={}))})(v.TCMobileDataVals||(v.TCMobileDataVals={}));var oi=(e=>(e.GPP_US_NATIONAL="gpp_us_national",e.GPP_US_STATE="gpp_us_state",e))(oi||{}),ri=(e=>(e.FRONTEND="frontend",e.SYSTEM_WIDE="system_wide",e.NOT_APPLICABLE="not_applicable",e))(ri||{}),B=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.NOTICE_ONLY="notice_only",e))(B||{}),vt=(e=>(e.COOKIE="Cookie",e.BROWSER_REQUEST="Browser Request",e.I_FRAME="iFrame",e.JAVASCRIPT_TAG="Javascript tag",e.IMAGE="Image",e))(vt||{}),G=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.ACKNOWLEDGE="acknowledge",e.NOT_APPLICABLE="not_applicable",e.TCF="tcf",e))(G||{}),me=(e=>(e.OMIT="omit",e.INCLUDE="include",e))(me||{}),ce=(e=>(e.BOOLEAN="boolean",e.CONSENT_MECHANISM="consent_mechanism",e))(ce||{}),le=(e=>(e.THROW="throw",e.WARN="warn",e.IGNORE="ignore",e))(le||{}),j=(e=>(e.OVERLAY="overlay",e.BANNER_AND_MODAL="banner_and_modal",e.MODAL="modal",e.PRIVACY_CENTER="privacy_center",e.TCF_OVERLAY="tcf_overlay",e.HEADLESS="headless",e))(j||{}),ai=(e=>(e.ALWAYS_ENABLED="always_enabled",e.ENABLED_WHERE_REQUIRED="enabled_where_required",e.ALWAYS_DISABLED="always_disabled",e))(ai||{}),si=(e=>(e.PURPOSES="/tcf/purposes",e.FEATURES="/tcf/features",e.VENDORS="/tcf/vendors",e))(si||{}),ke=(e=>(e.OPTIONS="options",e.EXPERIENCE_TRANSLATION="language",e))(ke||{}),Q=(e=>(e.PRIMARY="primary",e.SECONDARY="secondary",e.TERTIARY="tertiary",e))(Q||{}),Ge=(e=>(e.ACKNOWLEDGE="acknowledge",e.OPT_IN_OPT_OUT="opt_in_opt_out",e.OPT_IN_ONLY="opt_in_only",e.GPC_CONDITIONAL="gpc_conditional",e))(Ge||{}),ci=(e=>(e.REJECT_ALL="reject_all",e.REJECT_CONSENT_ONLY="reject_consent_only",e))(ci||{}),S=(e=>(e.BUTTON="button",e.REJECT="reject",e.ACCEPT="accept",e.SCRIPT="script",e.SAVE="save",e.DISMISS="dismiss",e.GPC="gpc",e.INDIVIDUAL_NOTICE="individual_notice",e.ACKNOWLEDGE="acknowledge",e.EXTERNAL_PROVIDER="external_provider",e))(S||{}),li=(e=>(e.privacy_center="privacy_center",e.overlay="overlay",e.api="api",e))(li||{}),ie=(e=>(e.NONE="none",e.APPLIED="applied",e.OVERRIDDEN="overridden",e))(ie||{}),Se=(e=>(e.OVERLAY="overlay",e.MODAL="modal",e.BANNER="banner",e.PRIVACY_CENTER="privacy_center",e.TCF_OVERLAY="tcf_overlay",e.TCF_BANNER="tcf_banner",e))(Se||{}),_t=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Ve={exports:{}};/*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */Ve.exports,function(e,t){(function(i){var n=t,o=e&&e.exports==n&&e,r=typeof _t=="object"&&_t;(r.global===r||r.window===r)&&(i=r);var a=function(g){this.message=g};a.prototype=new Error,a.prototype.name="InvalidCharacterError";var s=function(g){throw new a(g)},c="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",d=/[\t\n\f\r ]/g,f=function(g){g=String(g).replace(d,"");var h=g.length;h%4==0&&(g=g.replace(/==?$/,""),h=g.length),(h%4==1||/[^+a-zA-Z0-9/]/.test(g))&&s("Invalid character: the string to be decoded is not correctly encoded.");for(var m=0,y,b,w="",C=-1;++C<h;)b=c.indexOf(g.charAt(C)),y=m%4?y*64+b:b,m++%4&&(w+=String.fromCharCode(255&y>>(-2*m&6)));return w},l=function(g){g=String(g),/[^\0-\xFF]/.test(g)&&s("The string to be encoded contains characters outside of the Latin1 range.");for(var h=g.length%3,m="",y=-1,b,w,C,x,N=g.length-h;++y<N;)b=g.charCodeAt(y)<<16,w=g.charCodeAt(++y)<<8,C=g.charCodeAt(++y),x=b+w+C,m+=c.charAt(x>>18&63)+c.charAt(x>>12&63)+c.charAt(x>>6&63)+c.charAt(x&63);return h==2?(b=g.charCodeAt(y)<<8,w=g.charCodeAt(++y),x=b+w,m+=c.charAt(x>>10)+c.charAt(x>>4&63)+c.charAt(x<<2&63)+"="):h==1&&(x=g.charCodeAt(y),m+=c.charAt(x>>2)+c.charAt(x<<4&63)+"=="),m},_={encode:l,decode:f,version:"1.0.0"};if(n&&!n.nodeType)if(o)o.exports=_;else for(var p in _)_.hasOwnProperty(p)&&(n[p]=_[p]);else i.base64=_})(_t)}(Ve,Ve.exports);var di=Ve.exports;/*! js-cookie v3.0.5 | MIT */function He(e){for(var t=1;t<arguments.length;t++){var i=arguments[t];for(var n in i)e[n]=i[n]}return e}var go={read:function(e){return e[0]==='"'&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}};function ht(e,t){function i(o,r,a){if(!(typeof document>"u")){a=He({},t,a),typeof a.expires=="number"&&(a.expires=new Date(Date.now()+a.expires*864e5)),a.expires&&(a.expires=a.expires.toUTCString()),o=encodeURIComponent(o).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var s="";for(var c in a)a[c]&&(s+="; "+c,a[c]!==!0&&(s+="="+a[c].split(";")[0]));return document.cookie=o+"="+e.write(r,o)+s}}function n(o){if(!(typeof document>"u"||arguments.length&&!o)){for(var r=document.cookie?document.cookie.split("; "):[],a={},s=0;s<r.length;s++){var c=r[s].split("="),d=c.slice(1).join("=");try{var f=decodeURIComponent(c[0]);if(a[f]=e.read(d,f),o===f)break}catch{}}return o?a[o]:a}}return Object.create({set:i,get:n,remove:function(o,r){i(o,"",He({},r,{expires:-1}))},withAttributes:function(o){return ht(this.converter,He({},this.attributes,o))},withConverter:function(o){return ht(He({},this.converter,o),this.attributes)}},{attributes:{value:Object.freeze(t)},converter:{value:Object.freeze(e)}})}var vo=ht(go,{path:"/"});let Ke;const _o=new Uint8Array(16);function ho(){if(!Ke&&(Ke=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Ke))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Ke(_o)}const M=[];for(let e=0;e<256;++e)M.push((e+256).toString(16).slice(1));function bo(e,t=0){return M[e[t+0]]+M[e[t+1]]+M[e[t+2]]+M[e[t+3]]+"-"+M[e[t+4]]+M[e[t+5]]+"-"+M[e[t+6]]+M[e[t+7]]+"-"+M[e[t+8]]+M[e[t+9]]+"-"+M[e[t+10]]+M[e[t+11]]+M[e[t+12]]+M[e[t+13]]+M[e[t+14]]+M[e[t+15]]}var fi={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function ui(e,t,i){if(fi.randomUUID&&!e)return fi.randomUUID();e=e||{};const n=e.random||(e.rng||ho)();return n[6]=n[6]&15|64,n[8]=n[8]&63|128,bo(n)}const Ye=(e,t)=>!!Object.keys(t).includes(e.notice_key),ne=e=>!e||e===G.OPT_OUT?!1:e===G.OPT_IN?!0:e===G.ACKNOWLEDGE,Le=(e,t)=>e?t===B.NOTICE_ONLY?G.ACKNOWLEDGE:G.OPT_IN:G.OPT_OUT,Pe=e=>typeof e=="string"?ne(e):e,bt=e=>e?e.split(",").map(t=>t.trim()).filter(Boolean):[],pi=(e,t)=>e===void 0?!1:typeof e=="boolean"?e:t.globalPrivacyControl===!0?e.globalPrivacyControl:e.value,gi=(e,t)=>e.consent_mechanism===B.NOTICE_ONLY?!0:t&&Ye(e,t)?typeof t[e.notice_key]=="string"?ne(t[e.notice_key]):t[e.notice_key]:ne(e.default_preference);var yt=(e=>(e.CONSENT="Consent",e.LEGITIMATE_INTERESTS="Legitimate interests",e))(yt||{});const yo=",",mo=[{experienceKey:"tcf_purpose_consents",tcfModelKey:"purposeConsents",enabledIdsKey:"purposesConsent"},{experienceKey:"tcf_purpose_legitimate_interests",tcfModelKey:"purposeLegitimateInterests",enabledIdsKey:"purposesLegint"},{experienceKey:"tcf_special_features",tcfModelKey:"specialFeatureOptins",enabledIdsKey:"specialFeatures"},{experienceKey:"tcf_vendor_consents",tcfModelKey:"vendorConsents",enabledIdsKey:"vendorsConsent"},{experienceKey:"tcf_vendor_legitimate_interests",tcfModelKey:"vendorLegitimateInterests",enabledIdsKey:"vendorsLegint"}],ko=[{cookieKey:"system_consent_preferences",experienceKey:"tcf_system_consents"},{cookieKey:"system_legitimate_interests_preferences",experienceKey:"tcf_system_legitimate_interests"}];mo.filter(({experienceKey:e})=>e!=="tcf_features"&&e!=="tcf_special_purposes").map(e=>e.experienceKey),yt.CONSENT.toString(),yt.LEGITIMATE_INTERESTS.toString();const mt="fides_consent",vi=365,kt=e=>{const t=(e??"").trim();return t.length>0?`${mt}_${t}`:mt},We=vo.withConverter({read(e){return decodeURIComponent(e)},write(e){return encodeURIComponent(e)}}),wt=e=>e?Object.values(e).some(t=>t!==void 0):!1,_i=()=>ui(),wo=_i(),hi=e=>!!!e.fides_meta?.updatedAt,bi=e=>{const t=new Date;return{consent:e||{},identity:{fides_user_device_id:wo||_i()},fides_meta:{version:"0.9.0",createdAt:t.toISOString(),updatedAt:""},tcf_consent:{},non_applicable_notice_keys:[]}},qe=e=>We.get(e),we=e=>{const t=qe(kt(e));if(t)try{return JSON.parse(t)}catch{try{return JSON.parse(di.decode(t))}catch{return}}},yi=(e,{fidesClearCookie:t=!1,fidesCookieSuffix:i}={})=>{const n=bi(e);if(typeof document>"u")return n;if(t)return document.cookie=`${kt(i)}=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT`,n;let o=we(i);if(o?.consent){const{consent:r}=o;Object.entries(r).forEach(([a,s])=>{r[a]=Pe(s)})}if(!o)return n;try{"consent"in o&&"fides_meta"in o||(o={...n,consent:o});const r={...e,...o.consent};return o.consent=r,o}catch(r){return console.error("Unable to read consent cookie: invalid JSON.",r),n}},mi=(e,{base64Cookie:t=!1,fidesCookieSuffix:i}={})=>{if(typeof document>"u")return;const o=new Date().toISOString();e.fides_meta.updatedAt=o;let r=JSON.stringify(e);t&&(r=di.encode(r));const a=window.location.hostname.split(".");let s="";for(let c=1;c<=a.length;c+=1)if(s=a.slice(-c).join("."),We.set(kt(i),r,{path:"/",domain:s,expires:vi})){const f=we(i);if(f&&f.fides_meta.updatedAt===e.fides_meta.updatedAt)break}},Et=({experience:e,cookie:t})=>{if(!e.privacy_notices)return e;const i=e.privacy_notices?.map(o=>{const r=t.non_applicable_notice_keys?.includes(o.notice_key),a=e.non_applicable_privacy_notices?.includes(o.notice_key);if(r&&!a)return{...o,current_preference:void 0};const s=Object.keys(t.consent).includes(o.notice_key)?Le(!!t.consent[o.notice_key],o.consent_mechanism):void 0;return{...o,current_preference:s}});return{...e,privacy_notices:i}},Eo=e=>{const t={};return ko.forEach(({cookieKey:i})=>{const n=e[i]??[];t[i]=Object.fromEntries(n.map(o=>[o.id,ne(o.preference)]))}),t},ki=(e,t)=>{const i={};return e?.options.forEach(({cookieKeys:n,default:o})=>{if(o===void 0)return;const r=pi(o,t);n.forEach(a=>{const s=i[a];if(s===void 0){i[a]=r;return}i[a]=s&&r})}),i},wi=(e,t=!0,i=!0)=>{const{hostname:n}=window.location;e.forEach(o=>{const r=t?n:o.domain;We.remove(o.name,{path:o.path??"/",domain:r}),i&&We.remove(o.name,{domain:`.${n}`})})},Ei=e=>{const t=new Map(e.map(({notice:i,consentPreference:n})=>[i.notice_key,ne(n)]));return Object.fromEntries(t)},Ci=async(e,t)=>{const n=window.Fides?.experience?.non_applicable_privacy_notices||[];return{...e,consent:Ei(t),non_applicable_notice_keys:n}},Co=e=>{const t={};return e.privacy_notices&&e.privacy_notices.forEach(i=>{i.current_preference?t[i.notice_key]=ne(i.current_preference):i.default_preference&&(t[i.notice_key]=ne(i.default_preference))}),t},xi=({cookie:e,experience:t})=>{const i=Co(t);return{...e,consent:i,non_applicable_notice_keys:t.non_applicable_privacy_notices||e.non_applicable_notice_keys||[]}};class xo{constructor(){this.cookieName="OptanonConsent",this.migrationMethod=S.EXTERNAL_PROVIDER}getConsentCookie(){return qe(this.cookieName)}convertToFidesConsent(t,i){if(i.otFidesMapping)try{const o=decodeURIComponent(i.otFidesMapping).replace(/^'|'$/g,""),r=JSON.parse(o),a=this.parseCookieValue(t,r);return a}catch{return}}parseCookieValue(t,i){const n={},o=t.match(/groups=([^&]*)/);return!o||!o[1]||o[1].split(",").forEach(s=>{const[c,d]=s.split(":");i[c]&&i[c].forEach(f=>{const l=d==="1";n[f]===void 0&&(n[f]=l)})}),n}}var Ai=(e=>(e.ONETRUST="onetrust",e))(Ai||{});const Ct=new Map;function Ao(e,t){Ct.set(e,t)}function To(e){e.otFidesMapping&&Ao(Ai.ONETRUST,new xo)}function Ti(e){let t,i;if(Array.from(Ct).some(([o,r])=>{const a=r.getConsentCookie();if(!a)return!1;const s=r.convertToFidesConsent(a,e);return s?(t=s,i=o,!0):!1}),!i)return{consent:void 0,method:void 0};const n=Ct.get(i);return{consent:t,method:n.migrationMethod}}const No=e=>{typeof window<"u"?window.fidesDebugger||(window.fidesDebugger=e?console.log:()=>{}):globalThis.fidesDebugger=()=>{}},V="en",Ze="Manage preferences",Xe=/^([A-Za-z]{2,3})(?:(?:[_-]([A-Za-z0-9]{2,4}))?$|(?:(?:[_-]\w+)+))/,Oo=/^(?:([a-z]{2})(-[a-z0-9]{1,3})?|(eea))$/i,So=[{overrideName:"fidesEmbed",overrideType:"boolean",overrideKey:"fides_embed",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableSaveApi",overrideType:"boolean",overrideKey:"fides_disable_save_api",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableNoticesServedApi",overrideType:"boolean",overrideKey:"fides_disable_notices_served_api",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableBanner",overrideType:"boolean",overrideKey:"fides_disable_banner",validationRegex:/^(true|false)$/},{overrideName:"fidesString",overrideType:"string",overrideKey:"fides_string",validationRegex:/(.*)/},{overrideName:"fidesTcfGdprApplies",overrideType:"boolean",overrideKey:"fides_tcf_gdpr_applies",validationRegex:/^(true|false)$/},{overrideName:"fidesLocale",overrideType:"string",overrideKey:"fides_locale",validationRegex:Xe},{overrideName:"fidesPrimaryColor",overrideType:"string",overrideKey:"fides_primary_color",validationRegex:/(.*)/},{overrideName:"fidesClearCookie",overrideType:"string",overrideKey:"fides_clear_cookie",validationRegex:/(.*)/},{overrideName:"fidesConsentOverride",overrideType:"string",overrideKey:"fides_consent_override",validationRegex:/^(accept|reject)$/},{overrideName:"otFidesMapping",overrideType:"string",overrideKey:"ot_fides_mapping",validationRegex:/(.*)/},{overrideName:"fidesDisabledNotices",overrideType:"array",overrideKey:"fides_disabled_notices",validationRegex:/(.*)/,transform:bt},{overrideName:"fidesDisabledSystems",overrideType:"array",overrideKey:"fides_disabled_systems",validationRegex:/(.*)/,transform:bt},{overrideName:"fidesConsentNonApplicableFlagMode",overrideType:"string",overrideKey:"fides_consent_non_applicable_flag_mode",validationRegex:/^(omit|include)$/},{overrideName:"fidesConsentFlagType",overrideType:"string",overrideKey:"fides_consent_flag_type",validationRegex:/^(boolean|consent_mechanism)$/},{overrideName:"fidesInitializedEventMode",overrideType:"string",overrideKey:"fides_initialized_event_mode",validationRegex:/^(multiple|once|disable)$/},{overrideName:"fidesModalDefaultView",overrideType:"string",overrideKey:"fides_modal_default_view",validationRegex:/^\/tcf\/(purposes|features|vendors)$/},{overrideName:"fidesModalDisplay",overrideType:"string",overrideKey:"fides_modal_display",validationRegex:/^(immediate|default)$/},{overrideName:"fidesUnsupportedRepeatedScriptLoading",overrideType:"string",overrideKey:"fides_unsupported_repeated_script_loading",validationRegex:/^(enabled_acknowledge_not_supported|disabled)$/},{overrideName:"fidesCookieSuffix",overrideType:"string",overrideKey:"fides_cookie_suffix",validationRegex:/.*/}],Lo=[{overrideName:"title",overrideType:"string",overrideKey:"fides_title",validationRegex:/(.*)/},{overrideName:"description",overrideType:"string",overrideKey:"fides_description",validationRegex:/(.*)/},{overrideName:"privacy_policy_url",overrideType:"string",overrideKey:"fides_privacy_policy_url",validationRegex:/(.*)/},{overrideName:"override_language",overrideType:"string",overrideKey:"fides_override_language",validationRegex:Xe}],Po="fides-overlay-wrapper",Io="fides-i18n-icon",xt=["marketing","data_sales","data_sales_and_sharing","data_sales_sharing_gpp_us_state","data_sharing_gpp_us_state","data_sales_gpp_us_state","targeted_advertising_gpp_us_state","sales_sharing_targeted_advertising_gpp_us_national","sales_sharing_targeted_advertising"],Ee=e=>!e||typeof e!="object"?!1:Object.keys(e).length===0||"id"in e,Fo=e=>!!(e&&e.every(t=>t.default_preference===G.OPT_IN)),Je=e=>{if(e){if(e.location&&Oo.test(e.location))return e.location.replace("-","_").toLowerCase();if(e.country&&e.region)return`${e.country.toLowerCase()}_${e.region.toLowerCase()}`}},Ni=e=>{if(typeof e!="object"||!e.fidesApiUrl||!e.privacyCenterUrl)return!1;try{new URL(e.privacyCenterUrl),new URL(e.fidesApiUrl)}catch{return!1}return!0},Oi=e=>{switch(e){case ke.OPTIONS:return So;case ke.EXPERIENCE_TRANSLATION:return Lo;default:return null}},Si=e=>{if(!Ee(e))return!1;const t=e.experience_config;return!(!t||!(t.component===j.MODAL||t.component===j.BANNER_AND_MODAL||t.component===j.TCF_OVERLAY||t.component===j.HEADLESS)||t.component===j.BANNER_AND_MODAL&&!(e.privacy_notices&&e.privacy_notices.length>0))},Qe=e=>e.fidesConsentOverride===S.ACCEPT||e.fidesConsentOverride===S.REJECT,Do=e=>e.default_preference??G.OPT_OUT,et=(e,t,i,n)=>n?.fidesDisableBanner||!Ee(e)||n.fidesModalDisplay==="immediate"||e.experience_config?.component===j.TCF_OVERLAY&&e.vendor_count===0?!1:e.experience_config?.component===j.TCF_OVERLAY&&t?n&&Qe(n)?!1:e.meta?.version_hash?e.meta.version_hash!==t.tcf_version_hash:!0:e.experience_config?.component===j.MODAL||e.experience_config?.component===j.HEADLESS||!e?.privacy_notices?.length?!1:i?n&&Qe(n)?!1:t?.fides_meta.consentMethod===S.GPC?!0:!e.privacy_notices?.every(r=>Ye(r,i)):!0,Li=e=>{e[0]==="window"&&e.shift();let t=window;for(;e.length>0;){const i=e.shift();if(typeof i>"u"||typeof t[i]!="object")return;t=t[i]}return t},Pi=({value:e,notice:t,consentContext:i})=>!i.globalPrivacyControl||!t.has_gpc_flag||t.consent_mechanism===B.NOTICE_ONLY?ie.NONE:e?ie.OVERRIDDEN:ie.APPLIED,At=()=>{},Ro=(e,t)=>e.map(i=>{const n=Le(t.includes(i.notice.notice_key),i.notice.consent_mechanism);return new ye(i.notice,n,i.bestTranslation?.privacy_notice_history_id)}),Ii=e=>{try{const t=JSON.stringify(e);return btoa(t.replace(/\s/g,""))}catch(t){throw new Error("Failed to encode Notice Consent string:",{cause:t})}},tt=e=>{if(!e)return{};try{const t=atob(e),i=JSON.parse(t);return Object.fromEntries(Object.entries(i).map(([n,o])=>[n,!!o]))}catch(t){throw new Error("Failed to decode Notice Consent string:",{cause:t})}},zo=({consent:e,nonApplicableNotices:t,flagType:i,mode:n=me.OMIT})=>{if(!t?.length)return e;const o={...e};return n===me.INCLUDE?t.forEach(r=>{o[r]=i===ce.CONSENT_MECHANISM?G.NOT_APPLICABLE:!0}):t.forEach(r=>{delete o[r]}),o},jo=({consent:e,flagType:t=ce.BOOLEAN,consentMechanisms:i})=>{const n={};if(t!==ce.CONSENT_MECHANISM)return Object.fromEntries(Object.entries(e).map(([r,a])=>[r,Pe(a)]));const o=Object.values(e).some(r=>typeof r=="boolean");if(o&&!i)throw new Error("Cannot transform boolean consent values to consent mechanisms without consent mechanisms map");return o?(Object.keys(e).forEach(r=>{const a=e[r];if(typeof a=="string")n[r]=a;else{const s=i[r];n[r]=Le(a,s)}}),n):{...e}},Ie=(e,t,i=[],n,o,r)=>{const a={...e},s=window.Fides?.options,c=o??s?.fidesConsentNonApplicableFlagMode??me.OMIT,d=n??s?.fidesConsentFlagType??ce.BOOLEAN,f={};Object.assign(f,zo({consent:{},nonApplicableNotices:t??[],flagType:d,mode:c}));const l=i.reduce((p,g)=>({...p,[g.notice_key]:g.consent_mechanism}),{}),_={};return Object.entries(a).forEach(([p,g])=>{r?.includes(p)&&!t?.includes(p)||(_[p]=g)}),Object.assign(f,jo({consent:_,consentMechanisms:l,flagType:d})),f},Mo=e=>{const t=e.split("~")[0];return!!(t&&["1","2"].includes(t)&&e?.match(t==="1"?/\d~[0-9.]*$/:/\d~[0-9.]*~dv.[0-9.]*$/))},Tt=(e,t,i)=>new Proxy(e,{get(n,o){if(n[o.toString()]===void 0){const r=t.fidesConsentFlagType===ce.CONSENT_MECHANISM;return!i&&o.toString()==="essential"?r?B.NOTICE_ONLY:!0:r?B.OPT_OUT:!1}return n[o.toString()]}});var ge=(e=>(e.FIDES="fides",e.EXTERNAL="external",e))(ge||{}),W=(e=>(e.TOGGLE="toggle",e.BUTTON="button",e.LINK="link",e))(W||{});const oe=(e,t,i)=>{const n=t?{...t}:void 0;if(typeof window<"u"&&typeof CustomEvent<"u"){const o={consentMethod:n?.fides_meta.consentMethod,...i};i?.trigger?.origin||(o.trigger={...o.trigger,origin:"fides"});const a=performance?.mark?.(e)?.startTime,s=n;s&&n?.consent&&(s.consent=Ie(n.consent,window.Fides?.experience?.non_applicable_privacy_notices,window.Fides?.experience?.privacy_notices,void 0,void 0,n.non_applicable_notice_keys));const c=new CustomEvent(e,{detail:{...s,debug:!!window.Fides?.options?.debug,extraDetails:o,timestamp:a},bubbles:!0});window.dispatchEvent(c)}},Fi=(e,t)=>{const i=n=>t(n.detail);return window.addEventListener(e,i),()=>{window.removeEventListener(e,i)}},Di=(e,t)=>{oe("FidesConsentLoaded",e,t),window.Fides?.options?.fidesInitializedEventMode==="multiple"&&oe("FidesInitialized",e,t)},Ri=(e,t)=>{oe("FidesReady",e,t);const i=window.Fides?.options?.fidesInitializedEventMode;(i==="multiple"||i==="once")&&oe("FidesInitialized",e,t)},Nt=e=>{if(!e)return{tc:"",ac:"",gpp:"",nc:""};const[t="",i="",n="",o=""]=e.split(yo);return t?{tc:t,ac:i,gpp:n,nc:o}:{tc:"",ac:"",gpp:n,nc:o}},Uo={FidesInitializing:!1,FidesInitialized:!1,FidesConsentLoaded:!1,FidesReady:!0,FidesUpdating:!1,FidesUpdated:!0,FidesUIShown:!1,FidesUIChanged:!1,FidesModalClosed:!1};function Ot(e,t){Object.entries(Uo).filter(([,o])=>o).map(([o])=>o).forEach(o=>{window.addEventListener(o,r=>{e(r.detail.consent)})}),window.Fides?.consent&&e(window.Fides.consent)}const $o={analytics:["collect","measure"],functional:["personalize"],advertising:["share","personalize"]},Bo={analytics:["aa"],functional:["target"],advertising:["aam"]};function Go(e,t){const i={};return Object.entries(t).forEach(([n,o])=>{const a=!!e[n]?"in":"out";o.forEach(s=>{i[s]=a})}),i}const Vo=(e,t)=>{const i=t?.purposeMapping&&Object.keys(t.purposeMapping).length>0?t.purposeMapping:$o,n=typeof window.alloy=="function"?window.alloy:null,o=window.adobe?.optIn||null;if(!(!n&&!o)){if(n){const r=Go(e,i);try{n("setConsent",{consent:[{standard:"Adobe",version:"2.0",value:r}]})}catch{}}if(o)try{const r={},a=t?.ecidMapping&&Object.keys(t.ecidMapping).length>0?t.ecidMapping:Bo;Object.entries(a).forEach(([c,d])=>{const f=!!e[c];d.forEach(l=>{r[l]=r[l]||f})});const{Categories:s}=o;Object.entries(s||{}).forEach(([,c])=>{typeof c=="string"&&(r[c]===!0?o.approve(c):r[c]===!1&&o.deny(c))})}catch{}}};function Ho(){const e={timestamp:new Date().toISOString()};if(typeof window.alloy=="function"?e.alloy={configured:!0,purposes:void 0}:e.alloy={configured:!1},window.adobe?.optIn){const{optIn:t}=window.adobe;try{const i={};t.Categories&&Object.entries(t.Categories).forEach(([,n])=>{typeof n=="string"&&typeof t.isApproved=="function"&&(i[n]=t.isApproved(n))}),e.ecidOptIn={configured:!0,categories:i}}catch{e.ecidOptIn={configured:!0}}}else e.ecidOptIn={configured:!1};return e}const Ko=e=>(Ot(t=>Vo(t,e)),{consent:()=>Ho()}),Yo=()=>typeof window.blueConicClient<"u"&&typeof window.blueConicClient.event<"u"&&typeof window.blueConicClient.event.subscribe<"u",zi=e=>{if(!Yo()||!window.blueConicClient?.profile)return;const t=window.blueConicClient?.profile?.getProfile(),i=e!==void 0&&Object.entries(e).length>0,n=xt.some(o=>e[o]);!i||n?(t.setConsentedObjectives(["iab_purpose_1","iab_purpose_2","iab_purpose_3","iab_purpose_4"]),t.setRefusedObjectives([])):(t.setConsentedObjectives(["iab_purpose_1"]),t.setRefusedObjectives(["iab_purpose_2","iab_purpose_3","iab_purpose_4"])),window.blueConicClient.profile.updateProfile()},Wo=({approach:e="onetrust"}={approach:"onetrust"})=>{if(e!=="onetrust")throw new Error("Unsupported approach");Ot(zi),window.addEventListener("onBlueConicLoaded",()=>{window.Fides?.consent&&zi(window.Fides.consent)})},qo={analytics:["analytics_storage"],advertising:["ad_storage","ad_personalization","ad_user_data"],functional:["functionality_storage","personalization_storage"],data_sales_and_sharing:["ad_storage","ad_personalization","ad_user_data"],marketing:["ad_storage","ad_personalization","ad_user_data"]},Zo=(e,t)=>{const i={};return Object.entries(t).forEach(([n,o])=>{if(n in e){const a=!!e[n]?"granted":"denied";o.forEach(s=>{i[s]=a})}}),i},Xo=(e,t)=>{const{purposeMapping:i}=t;if(typeof window.gtag!="function")return;const n=Zo(e,i);if(Object.keys(n).length!==0)try{window.gtag("consent","update",n)}catch{}},Jo=e=>{if(typeof window.gtag!="function")return null;const t=new Set;return Object.values(e).forEach(i=>{i.forEach(n=>t.add(n))}),null},Qo=e=>{const t={purposeMapping:e?.purposeMapping&&Object.keys(e.purposeMapping).length>0?e.purposeMapping:qo};return Ot(i=>{Xo(i,t)}),{consent:()=>Jo(t.purposeMapping)}},ji=(e,t)=>{const i=window.dataLayer??[];window.dataLayer=i;const{detail:n,type:o}=e,{consent:r,extraDetails:a,fides_string:s,timestamp:c}=n;let d=r;const f=t?.flag_type??window.Fides?.options?.fidesConsentFlagType??ce.BOOLEAN,l=t?.non_applicable_flag_mode??window.Fides?.options?.fidesConsentNonApplicableFlagMode??me.OMIT,_=window.Fides?.experience?.privacy_notices??[],p=window.Fides?.experience?.non_applicable_privacy_notices;d=Ie(r,p,_,f,l,window.Fides?.cookie?.non_applicable_notice_keys);const g={consent:d,extraDetails:a,fides_string:s,timestamp:c};i.push({event:o,Fides:g})},er=e=>{const i=Object.entries({FidesInitializing:{forwardEvent:!1,dispatchSynthetic:!1},FidesInitialized:{forwardEvent:!0,dispatchSynthetic:!0},FidesConsentLoaded:{forwardEvent:!0,dispatchSynthetic:!1},FidesReady:{forwardEvent:!0,dispatchSynthetic:!0},FidesUpdating:{forwardEvent:!0,dispatchSynthetic:!1},FidesUpdated:{forwardEvent:!0,dispatchSynthetic:!1},FidesUIChanged:{forwardEvent:!0,dispatchSynthetic:!1},FidesUIShown:{forwardEvent:!0,dispatchSynthetic:!1},FidesModalClosed:{forwardEvent:!0,dispatchSynthetic:!1}});if(i.filter(([,{forwardEvent:o}])=>o).map(([o])=>o).forEach(o=>{window.addEventListener(o,r=>ji(r,e))}),window.Fides?.initialized){const{consent:o,fides_meta:r,identity:a,tcf_consent:s}=window.Fides,c=performance?.getEntriesByName?.("FidesInitialized")[0]?.startTime;i.filter(([,{dispatchSynthetic:f}])=>f).map(([f])=>f).forEach(f=>{ji({type:f,detail:{consent:o,fides_meta:r,identity:a,tcf_consent:s,timestamp:c,extraDetails:{consentMethod:r?.consentMethod}}},e)})}},tr=()=>{if(window.fbq)return window.fbq;const e={queue:[],loaded:!0,version:"2.0",push(...t){const i=window.fbq;i.callMethod?i.callMethod(...t):i.queue.push(t)}};return window.fbq=Object.assign(e.push,e),window._fbq=window.fbq,window.fbq},ir=e=>{const t=tr();t("consent",e.consent?"grant":"revoke"),e.dataUse?t("dataProcessingOptions",[]):t("dataProcessingOptions",["LDU"],1,1e3)},nr={marketing:xt,sale_of_data:xt,analytics:["analytics"],preferences:["functional"]};function or(e,t){const i=Object.fromEntries(Object.entries(e).map(([o,r])=>[o,Pe(r)])),n={};return Object.entries(nr).forEach(([o,r])=>{const a=r.some(c=>i[c]===!0),s=r.some(c=>i[c]===!1);a?n[o]=!0:s&&(n[o]=!1)}),n.sale_of_data===void 0&&(n.sale_of_data=t?.sale_of_data_default??!1),n}const it=(e,t)=>{window.Shopify.customerPrivacy.setTrackingConsent(or(e,t),()=>{})},Mi=e=>{window.Shopify?.customerPrivacy||console.error("Fides could not access Shopify's customerPrivacy API"),window.addEventListener("FidesReady",t=>it(t.detail.consent,e)),window.addEventListener("FidesUpdating",t=>it(t.detail.consent,e)),window.addEventListener("FidesUpdated",t=>it(t.detail.consent,e)),window.Fides?.initialized&&window.Fides.cookie&&it(window.Fides.cookie.consent,e)},rr=e=>{let t,i;const n=()=>{clearTimeout(t),clearTimeout(i)},o=()=>{if(window.Shopify){if(n(),window.Shopify.customerPrivacy){Mi(e);return}window.Shopify.loadFeatures([{name:"consent-tracking-api",version:"0.1"}],r=>{if(r)throw Error("Fides could not load Shopify's consent-tracking-api");Mi(e)});return}i=setTimeout(o,200)};t=setTimeout(()=>{throw n(),Error("Fides.shopify was called but Shopify is not present in the page after 3 seconds.")},3e3),o()};var ar={"static.gpc":"\u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629","static.gpc.description":"\u062A\u0645 \u062A\u0637\u0628\u064A\u0642 \u062A\u0641\u0636\u064A\u0644\u0643 \u0644\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629. \u0644\u0642\u062F \u0623\u0644\u063A\u064A \u0627\u0634\u062A\u0631\u0627\u0643\u0643 \u062A\u0644\u0642\u0627\u0626\u064A\u064B\u0627 \u0641\u064A \u062D\u0627\u0644\u0627\u062A \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u062A\u064A \u062A\u0644\u062A\u0632\u0645 \u0628\u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629.","static.gpc.status.applied":"\u062A\u0645 \u0627\u0644\u062A\u0637\u0628\u064A\u0642","static.gpc.status.overridden":"\u062A\u0645 \u0627\u0644\u062A\u062C\u0627\u0648\u0632","static.gpc.title":"\u062A\u0645 \u0627\u0643\u062A\u0634\u0627\u0641 \u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629","static.other.cookies":"\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637","static.other.back":"\u0631\u062C\u0648\u0639","static.other.vendors":"\u0627\u0644\u0645\u0648\u0631\u062F\u0648\u0646","static.other.retention":"\u0627\u0644\u062D\u0641\u0638","static.other.description":"\u0648\u0635\u0641"},sr={"static.gpc":"\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438","static.gpc.description":"\u0412\u0430\u0448\u0435\u0442\u043E \u043F\u0440\u0435\u0434\u043F\u043E\u0447\u0438\u0442\u0430\u043D\u0438\u0435 \u0437\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438 \u0435 \u0437\u0430\u0447\u0435\u0442\u0435\u043D\u043E. \u0412\u0438\u0435 \u0441\u0442\u0435 \u0431\u0438\u043B\u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0438\u0437\u043A\u043B\u044E\u0447\u0435\u043D\u0438 \u043E\u0442 \u0441\u043B\u0443\u0447\u0430\u0438\u0442\u0435 \u043D\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0435 \u043D\u0430 \u0434\u0430\u043D\u043D\u0438, \u043A\u043E\u0438\u0442\u043E \u0441\u0435 \u043E\u0442\u043D\u0430\u0441\u044F\u0442 \u043A\u044A\u043C \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438.","static.gpc.status.applied":"\u041F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u043E","static.gpc.status.overridden":"\u041F\u0440\u0435\u043C\u0430\u0445\u043D\u0430\u0442\u043E","static.gpc.title":"\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0435\u043D \u0435 \u0433\u043B\u043E\u0431\u0430\u043B\u0435\u043D \u043A\u043E\u043D\u0442\u0440\u043E\u043B \u043D\u0430 \u043F\u043E\u0432\u0435\u0440\u0438\u0442\u0435\u043B\u043D\u043E\u0441\u0442\u0442\u0430","static.other.cookies":"\u0411\u0438\u0441\u043A\u0432\u0438\u0442\u043A\u0438","static.other.back":"\u041D\u0430\u0437\u0430\u0434","static.other.vendors":"\u0414\u043E\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438","static.other.retention":"\u0421\u044A\u0445\u0440\u0430\u043D\u0435\u043D\u0438\u0435","static.other.description":"\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435"},cr={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Va\u0161 izbor globalne kontrole privatnosti je uva\u017Een. Automatski ste isklju\u010Deni iz slu\u010Dajeva kori\u0161tenja podataka koji se pridr\u017Eavaju globalne kontrole privatnosti.","static.gpc.status.applied":"Prihva\u0107ena","static.gpc.status.overridden":"Odbijena","static.gpc.title":"Globalna kontrola privatnosti je otkrivena","static.other.cookies":"Kola\u010Di\u0107i","static.other.back":"Nazad","static.other.vendors":"Dobavlja\u010Di","static.other.retention":"Zadr\u017Eavanje","static.other.description":"Opis"},lr={"static.gpc":"Control de privadesa global","static.gpc.description":"S\u2019ha respectat la vostra prefer\xE8ncia pel que fa al control de privadesa global. Se us ha excl\xF2s autom\xE0ticament dels casos d\u2019\xFAs de dades que s\u2019adhereixen al control de privadesa global.","static.gpc.status.applied":"Aplicat","static.gpc.status.overridden":"Anul\xB7lat","static.gpc.title":"S'ha detectat un control de privadesa global","static.other.cookies":"Galetes","static.other.back":"Enrere","static.other.vendors":"Prove\xEFdors","static.other.retention":"Retenci\xF3","static.other.description":"Descripci\xF3"},dr={"static.gpc":"Glob\xE1ln\xED kontrola ochrany osobn\xEDch \xFAdaj\u016F","static.gpc.description":"Byly dodr\u017Eeny va\u0161e glob\xE1ln\xED preference ochrany osobn\xEDch \xFAdaj\u016F. Automaticky jste byli vy\u0159azeni z pou\u017E\xEDv\xE1n\xED \xFAdaj\u016F v p\u0159\xEDpadech, na kter\xE9 se vztahuje glob\xE1ln\xED ochrana osobn\xEDch \xFAdaj\u016F.","static.gpc.status.applied":"Aplikov\xE1no","static.gpc.status.overridden":"P\u0159eps\xE1no","static.gpc.title":"Byla zji\u0161t\u011Bna glob\xE1ln\xED kontrola soukrom\xED","static.other.cookies":"Soubory cookie","static.other.back":"Zp\u011Bt","static.other.vendors":"Dodavatel\xE9","static.other.retention":"Ulo\u017Een\xED","static.other.description":"Popis"},fr={"static.gpc":"Global fortrolighedskontrol","static.gpc.description":"Din pr\xE6ference i forbindelse med global fortrolighedskontrol er blevet efterkommet. Du er automatisk blevet frameldt tilf\xE6lde af databrug, der overholder global fortrolighedskontrol.","static.gpc.status.applied":"Anvendt","static.gpc.status.overridden":"Tilsidesat","static.gpc.title":"Global privatlivskontrol registreret","static.other.cookies":"Cookies","static.other.back":"Tilbage","static.other.vendors":"Forhandlere","static.other.retention":"Opbevaring","static.other.description":"Beskrivelse"},ur={"static.gpc":"Globale Datenschutzeinstellungen","static.gpc.description":"Ihre globale Datenschutzeinstellungen werden ber\xFCcksichtigt. Sie wurden automatisch von Anwendungsf\xE4llen ausgenommen, die nicht Ihren globalen Datenschutzeinstellungen unterliegen.","static.gpc.status.applied":"Angewendet","static.gpc.status.overridden":"\xDCberschrieben","static.gpc.title":"Globale Datenschutzkontrolle erkannt","static.other.cookies":"Cookies","static.other.back":"Zur\xFCck","static.other.vendors":"Anbieter","static.other.retention":"Aufbewahrungsdauer","static.other.description":"Beschreibung"},pr={"static.gpc":"\u039A\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5","static.gpc.description":"\u0397 \u03C0\u03C1\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03AE \u03C3\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5 \u03AD\u03C7\u03B5\u03B9 \u03C4\u03B7\u03C1\u03B7\u03B8\u03B5\u03AF. \u0388\u03C7\u03B5\u03C4\u03B5 \u03B5\u03BE\u03B1\u03B9\u03C1\u03B5\u03B8\u03B5\u03AF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03B1\u03C0\u03CC \u03C0\u03B5\u03C1\u03B9\u03C0\u03C4\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C3\u03C5\u03BC\u03BC\u03BF\u03C1\u03C6\u03CE\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03BF\u03BD \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5.","static.gpc.status.applied":"\u0395\u03C6\u03B1\u03C1\u03BC\u03CC\u03C3\u03C4\u03B7\u03BA\u03B5","static.gpc.status.overridden":"\u03A0\u03B1\u03C1\u03B1\u03BA\u03AC\u03BC\u03C6\u03B8\u03B7\u03BA\u03B5","static.gpc.title":"\u0395\u03BD\u03C4\u03BF\u03C0\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BF \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5","static.other.cookies":"Cookies","static.other.back":"\u03A0\u03AF\u03C3\u03C9","static.other.vendors":"\u03A0\u03C1\u03BF\u03BC\u03B7\u03B8\u03B5\u03C5\u03C4\u03AD\u03C2","static.other.retention":"\u0394\u03B9\u03B1\u03C4\u03AE\u03C1\u03B7\u03C3\u03B7","static.other.description":"\u03A0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE"},gr={"static.gpc":"Global Privacy Control","static.gpc.description":"Your global privacy control preference has been honored. You have been automatically opted out of data use cases which adhere to global privacy control.","static.gpc.status.applied":"Applied","static.gpc.status.overridden":"Overridden","static.gpc.title":"Global Privacy Control detected","static.other.cookies":"Cookies","static.other.back":"Back","static.other.vendors":"Vendors","static.other.retention":"Retention","static.other.description":"Description"},vr={"static.gpc":"Control de privacidad global","static.gpc.description":"Su preferencia de control de privacidad global se ha respetado. Se le ha excluido autom\xE1ticamente de los casos de uso de datos que se adhieren al control de privacidad global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidad global detectado","static.other.cookies":"Cookies","static.other.back":"Atr\xE1s","static.other.vendors":"Proveedores","static.other.retention":"Conservaci\xF3n","static.other.description":"Descripci\xF3n"},_r={"static.gpc":"Control de privacidad global","static.gpc.description":"Su preferencia de control de privacidad global se ha respetado. Se le excluy\xF3 autom\xE1ticamente de los casos de uso de datos que se adhieren al control de privacidad global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidad global detectado","static.other.cookies":"Cookies","static.other.back":"Atr\xE1s","static.other.vendors":"Proveedores","static.other.retention":"Retenci\xF3n","static.other.description":"Descripci\xF3n"},hr={"static.gpc":"\xDCldine andmekaitsekontroll","static.gpc.description":"Teie \xFCldist andmekaitse-eelistust on arvestatud. Teid on automaatselt v\xE4lja arvatud andmete kasutamise juhtudest, mis j\xE4rgivad \xFCldist andmekaitsekontrolli.","static.gpc.status.applied":"Rakendatud","static.gpc.status.overridden":"T\xFChistatud","static.gpc.title":"Tuvastati globaalne privaatsuskontroll","static.other.cookies":"K\xFCpsised","static.other.back":"Tagasi","static.other.vendors":"Kaupmehed","static.other.retention":"S\xE4ilitamine","static.other.description":"Kirjeldus"},br={"static.gpc":"Pribatutasun-kontrol globala","static.gpc.description":"Pribatutasun-kontrol globalaren lehentasuna bete da. Pribatutasun-kontrol globalari atxikitzen zaizkion datuen erabileren kasuetatik automatikoki baztertua izan zara.","static.gpc.status.applied":"Ezarrita","static.gpc.status.overridden":"Baliogabetuta","static.gpc.title":"Pribatutasun-kontrol globala atzeman da","static.other.cookies":"Cookieak","static.other.back":"Atzera","static.other.vendors":"Hornitzaileak","static.other.retention":"Atxikipena","static.other.description":"Deskripzioa"},yr={"static.gpc":"Maailmanlaajunen tietosuojavalvonta","static.gpc.description":"Maailmanlaajuinen tietosuojavalvontanne on vahvistettu. Teid\xE4t on automaattisesti poistettu tietojen k\xE4ytt\xF6tapauksista, jotka noudattavat maailmanlaajuista tietosuojavalvontaa.","static.gpc.status.applied":"K\xE4yt\xF6ss\xE4","static.gpc.status.overridden":"Ohitettu","static.gpc.title":"Yleinen tietosuoja-asetus havaittu","static.other.cookies":"Ev\xE4steet","static.other.back":"Takaisin","static.other.vendors":"Toimittajat","static.other.retention":"S\xE4ilytt\xE4minen","static.other.description":"Kuvaus"},mr={"static.gpc":"Global Privacy Control","static.gpc.description":"Votre pr\xE9f\xE9rence en mati\xE8re de contr\xF4le global de la confidentialit\xE9 (GPC) a \xE9t\xE9 respect\xE9e. Vous avez automatiquement \xE9t\xE9 retir\xE9 des cas d\u2019usage des donn\xE9es qui adh\xE8rent au GPC.","static.gpc.status.applied":"Appliqu\xE9","static.gpc.status.overridden":"Ignor\xE9","static.gpc.title":"Contr\xF4le global de la confidentialit\xE9 d\xE9tect\xE9","static.other.cookies":"Cookies","static.other.back":"Retour","static.other.vendors":"Fournisseurs","static.other.retention":"R\xE9tention","static.other.description":"Description"},kr={"static.gpc":"Contr\xF4le mondial de confidentialit\xE9","static.gpc.description":"Votre pr\xE9f\xE9rence en mati\xE8re de contr\xF4le mondial de confidentialit\xE9 a \xE9t\xE9 honor\xE9e. Vous avez \xE9t\xE9 automatiquement \xE9cart\xE9 des cas d'utilisation de donn\xE9es qui adh\xE8rent au contr\xF4le mondial de confidentialit\xE9.","static.gpc.status.applied":"Appliqu\xE9","static.gpc.status.overridden":"Annul\xE9","static.gpc.title":"Contr\xF4le de la confidentialit\xE9 global d\xE9tect\xE9","static.other.cookies":"T\xE9moins","static.other.back":"Retour","static.other.vendors":"Fournisseurs","static.other.retention":"R\xE9tention","static.other.description":"Description"},wr={"static.gpc":"Control de privacidade global","static.gpc.description":"Respetouse a s\xFAa preferencia de control de privacidade global. Foi automaticamente exclu\xEDdo dos casos de uso de datos que cumpren o control de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Detectouse un control de privacidade global","static.other.cookies":"Cookies","static.other.back":"Atr\xE1s","static.other.vendors":"Provedores","static.other.retention":"Retenci\xF3n","static.other.description":"Descrici\xF3n"},Er={"static.gpc":"\u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923","static.gpc.description":"\u0906\u092A\u0915\u0940 \u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0935\u0930\u0940\u092F\u0924\u093E\u0913\u0902 \u0915\u093E \u0938\u092E\u094D\u092E\u093E\u0928 \u0915\u093F\u092F\u093E \u0917\u092F\u093E\u0964 \u0906\u092A\u0915\u094B \u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0915\u093E \u092A\u093E\u0932\u0928 \u0915\u0930\u0928\u0947 \u0935\u093E\u0932\u0947 \u0921\u0947\u091F\u093E \u0909\u092A\u092F\u094B\u0917 \u092E\u093E\u092E\u0932\u094B\u0902 \u0938\u0947 \u0938\u094D\u0935\u091A\u093E\u0932\u093F\u0924 \u0930\u0942\u092A \u0938\u0947 \u092C\u093E\u0939\u0930 \u0915\u0930 \u0926\u093F\u092F\u093E \u0917\u092F\u093E \u0939\u0948\u0964","static.gpc.status.applied":"\u0932\u093E\u0917\u0942 \u0915\u093F\u092F\u093E","static.gpc.status.overridden":"\u0913\u0935\u0930\u0930\u093E\u0907\u0921 \u0915\u093F\u092F\u093E","static.gpc.title":"\u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0915\u093E \u092A\u0924\u093E \u091A\u0932\u093E","static.other.cookies":"\u0915\u0941\u0915\u0940\u091C\u093C","static.other.back":"\u0935\u093E\u092A\u0938","static.other.vendors":"\u0935\u0947\u0902\u0921\u0930\u094D\u0938","static.other.retention":"\u0930\u093F\u091F\u0947\u0902\u0936\u0928","static.other.description":"\u0935\u093F\u0935\u0930\u0923"},Cr={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Po\u0161tuju se va\u0161e preferencije globalne kontrole privatnosti. Automatski se isklju\u010Deni iz slu\u010Dajeve kori\u0161tenja podataka koji se pridr\u017Eavaju globalne kontrole privatnosti.","static.gpc.status.applied":"Primijenjeno","static.gpc.status.overridden":"Premo\u0161\u0107eno","static.gpc.title":"Otkrivena je globalna kontrola privatnosti","static.other.cookies":"Kola\u010Di\u0107i","static.other.back":"Natrag","static.other.vendors":"Uslu\u017Ene tvrtke","static.other.retention":"Zadr\u017Eavanje","static.other.description":"Opis"},xr={"static.gpc":"Glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1s","static.gpc.description":"A glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1ssal kapcsolatos be\xE1ll\xEDt\xE1sai el lettek fogadva. Automatikusan kiker\xFClt azokb\xF3l az adatfelhaszn\xE1l\xE1si esetekb\u0151l, amelyek a glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1shoz tartoznak.","static.gpc.status.applied":"Alkalmazva","static.gpc.status.overridden":"Fel\xFCl\xEDrva","static.gpc.title":"Glob\xE1lis adatv\xE9delmi ellen\u0151rz\xE9s \xE9szlelve","static.other.cookies":"S\xFCtik","static.other.back":"Vissza","static.other.vendors":"\xC9rt\xE9kes\xEDt\u0151k","static.other.retention":"Meg\u0151rz\xE9s","static.other.description":"Le\xEDr\xE1s"},Ar={"static.gpc":"Controllo Globale della Privacy","static.gpc.description":"Le tue preferenze del Controllo Globale della Privacy sono state prese in carico. Sei stato automaticamente escluso dai casi di utilizzo dei dati che corrispondono al Controllo Globale della Privacy.","static.gpc.status.applied":"Applicato","static.gpc.status.overridden":"Non applicato","static.gpc.title":"Rilevato il controllo della privacy globale","static.other.cookies":"Cookie","static.other.back":"Indietro","static.other.vendors":"Fornitori","static.other.retention":"Conservazione","static.other.description":"Descrizione"},Tr={"static.gpc":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB","static.gpc.description":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306E\u8A2D\u5B9A\u306F\u5C0A\u91CD\u3055\u308C\u307E\u3059\u3002\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306B\u5F93\u3046\u30C7\u30FC\u30BF\u306E\u30E6\u30FC\u30B9\u30B1\u30FC\u30B9\u304B\u3089\u306F\u81EA\u52D5\u7684\u306B\u30AA\u30D7\u30C8\u30A2\u30A6\u30C8\u3055\u308C\u3066\u3044\u307E\u3059\u3002","static.gpc.status.applied":"\u9069\u7528","static.gpc.status.overridden":"\u5909\u66F4","static.gpc.title":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u7BA1\u7406\u3092\u691C\u51FA\u3057\u307E\u3057\u305F","static.other.cookies":"\u30AF\u30C3\u30AD\u30FC","static.other.back":"\u623B\u308B","static.other.vendors":"\u30D9\u30F3\u30C0\u30FC","static.other.retention":"\u4FDD\u6301\u671F\u9593","static.other.description":"\u8AAC\u660E"},Nr={"static.gpc":"Visuotin\u0117 privatumo kontrol\u0117","static.gpc.description":"Buvo atsi\u017Evelgta \u012F j\u016Bs\u0173 visuotin\u0117s privatumo kontrol\u0117s pageidavim\u0105. Buvote automati\u0161kai at\u0161auktas i\u0161 duomen\u0173 naudojimo atvej\u0173, kai laikomasi visuotin\u0117s privatumo kontrol\u0117s.","static.gpc.status.applied":"Taikoma","static.gpc.status.overridden":"Nebegaliojantis","static.gpc.title":"Aptiktas visuotinis privatumo valdymas","static.other.cookies":"Slapukai","static.other.back":"Atgal","static.other.vendors":"Pardav\u0117jai","static.other.retention":"Saugojimas","static.other.description":"Apra\u0161ymas"},Or={"static.gpc":"Glob\u0101l\u0101 priv\u0101tuma kontrole","static.gpc.description":"M\u0113s esam izpild\u012Bju\u0161i j\u016Bsu pras\u012Bbu kontrol\u0113t glob\u0101lo priv\u0101tumu. P\u0113c noklus\u0113juma esat no\u0146emts no datu lietojuma pieteikumiem, kas atbilst glob\u0101lajai priv\u0101tuma kontrolei.","static.gpc.status.applied":"Pielietots","static.gpc.status.overridden":"Ignor\u0113ts","static.gpc.title":"Konstat\u0113ta glob\u0101l\u0101 priv\u0101tuma kontrole","static.other.cookies":"S\u012Bkdatnes","static.other.back":"Atpaka\u013C","static.other.vendors":"Pre\u010Du p\u0101rdev\u0113ji/pakalpojumu sniedz\u0113ji","static.other.retention":"Ietur\u0113\u0161ana","static.other.description":"Apraksts"},Sr={"static.gpc":"Kontroll Globali tal-Privatezza","static.gpc.description":"Il-preferenza globali tieg\u0127ek g\u0127all-kontroll tal-privatezza \u0121iet onorata. Inti awtomatikament g\u0127a\u017Cilt li ma tibqax tu\u017Ca d-dejta f'ka\u017Cijiet li jirrispettaw il-kontroll globali tal-privatezza.","static.gpc.status.applied":"Applikat","static.gpc.status.overridden":"Maqbu\u017Ca","static.gpc.title":"Kontroll Globali tal-Privatezza misjub","static.other.cookies":"Cookies","static.other.back":"Lura","static.other.vendors":"Bejjieg\u0127a","static.other.retention":"Ritenzjoni","static.other.description":"Deskrizzjoni"},Lr={"static.gpc":"Global Privacy Control","static.gpc.description":"Uw Global Privacy Control-voorkeur wordt gerespecteerd. U bent automatisch afgemeld voor gegevensgebruiksscenario's die zich houden aan Global Privacy Control.","static.gpc.status.applied":"Toegepast","static.gpc.status.overridden":"Genegeerd","static.gpc.title":"Globale privacyinstelling gedetecteerd","static.other.cookies":"Cookies","static.other.back":"Terug","static.other.vendors":"Leveranciers","static.other.retention":"Bewaartermijn","static.other.description":"Beschrijving"},Pr={"static.gpc":"Globale personverninnstillinger","static.gpc.description":"Preferansene dine vedr\xF8rende de globale personverninnstilingene dine er godtatt. Du har automatisk takket nei til databruksaker som f\xF8lger globale personverninnstillinger.","static.gpc.status.applied":"Anvendt","static.gpc.status.overridden":"Overstyrt","static.gpc.title":"Global personvernkontroll oppdaget","static.other.cookies":"Informasjonskapsler","static.other.back":"Tilbake","static.other.vendors":"Leverand\xF8rer","static.other.retention":"Oppbevaring","static.other.description":"Beskrivelse"},Ir={"static.gpc":"Og\xF3lna kontrola prywatno\u015Bci","static.gpc.description":"Twoja preferencja dotycz\u0105ca og\xF3lnej kontroli prywatno\u015Bci zosta\u0142a uwzgl\u0119dniona. Automatycznie odm\xF3wiono zgody na Twoje przypadki wykorzystania danych, kt\xF3re s\u0105 zgodne z Og\xF3ln\u0105 kontrol\u0105 prywatno\u015Bci.","static.gpc.status.applied":"Zastosowano","static.gpc.status.overridden":"Nadpisano","static.gpc.title":"Wykryto globaln\u0105 kontrol\u0119 prywatno\u015Bci","static.other.cookies":"Pliki cookie","static.other.back":"Wstecz","static.other.vendors":"Dostawcy","static.other.retention":"Przechowywanie","static.other.description":"Opis"},Fr={"static.gpc":"Controle de Privacidade Global","static.gpc.description":"Sua prefer\xEAncia global de controle de privacidade foi respeitada. Voc\xEA foi automaticamente removido dos casos de uso de dados que aderem ao controle de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Controle de Privacidade Global detectado","static.other.cookies":"Cookies","static.other.back":"Voltar","static.other.vendors":"Fornecedores","static.other.retention":"Reten\xE7\xE3o","static.other.description":"Descri\xE7\xE3o"},Dr={"static.gpc":"Controlo de Privacidade Global","static.gpc.description":"A sua prefer\xEAncia de controlo de privacidade global foi honrada. Foi automaticamente exclu\xEDdo/a dos casos de utiliza\xE7\xE3o de dados que aderem ao controlo de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Controlo de Privacidade Global detetado","static.other.cookies":"Cookies","static.other.back":"Voltar","static.other.vendors":"Fornecedores","static.other.retention":"Reten\xE7\xE3o","static.other.description":"Descri\xE7\xE3o"},Rr={"static.gpc":"Control global al confiden\u021Bialit\u0103\u021Bii","static.gpc.description":"Preferin\u021Ba dvs. de control global al confiden\u021Bialit\u0103\u021Bii a fost onorat\u0103. A\u021Bi fost exclus(\u0103) automat de la cazurile de utilizare a datelor care respect\u0103 controlul global al confiden\u021Bialit\u0103\u021Bii.","static.gpc.status.applied":"Aplicat","static.gpc.status.overridden":"Suprascris","static.gpc.title":"S-a detectat controlul global al confiden\u021Bialit\u0103\u021Bii","static.other.cookies":"Cookie-uri","static.other.back":"\xCEnapoi","static.other.vendors":"Furnizori","static.other.retention":"P\u0103strare","static.other.description":"Descriere"},zr={"static.gpc":"Global Privacy Control","static.gpc.description":"\u0412\u0430\u0448\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 Global Privacy Control \u0443\u0447\u0442\u0435\u043D\u0430. \u0412\u044B \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u0438\u0441\u043A\u043B\u044E\u0447\u0430\u0435\u0442\u0435\u0441\u044C \u0432 \u0441\u0446\u0435\u043D\u0430\u0440\u0438\u044F\u0445, \u0433\u0434\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F Global Privacy Control.","static.gpc.status.applied":"\u041F\u0440\u0438\u043C\u0435\u043D\u0435\u043D\u043E","static.gpc.status.overridden":"\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u043E","static.gpc.title":"\u041E\u0431\u043D\u0430\u0440\u0443\u0436\u0435\u043D\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0430\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044F \u043A\u043E\u043D\u0444\u0438\u0434\u0435\u043D\u0446\u0438\u0430\u043B\u044C\u043D\u043E\u0441\u0442\u0438","static.other.cookies":"\u0424\u0430\u0439\u043B\u044B cookie","static.other.back":"\u041D\u0430\u0437\u0430\u0434","static.other.vendors":"\u041F\u043E\u0441\u0442\u0430\u0432\u0449\u0438\u043A\u0438 \u0443\u0441\u043B\u0443\u0433","static.other.retention":"\u0425\u0440\u0430\u043D\u0435\u043D\u0438\u0435","static.other.description":"\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435"},jr={"static.gpc":"Glob\xE1lna kontrola s\xFAkromia","static.gpc.description":"Va\u0161a predvo\u013Eba pre glob\xE1lnu kontrolu s\xFAkromia bola dodr\u017Ean\xE1. Pre pr\xEDpady pou\u017Eitia, kde sa pou\u017E\xEDva glob\xE1lna kontrola s\xFAkromia, v\xE1m bol automaticky nastaven\xFD explicitn\xFD nes\xFAhlas.","static.gpc.status.applied":"Pou\u017Eit\xE1","static.gpc.status.overridden":"Prep\xEDsan\xE1","static.gpc.title":"Zistila sa glob\xE1lna kontrola ochrany osobn\xFDch \xFAdajov","static.other.cookies":"S\xFAbory cookie","static.other.back":"Sp\xE4\u0165","static.other.vendors":"Dod\xE1vatelia","static.other.retention":"Uchov\xE1vanie","static.other.description":"Popis"},Mr={"static.gpc":"Global Privacy Control","static.gpc.description":"Va\u0161a nastavitev globalnega nadzora zasebnosti je bila upo\u0161tevana. Samodejno je bilo preklicano va\u0161e soglasje za tiste primere uporabe podatkov, ki se ravnajo po globalnem nadzoru zasebnosti.","static.gpc.status.applied":"Uporabljeno","static.gpc.status.overridden":"Pregla\u0161eno","static.gpc.title":"Zaznan je globalni nadzor nad zasebnostjo","static.other.cookies":"Pi\u0161kotki","static.other.back":"Nazaj","static.other.vendors":"Partnerji","static.other.retention":"Hramba","static.other.description":"Opis"},Ur={"static.gpc":"Global Privacy Control","static.gpc.description":"\u0412\u0430\u0448\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0435 \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438 \u0458\u0435 \u043F\u043E\u0434\u0435\u0448\u0435\u043D\u0430. \u0410\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u0441\u0442\u0435 \u0438\u0441\u043A\u0459\u0443\u0447\u0435\u043D\u0438 \u0438\u0437 \u0441\u043B\u0443\u0447\u0430\u0458\u0435\u0432\u0430 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0435 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 \u043A\u043E\u0458\u0438 \u0441\u0443 \u0443 \u0441\u043A\u043B\u0430\u0434\u0443 \u0441\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E\u043C \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043E\u043C \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438.","static.gpc.status.applied":"\u041F\u0440\u0438\u043C\u0435\u045A\u0435\u043D\u0430","static.gpc.status.overridden":"\u0417\u0430\u043C\u0435\u045A\u0435\u043D\u0430","static.gpc.title":"\u041E\u0442\u043A\u0440\u0438\u0432\u0435\u043D\u0430 \u0458\u0435 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0430 \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438","static.other.cookies":"\u041A\u043E\u043B\u0430\u0447\u0438\u045B\u0438","static.other.back":"\u041D\u0430\u0437\u0430\u0434","static.other.vendors":"\u0414\u043E\u0431\u0430\u0432\u0459\u0430\u0447\u0438","static.other.retention":"\u0417\u0430\u0434\u0440\u0436\u0430\u0432\u0430\u045A\u0435","static.other.description":"\u041E\u043F\u0438\u0441"},$r={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Va\u0161a globalna postavka kontrole privatnosti se po\u0161tuje. Automatski ste isklju\u010Deni iz slu\u010Dajeva kori\u0161c\u0301enja podataka koji podle\u017Eu globalnoj kontroli privatnosti.","static.gpc.status.applied":"Primenjeno","static.gpc.status.overridden":"Zaobi\u0111eno","static.gpc.title":"Otkrivena je globalna kontrola privatnosti","static.other.cookies":"Kola\u010Di\u0107i","static.other.back":"Nazad","static.other.vendors":"Dobavlja\u010Di","static.other.retention":"Zadr\u017Eavanje","static.other.description":"Opis"},Br={"static.gpc":"Global integritetskontroll","static.gpc.description":"Dina preferenser f\xF6r global integritetskontroll har efterf\xF6ljts. Du har automatiskt valt bort anv\xE4ndningsfall f\xF6r uppgifter som efterf\xF6ljer global integritetskontroll.","static.gpc.status.applied":"Till\xE4mpad","static.gpc.status.overridden":"\xC5sidosatt","static.gpc.title":"Global sekretesskontroll uppt\xE4cktes","static.other.cookies":"Cookies","static.other.back":"Tillbaka","static.other.vendors":"Leverant\xF6rer","static.other.retention":"Lagring","static.other.description":"Beskrivning"},Gr={"static.gpc":"Global Gizlilik Kontrol\xFC","static.gpc.description":"Global gizlilik kontrol\xFC tercihiniz yerine getirildi. Global gizlilik kontrol\xFCne uygun veri kullan\u0131m durumlar\u0131ndan otomatik olarak \xE7\u0131kar\u0131ld\u0131n\u0131z.","static.gpc.status.applied":"Uyguland\u0131","static.gpc.status.overridden":"Ge\xE7ersiz k\u0131l\u0131nd\u0131","static.gpc.title":"Genel Gizlilik Kontrol\xFC alg\u0131land\u0131","static.other.cookies":"\xC7erezler","static.other.back":"Geri","static.other.vendors":"Sat\u0131c\u0131lar","static.other.retention":"Tutma","static.other.description":"A\xE7\u0131klama"},Vr={"static.gpc":"\u0413\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456","static.gpc.description":"\u0412\u0430\u0448\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456 \u0432\u0440\u0430\u0445\u043E\u0432\u0430\u043D\u043E. \u0412\u0430\u0441 \u0431\u0443\u043B\u043E \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0432\u0438\u043A\u043B\u044E\u0447\u0435\u043D\u043E \u0437 \u0432\u0438\u043F\u0430\u0434\u043A\u0456\u0432 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u0445, \u044F\u043A\u0456 \u0434\u043E\u0442\u0440\u0438\u043C\u0443\u044E\u0442\u044C\u0441\u044F \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u044C \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456.","static.gpc.status.applied":"\u0417\u0430\u0441\u0442\u043E\u0441\u043E\u0432\u0430\u043D\u043E","static.gpc.status.overridden":"\u041F\u0435\u0440\u0435\u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u043E","static.gpc.title":"\u0412\u0438\u044F\u0432\u043B\u0435\u043D\u043E \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456","static.other.cookies":"\u0424\u0430\u0439\u043B\u0438 cookie","static.other.back":"\u041D\u0430\u0437\u0430\u0434","static.other.vendors":"\u041F\u043E\u0441\u0442\u0430\u0447\u0430\u043B\u044C\u043D\u0438\u043A\u0438","static.other.retention":"\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u043D\u043D\u044F","static.other.description":"\u041E\u043F\u0438\u0441"},Hr={"static.gpc":"\u5168\u5C40\u9690\u79C1\u63A7\u5236","static.gpc.description":"\u60A8\u7684\u5168\u5C40\u9690\u79C1\u63A7\u5236\u504F\u597D\u5DF2\u5F97\u5230\u5C0A\u91CD\u3002\u60A8\u5DF2\u81EA\u52A8\u9009\u62E9\u9000\u51FA\u7B26\u5408\u5168\u5C40\u9690\u79C1\u63A7\u5236\u7684\u6570\u636E\u4F7F\u7528\u6848\u4F8B\u3002","static.gpc.status.applied":"\u5DF2\u5E94\u7528","static.gpc.status.overridden":"\u88AB\u8986\u76D6","static.gpc.title":"\u68C0\u6D4B\u5230\u5168\u5C40\u9690\u79C1\u63A7\u5236","static.other.cookies":"Cookie","static.other.back":"\u8FD4\u56DE","static.other.vendors":"\u4F9B\u5E94\u5546","static.other.retention":"\u4FDD\u7559\u671F","static.other.description":"\u63CF\u8FF0"},Kr={"static.gpc":"\u5168\u57DF\u96B1\u79C1\u63A7\u5236","static.gpc.description":"\u60A8\u7684\u5168\u57DF\u96B1\u79C1\u63A7\u5236\u504F\u597D\u5DF2\u88AB\u63A5\u53D7\u3002\u6839\u64DA\u60A8\u7684\u9078\u64C7\xB7\uFF0C\u5DF2\u81EA\u52D5\u5C07\u60A8\u9000\u51FA\u7B26\u5408\u5168\u57DF\u96B1\u79C1\u63A7\u5236\u7684\u8CC7\u6599\u4F7F\u7528\u6848\u4F8B\u3002","static.gpc.status.applied":"\u5DF2\u61C9\u7528","static.gpc.status.overridden":"\u5DF2\u8986\u5BEB","static.gpc.title":"\u6AA2\u6E2C\u5230\u5168\u5C40\u96B1\u79C1\u63A7\u5236","static.other.cookies":"Cookie","static.other.back":"\u8FD4\u56DE","static.other.vendors":"\u4F9B\u61C9\u5546","static.other.retention":"\u4FDD\u7559\u671F","static.other.description":"\u63CF\u8FF0"};const St={ar,bg:sr,bs:cr,ca:lr,cs:dr,da:fr,de:ur,el:pr,en:gr,es:vr,"es-MX":_r,et:hr,eu:br,fi:yr,fr:mr,"fr-CA":kr,gl:wr,"hi-IN":Er,hr:Cr,hu:xr,it:Ar,ja:Tr,lt:Nr,lv:Or,mt:Sr,nl:Lr,no:Pr,pl:Ir,"pt-BR":Fr,"pt-PT":Dr,ro:Rr,ru:zr,sk:jr,sl:Mr,"sr-Cyrl":Ur,"sr-Latn":$r,sv:Br,tr:Gr,uk:Vr,zh:Hr,"zh-Hant":Kr},Yr=[{locale:"ar",label_en:"Arabic",label_original:"\u0627\u0644\u0639\u064E\u0631\u064E\u0628\u0650\u064A\u064E\u0651\u0629"},{locale:"bg",label_en:"Bulgarian",label_original:"\u0431\u044A\u043B\u0433\u0430\u0440\u0441\u043A\u0438 \u0435\u0437\u0438\u043A"},{locale:"bs",label_en:"Bosnian",label_original:"Bosanski Jezik"},{locale:"ca",label_en:"Catalan",label_original:"catal\xE0"},{locale:"cs",label_en:"Czech",label_original:"\u010Desk\xFD jazyk"},{locale:"da",label_en:"Danish",label_original:"Dansk"},{locale:"de",label_en:"German",label_original:"Deutsch"},{locale:"el",label_en:"Greek",label_original:"\u03B5\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC"},{locale:"en",label_en:"English",label_original:"English"},{locale:"es",label_en:"Spanish",label_original:"Espa\xF1ol"},{locale:"es-MX",label_en:"Spanish (Mexico)",label_original:"Espa\xF1ol - MX"},{locale:"et",label_en:"Estonian",label_original:"Eesti"},{locale:"eu",label_en:"Basque",label_original:"euskara"},{locale:"fi",label_en:"Finnish",label_original:"Suomi"},{locale:"fr",label_en:"French",label_original:"Fran\xE7ais"},{locale:"fr-CA",label_en:"French (Canada)",label_original:"Fran\xE7ais - CA"},{locale:"gl",label_en:"Galician",label_original:"Galego"},{locale:"hi-IN",label_en:"Hindi (India)",label_original:"\u0939\u093F\u0928\u094D\u0926\u0940"},{locale:"hr",label_en:"Croatian",label_original:"Hrvatski Jezik"},{locale:"hu",label_en:"Hungarian",label_original:"magyar"},{locale:"it",label_en:"Italian",label_original:"Italiano"},{locale:"ja",label_en:"Japanese",label_original:"\u65E5\u672C\u8A9E"},{locale:"lt",label_en:"Lithuanian",label_original:"lietuvi\u0173 kalba"},{locale:"lv",label_en:"Latvian",label_original:"latvie\u0161u valoda"},{locale:"mt",label_en:"Maltese",label_original:"Malti"},{locale:"nl",label_en:"Dutch",label_original:"Nederlands"},{locale:"no",label_en:"Norwegian",label_original:"Norsk"},{locale:"pl",label_en:"Polish",label_original:"Polski"},{locale:"pt-BR",label_en:"Portuguese (Brazil)",label_original:"Portugu\xEAs - BR"},{locale:"pt-PT",label_en:"Portuguese (Portugal)",label_original:"Portugu\xEAs - PT"},{locale:"ro",label_en:"Romanian",label_original:"limba rom\xE2n\u0103"},{locale:"ru",label_en:"Russian",label_original:"\u0440\u0443\u0441\u0441\u043A\u0438\u0439 \u044F\u0437\u044B\u043A"},{locale:"sk",label_en:"Slovak",label_original:"sloven\u010Dina"},{locale:"sl",label_en:"Slovenian",label_original:"Slovenski Jezik"},{locale:"sr-Cyrl",label_en:"Serbian (Cyrillic)",label_original:"\u0441\u0440\u043F\u0441\u043A\u0438"},{locale:"sr-Latn",label_en:"Serbian (Latin)",label_original:"Srpski"},{locale:"sv",label_en:"Swedish",label_original:"Sverige"},{locale:"tr",label_en:"Turkish",label_original:"T\xFCrk\xE7e"},{locale:"uk",label_en:"Ukrainian",label_original:"\u0443\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 \u043C\u043E\u0432\u0430"},{locale:"zh",label_en:"Chinese (Simplified)",label_original:"\u7B80\u4F53\u4E2D\u6587"},{locale:"zh-Hant",label_en:"Chinese (Traditional)",label_original:"\u7E41\u9AD4\u4E2D\u6587"}];function ee(e,t){return e.toLowerCase().replaceAll("_","-")===t.toLowerCase().replaceAll("_","-")}function Wr(e,t){const i={},n=["accept_button_label","acknowledge_button_label","banner_description","banner_title","description","purpose_header","privacy_policy_link_label","privacy_policy_url","privacy_preferences_link_label","reject_button_label","save_button_label","title","modal_link_label"];if(e.translations)e.translations.forEach(o=>{const r=o.language;let a=!1;t?.override_language&&(a=ee(t.override_language,r));const s={};n.forEach(c=>{let d=null;t&&(a||c==="privacy_policy_url")&&(d=c in t?t[c]:null);const _=o[c];typeof _=="string"&&(s[`exp.${c}`]=d||_)}),i[r]={...s,...i[r]}});else{const o=V,r={};n.forEach(a=>{const s=e[a];typeof s=="string"&&(r[`exp.${a}`]=s)}),i[o]={...r,...i[o]}}return i}function Lt(e){if(e?.experience_config?.translations){const{translations:t}=e.experience_config;return t.find(n=>n.is_default)?.language}}function Ui(e,t){const i={};return t.forEach(n=>{const o=Object.keys(e).find(r=>ee(r,n));if(o){const r=e[o],a={};["purposes","specialPurposes","features","specialFeatures","stacks","dataCategories"].forEach(c=>{const d=r[c]||{};Object.keys(d).forEach(f=>{const l=d[f],_=`exp.tcf.${c}.${f}`;a[`${_}.name`]=l.name,a[`${_}.description`]=l.description,l.illustrations&&l.illustrations.length>0&&l.illustrations.forEach((p,g)=>{a[`${_}.illustrations.${g}`]=p})})}),i[n]={...a,...i[n]}}}),i}function $i(e){return Object.keys(St).forEach(t=>{e.load(t,St[t])}),Object.keys(St)}function Bi(e,t,i){const n={},o=t.available_locales?.length?t.available_locales:[V];if(t?.experience_config){const r=t.experience_config,a=Wr(r,i);Object.keys(a).forEach(s=>{n[s]={...a[s],...n[s]}})}o.forEach(r=>{e.load(r,n[r])})}function Gi(e,t){if(!t.gvl)return;const{locale:i}=e,n={};n[i]=t.gvl;const o=Ui(n,[i]);e.load(i,o[i])}function Vi(e,t,i){const n=Ui(t,i);i.forEach(o=>{e.load(o,n[o])})}function Hi(e){return e.locale}function Ki(e,t,i=V){const n=e?.language;return t||n||i}function Yi(e,t,i=V){const n=e.match(Xe);if(n){const[o,r]=n,a=t.find(c=>ee(c,o));if(a)return a;const s=t.find(c=>ee(c,r));if(s)return s}return i}function ve(e,t){return e.t(t)!==""&&e.t(t)!==t}function Pt(e,t,i){if(!i||!i.translations)return null;if(e){const o=i.translations.find(r=>ee(r.language,e));if(o)return o}const n=i.translations.find(o=>ee(o.language,t));return n||i.translations[0]||null}function nt(e,t,i){if(!i||!i.translations)return null;if(e){const o=i.translations.find(r=>ee(r.language,e));if(o)return o}const n=i.translations.find(o=>ee(o.language,t));return n||i.translations[0]||null}function Wi(e,t,i,n,o){$i(e);const r=i.available_locales?.length?i.available_locales:[V];Bi(e,i,o);const a=Yr.filter(_=>r.includes(_.locale)),s=a.findIndex(_=>ee(_.locale,e.getDefaultLocale()));s>0&&a.unshift(a.splice(s,1)[0]),e.setAvailableLanguages(a);const c=Lt(i)||V;e.setDefaultLocale(c);let d=c;i.experience_config?.auto_detect_language===!1||(d=Ki(t,n?.fidesLocale,c));const f=Yi(d,r||[],e.getDefaultLocale());if(!!i.experience_config?.translations?.find(_=>_.language===f))e.activate(f);else{const _=nt(f,c,i.experience_config);_?.language,e.activate(_?.language||f)}i.experience_config?.component===j.TCF_OVERLAY&&i.gvl&&Gi(e,i)}function It(){let e=[],t=V,i=V;const n={};return{setAvailableLanguages(o){e=o},get availableLanguages(){return e},activate:o=>{i=o},getDefaultLocale:()=>t,setDefaultLocale:o=>{t=o},get locale(){return i},load:(o,r)=>{n[o]={...n[o],...r}},t:o=>{if(typeof o>"u")throw new TypeError("Unexpected type for descriptor or id!");let r;if(typeof o=="string")r=o;else if(typeof o=="object"&&o.id)r=o.id;else return"";return i&&i in n&&r&&r in n[i]&&n[i][r]?n[i][r]:r}}}const qi=(e,t,i)=>{let n=Ze;if(!e)t.t("exp.modal_link_label")!=="exp.modal_link_label"&&(n=t.t("exp.modal_link_label"));else{const o=t.getDefaultLocale(),r=i?.experience_config?.translations.find(a=>a.language===o);r?.modal_link_label&&(n=r.modal_link_label)}return n},qr=It();function Zr(e){return Array.from(e).length}var Zi=(e=>(e.PRIVACY_EXPERIENCE="/privacy-experience",e.PRIVACY_PREFERENCES="/privacy-preferences",e.GVL_TRANSLATIONS="/privacy-experience/gvl/translations",e.NOTICES_SERVED="/notices-served",e))(Zi||{});function Xi(){return{}}const Ji=async({userLocationString:e,userLanguageString:t,fidesApiUrl:i,apiOptions:n,propertyId:o,requestMinimalTCF:r,missingExperienceHandler:a=Xi,excludeNoticeAssetsBySystems:s})=>{if(n?.getPrivacyExperienceFn)try{return await n.getPrivacyExperienceFn(e,null)}catch(p){return a(p)}const c=[["Unescape-Safestr","true"],["Accept-Encoding","gzip, deflate"]];t&&c.push(["Accept-Language",t]);const d={method:"GET",mode:"cors",headers:c};let f;s&&(f=(Array.isArray(s)?[...s]:s.split(",").map(g=>g.trim()).filter(Boolean)).sort((g,h)=>g.localeCompare(h)).join(","));let l={show_disabled:"false",region:e,component:j.OVERLAY,has_config:"true",systems_applicable:"true",exclude_gvl_languages:"true",include_meta:"true",include_gvl:"true",include_non_applicable_notices:"true",...r&&{minimal_tcf:"true"},...o&&{property_id:o},...f&&{exclude_notice_assets_by_systems:f}};l=new URLSearchParams(l);let _;try{if(_=await fetch(`${i}/privacy-experience?${l}`,d),!_.ok)throw new Error("Error fetching experience from Fides API")}catch(p){return a(p)}try{const p=await _.json();if(p.items?.length<1)return{};const g=p.items&&p.items[0],h=g.experience_config?.translations?.[0].language;return g}catch(p){return a(p)}},Qi=async(e,t)=>{const i=new URLSearchParams;t?.forEach(a=>{i.append("language",a)});const n={method:"GET",mode:"cors"};let o;try{o=await fetch(`${e}/privacy-experience/gvl/translations${Zr(i)>0?"?":""}${i.toString()}`,n)}catch{return{}}return o.ok?await o.json():{}},en={method:"PATCH",mode:"cors",headers:{"Content-Type":"application/json"}},tn="Fides.js",nn=async(e,t,i,n,o)=>{if(i.apiOptions?.savePreferencesFn){try{await i.apiOptions.savePreferencesFn(e,n.consent,n.fides_string,o)}catch(s){return Promise.reject(s)}return Promise.resolve()}const r={...en,body:JSON.stringify({...t,source:tn})};return(await fetch(`${i.fidesApiUrl}/privacy-preferences`,r)).ok,Promise.resolve()},on=async({request:e,options:t})=>{if(t.apiOptions?.patchNoticesServedFn)try{return await t.apiOptions.patchNoticesServedFn(e)}catch{return null}const i={...en,body:JSON.stringify(e)};try{const n=await fetch(`${t.fidesApiUrl}/notices-served`,i);return n.ok?await n.json():null}catch{return null}};class Xr{constructor(){this.servedNoticeHistoryId=null}getServedNoticeHistoryId(){return this.servedNoticeHistoryId||(this.servedNoticeHistoryId=ui()),this.servedNoticeHistoryId}reset(){this.servedNoticeHistoryId=null}hasLifecycleId(){return this.servedNoticeHistoryId!==null}}const rn=new Xr,Jr=[S.SCRIPT,S.GPC,S.EXTERNAL_PROVIDER];async function Qr(e,t,i,n,o,r,a,s,c){const d=(r||[]).map(l=>({preference:l.consentPreference,privacy_notice_history_id:l.noticeHistoryId||""})),f={browser_identity:t.identity,preferences:d,privacy_experience_config_history_id:o,user_geography:s,method:n,served_notice_history_id:c,property_id:i.property_id,...a??[]};await nn(n,f,e,t,i)}const ea=async({consentPreferencesToSave:e,privacyExperienceConfigHistoryId:t,experience:i,consentMethod:n,options:o,userLocationString:r,cookie:a,eventExtraDetails:s,servedNoticeHistoryId:c,tcf:d,updateCookie:f})=>{if(!f&&e&&(f=h=>Ci(h,e)),!f&&!e)throw new Error("updateCookie is required");const l={...s?.trigger,origin:s?.trigger?.origin||(Jr.includes(n)?ge.EXTERNAL:ge.FIDES)},_=await f(a);Object.assign(a,_),Object.assign(a.fides_meta,{consentMethod:n}),oe("FidesUpdating",a,{...s,trigger:l});const p=Ie(a.consent,window.Fides?.experience?.non_applicable_privacy_notices,window.Fides?.experience?.privacy_notices,void 0,void 0,a.non_applicable_notice_keys),g=!!window.Fides?.experience?.non_applicable_privacy_notices||!!window.Fides?.experience?.privacy_notices;if(window.Fides.consent=Tt(p,o,g),window.Fides.fides_string=a.fides_string,window.Fides.tcf_consent=a.tcf_consent,mi({...a,consent:p},o),window.Fides.saved_consent=a.consent,!o.fidesDisableSaveApi)try{await Qr(o,a,i,n,t,e,d,r,c)}catch{}e&&e.filter(h=>h.consentPreference===G.OPT_OUT).forEach(h=>{h.notice?.cookies&&wi(h.notice.cookies,i.experience_config?.cookie_deletion_based_on_host_domain,i.experience_config?.auto_subdomain_cookie_deletion)}),oe("FidesUpdated",a,{...s,trigger:l})},an=(e,t,i,n)=>Object.entries(i).reduce((o,[r,a])=>{if(o)return o;const s=t.find(l=>l===r);if(s&&!a&&n!==S.EXTERNAL_PROVIDER)return new Error(`Provided notice key '${r}' is not applicable to the current experience.`);const c=e.find(l=>l.notice_key===r);if(!s&&!c)return new Error(`'${r}' is not a valid notice key`);const f=c?.consent_mechanism===B.NOTICE_ONLY;return f&&a!==!0&&a!==G.ACKNOWLEDGE&&n!==S.EXTERNAL_PROVIDER?new Error(`Invalid consent value for notice-only notice key: '${r}'. Must be \`true\` or "acknowledge"`):!f&&typeof a!="boolean"&&a!==G.OPT_IN&&a!==G.OPT_OUT?new Error(`Invalid consent value for notice key: '${r}'. Must be a boolean or "opt_in" or "opt_out"`):null},null),Ft=async(e,t)=>{const{experience:i,cookie:n,config:o,locale:r}=e;if(!i)throw new Error("Experience must be initialized before updating consent");if(!o)throw new Error("Config is not initialized");if(!n)throw new Error("Cookie is not initialized");if(!t?.noticeConsent&&!t?.fidesString&&!t?.tcf)throw new Error("Either consent object or fidesString must be provided");if(t?.validation&&!Object.values(le).includes(t.validation))throw new Error(`Validation must be one of: ${Object.values(le).join(", ")} (default is ${le.THROW})`);const{noticeConsent:a,fidesString:s,validation:c=le.THROW,consentMethod:d=S.SCRIPT,eventExtraDetails:f={trigger:{origin:ge.EXTERNAL}},tcf:l,updateCookie:_}=t,{experience_config:p,privacy_notices:g,non_applicable_privacy_notices:h}=i,m=Lt(i)||V,y=T=>{if(c===le.THROW)throw new Error(T);c===le.WARN&&console.warn(T)};let b=n.consent||{};if(s)try{const T=Nt(s);if(T.nc){const F=tt(T.nc);b={...n.consent,...F};const D=an(g||[],h||[],b,d);D&&y(D.message)}}catch(T){const F=T instanceof Error?T.message:String(T);y(`Invalid fidesString provided: ${F}`)}else if(a){const T=an(g||[],h||[],a,d);T&&y(T.message),b={...n.consent,...a}}const w=[];Object.entries(b).forEach(([T,F])=>{const D=g?.find(R=>R.notice_key===T);if(D){const H=Pt(r,m,D)?.privacy_notice_history_id;let pe;if(typeof F=="boolean"?pe=Le(F,D.consent_mechanism):pe=F,H){const Me=new ye(D,pe,H);w.push(Me)}}});let C;p?.translations?.length&&(C=nt(r,m,p)?.privacy_experience_config_history_id);const x=Je(o.geolocation),N=rn.getServedNoticeHistoryId();return ea({consentPreferencesToSave:w,privacyExperienceConfigHistoryId:C,experience:i,consentMethod:d,options:o.options,userLocationString:x,cookie:n,eventExtraDetails:f,servedNoticeHistoryId:N,tcf:l,updateCookie:_})},Dt=e=>{throw new Error(e)},ot=e=>{typeof window<"u"&&(window.Fides=e)},sn=({cookie:e,experience:t})=>{let i=t;return wt(e.consent)&&(i=Et({experience:t,cookie:e})),i},cn=({tcfEnabled:e=!1})=>({consent:{},experience:void 0,geolocation:{},locale:V,options:{debug:!0,isOverlayEnabled:!1,isPrefetchEnabled:!1,isGeolocationEnabled:!1,geolocationApiUrl:"",overlayParentId:null,modalLinkId:null,privacyCenterUrl:"",fidesApiUrl:"",tcfEnabled:e,gppEnabled:!1,fidesEmbed:!1,fidesDisableSaveApi:!1,fidesDisableNoticesServedApi:!1,fidesDisableBanner:!1,fidesString:null,apiOptions:null,fidesTcfGdprApplies:e,fidesJsBaseUrl:"",customOptionsPath:null,preventDismissal:!1,allowHTMLDescription:null,base64Cookie:!1,fidesPrimaryColor:null,fidesClearCookie:!1,showFidesBrandLink:!e,fidesConsentOverride:null,otFidesMapping:null,fidesDisabledNotices:null,fidesDisabledSystems:null,fidesConsentNonApplicableFlagMode:null,fidesConsentFlagType:null,fidesInitializedEventMode:"once"},fides_meta:{},identity:{},tcf_consent:{},saved_consent:{},version:"DEV",config:void 0,initialized:!1,onFidesEvent:Fi,aep:Ko,blueconic:Wo,gcm:Qo,gtm:er,meta:ir,shopify:rr,showModal:At,getModalLinkLabel:()=>Ze,encodeNoticeConsentString:Ii,decodeNoticeConsentString:tt,reinitialize(){return typeof this.init!="function"?Promise.reject(new Error("Fides.init method is not available")):((!this.config||!this.initialized)&&Dt("Fides must be initialized before reinitializing"),this.init())},shouldShowExperience(){return!this?.experience||!this?.cookie||!this?.saved_consent||!this?.options?!1:et(this.experience,this.cookie,this.saved_consent,this.options)},updateConsent(t){const{consent:i,fidesString:n,validation:o}=t;return Ft(this,{noticeConsent:i,fidesString:n,validation:o})}}),ln=async(e,t)=>{if(!e||!t)return null;const n=await fetch(t,{mode:"cors"});if(!n.ok)return null;try{return await n.json()}catch{return null}},ta=()=>{if(window.Fides?.options.tcfEnabled&&!window.Fides?.options.gppEnabled&&!window.Fides?.experience?.privacy_notices?.length)return!1;if(window.navigator?.globalPrivacyControl===!0)return window.navigator.globalPrivacyControl;const t=new URL(window.location.href).searchParams.get("globalPrivacyControl");return t==="true"?!0:t==="false"?!1:window.navigator?.globalPrivacyControl},de=()=>typeof window>"u"?{}:{globalPrivacyControl:ta()},ia=async e=>{const{experience:t,saved_consent:i,options:n}=e;if(!t||!t.experience_config||!t.privacy_notices?.length)return!1;const o=de(),{nc:r}=Nt(n.fidesString||"");o.globalPrivacyControl;const{consent:a,method:s}=Ti(n),c=!!a&&!!s&&!we(n.fidesCookieSuffix);if(!o.globalPrivacyControl&&!r&&!c)return!1;let d=!1,f=!1,l=!1;const _=t.privacy_notices.reduce((p,g)=>{const h={...p},m=ne(g.default_preference);h[g.notice_key]=m,i[g.notice_key]&&(h[g.notice_key]=i[g.notice_key]);const y=Ye(g,i),b=g.consent_mechanism===B.NOTICE_ONLY;if(c&&a){const w=a[g.notice_key];if(w!==void 0)return l=!0,h[g.notice_key]=w,h}if(b)return h;if(r){const C=tt(r)[g.notice_key];if(C!==void 0)return f=!0,h[g.notice_key]=C,h}return o.globalPrivacyControl&&!y&&g.has_gpc_flag&&(d=!0,h[g.notice_key]=!1),h},{});if(d||f||l){let p=S.SCRIPT;return l&&s?p=s:f?p=S.SCRIPT:d&&(p=S.GPC),await Ft(e,{noticeConsent:_,consentMethod:p}),!0}return!1},na=()=>{document.body.classList.add("fides-no-scroll")},dn=()=>{document.body.classList.remove("fides-no-scroll")},oa=e=>new DOMParser().parseFromString(e,"text/html").body.textContent||"",fn=e=>{let t=0,i=200;return new Promise(n=>{const o=r=>{const a=setTimeout(()=>{const s=document.getElementById(e);s?(clearInterval(a),n(s)):(t+=1,t>=5&&i<1e3&&(i+=200),o(i))},r)};o(i)})},ra=async(e,t)=>{const i=Je(e);return i||Je(await ln(t.isGeolocationEnabled,t.geolocationApiUrl))},un=(e,t)=>{const i={};if(typeof window<"u"){const n=new URLSearchParams(window.location.search),o=t.options.customOptionsPath&&t.options.customOptionsPath.split("."),r=o&&o.length>=0?Li(o):window.fides_overrides;Oi(e)?.forEach(({overrideName:s,overrideType:c,overrideKey:d,validationRegex:f,transform:l})=>{const _=n.get(d),p=r?r[d]:void 0,g=qe(d),h=_||p||g;h&&f.test(h.toString())&&(l?i[s]=l(h.toString()):i[s]=c==="string"?h:JSON.parse(h.toString()))})}return i},aa=({consent:e,options:t})=>{const i=de(),n=ki(e,i);return yi(n,t)},sa=({cookie:e,savedConsent:t,experience:i,geolocation:n,options:o,updateExperienceFromCookieConsent:r})=>{let a=i;return Ee(i)&&(a=r({experience:i,cookie:e,debug:o.debug})),{consent:e.consent,fides_meta:e.fides_meta,identity:e.identity,experience:a,tcf_consent:e.tcf_consent,fides_string:e.fides_string,saved_consent:t,geolocation:n,options:o,initialized:!0}},ca=async({fides:e,initOverlay:t,renderOverlay:i,updateExperience:n,overrides:o})=>{const{config:r}=e;if(!r)throw new Error("Fides config should be initialized");const{options:a,geolocation:s}=r;let c=!0,d,f=()=>Ze;if(!e.cookie)throw new Error("Fides cookie should be initialized");if(c=a.isOverlayEnabled,c){Ni(a)||(c=!1),d=await ra(s,a);let w=!1;if(d?Ee(e.experience)||(w=!0,e.experience=await Ji({userLocationString:d,fidesApiUrl:a.fidesApiUrl,apiOptions:a.apiOptions,requestMinimalTCF:!1,propertyId:e.config?.propertyId,excludeNoticeAssetsBySystems:a.fidesDisabledSystems||void 0})):c=!1,c&&Ee(e.experience)&&Si(e.experience)){if(w){const N=n({cookie:e.cookie,experience:e.experience});e.experience={...e.experience,...N}}e.config?.propertyId&&(e.experience.property_id=e.config.propertyId);const C=xi({cookie:e.cookie,experience:e.experience});e.cookie=C;const x=It();if(Wi(x,window?.navigator,e.experience,a,o?.experienceTranslationOverrides),e.locale=x.locale||V,f=N=>qi(!!N?.disableLocalization,x,e.experience),e.experience.experience_config?.component===j.HEADLESS){const N=a.modalLinkId||"fides-modal-link";!e.experience||a.fidesEmbed||a.modalLinkId,fn(N).then(T=>{document.body.classList.add("fides-overlay-modal-link-shown"),T.classList.add("fides-modal-link-shown")}),c=!1}if(t&&c){const N={...e,cookie:e.cookie,config:r,options:a,experience:e.experience,fidesRegionString:d};t({initializedFides:N,i18n:x,renderOverlay:i}).catch(T=>{})}setTimeout(ia.bind(null,e))}}const{fides_meta:_,identity:p,fides_string:g,tcf_consent:h}=e.cookie,m=Ie(e.cookie.consent,e.experience?.non_applicable_privacy_notices,e.experience?.privacy_notices,a.fidesConsentFlagType??void 0,a.fidesConsentNonApplicableFlagMode??void 0,e.cookie.non_applicable_notice_keys),y=!!e.experience?.non_applicable_privacy_notices||!!e.experience?.privacy_notices;return{consent:Tt(m,a,y),fides_meta:_,identity:p,fides_string:g,tcf_consent:h,experience:e.experience,geolocation:s,options:a,initialized:!0,getModalLinkLabel:f}};var rt,E,pn,_e,gn,vn,Rt,zt,jt,Mt,_n,Fe={},hn=[],la=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,at=Array.isArray;function fe(e,t){for(var i in t)e[i]=t[i];return e}function bn(e){var t=e.parentNode;t&&t.removeChild(e)}function Ut(e,t,i){var n,o,r,a={};for(r in t)r=="key"?n=t[r]:r=="ref"?o=t[r]:a[r]=t[r];if(arguments.length>2&&(a.children=arguments.length>3?rt.call(arguments,2):i),typeof e=="function"&&e.defaultProps!=null)for(r in e.defaultProps)a[r]===void 0&&(a[r]=e.defaultProps[r]);return st(e,a,n,o,null)}function st(e,t,i,n,o){var r={type:e,props:t,key:i,ref:n,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:o??++pn,__i:-1,__u:0};return o==null&&E.vnode!=null&&E.vnode(r),r}function re(e){return e.children}function ae(e,t){this.props=e,this.context=t}function he(e,t){if(t==null)return e.__?he(e.__,e.__i+1):null;for(var i;t<e.__k.length;t++)if((i=e.__k[t])!=null&&i.__e!=null)return i.__e;return typeof e.type=="function"?he(e):null}function yn(e){var t,i;if((e=e.__)!=null&&e.__c!=null){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if((i=e.__k[t])!=null&&i.__e!=null){e.__e=e.__c.base=i.__e;break}return yn(e)}}function $t(e){(!e.__d&&(e.__d=!0)&&_e.push(e)&&!ct.__r++||gn!==E.debounceRendering)&&((gn=E.debounceRendering)||vn)(ct)}function ct(){var e,t,i,n,o,r,a,s;for(_e.sort(Rt);e=_e.shift();)e.__d&&(t=_e.length,n=void 0,r=(o=(i=e).__v).__e,a=[],s=[],i.__P&&((n=fe({},o)).__v=o.__v+1,E.vnode&&E.vnode(n),Bt(i.__P,n,o,i.__n,i.__P.namespaceURI,32&o.__u?[r]:null,a,r??he(o),!!(32&o.__u),s),n.__v=o.__v,n.__.__k[n.__i]=n,Cn(a,n,s),n.__e!=r&&yn(n)),_e.length>t&&_e.sort(Rt));ct.__r=0}function mn(e,t,i,n,o,r,a,s,c,d,f){var l,_,p,g,h,m=n&&n.__k||hn,y=t.length;for(i.__d=c,da(i,t,m),c=i.__d,l=0;l<y;l++)(p=i.__k[l])!=null&&typeof p!="boolean"&&typeof p!="function"&&(_=p.__i===-1?Fe:m[p.__i]||Fe,p.__i=l,Bt(e,p,_,o,r,a,s,c,d,f),g=p.__e,p.ref&&_.ref!=p.ref&&(_.ref&&Gt(_.ref,null,p),f.push(p.ref,p.__c||g,p)),h==null&&g!=null&&(h=g),65536&p.__u||_.__k===p.__k?(c&&typeof p.type=="string"&&!e.contains(c)&&(c=he(_)),c=kn(p,c,e)):typeof p.type=="function"&&p.__d!==void 0?c=p.__d:g&&(c=g.nextSibling),p.__d=void 0,p.__u&=-196609);i.__d=c,i.__e=h}function da(e,t,i){var n,o,r,a,s,c=t.length,d=i.length,f=d,l=0;for(e.__k=[],n=0;n<c;n++)a=n+l,(o=e.__k[n]=(o=t[n])==null||typeof o=="boolean"||typeof o=="function"?null:typeof o=="string"||typeof o=="number"||typeof o=="bigint"||o.constructor==String?st(null,o,null,null,null):at(o)?st(re,{children:o},null,null,null):o.constructor===void 0&&o.__b>0?st(o.type,o.props,o.key,o.ref?o.ref:null,o.__v):o)!=null?(o.__=e,o.__b=e.__b+1,s=fa(o,i,a,f),o.__i=s,r=null,s!==-1&&(f--,(r=i[s])&&(r.__u|=131072)),r==null||r.__v===null?(s==-1&&l--,typeof o.type!="function"&&(o.__u|=65536)):s!==a&&(s==a-1?l=s-a:s==a+1?l++:s>a?f>c-a?l+=s-a:l--:s<a&&l++,s!==n+l&&(o.__u|=65536))):(r=i[a])&&r.key==null&&r.__e&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=he(r)),Vt(r,r,!1),i[a]=null,f--);if(f)for(n=0;n<d;n++)(r=i[n])!=null&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=he(r)),Vt(r,r))}function kn(e,t,i){var n,o;if(typeof e.type=="function"){for(n=e.__k,o=0;n&&o<n.length;o++)n[o]&&(n[o].__=e,t=kn(n[o],t,i));return t}e.__e!=t&&(i.insertBefore(e.__e,t||null),t=e.__e);do t=t&&t.nextSibling;while(t!=null&&t.nodeType===8);return t}function lt(e,t){return t=t||[],e==null||typeof e=="boolean"||(at(e)?e.some(function(i){lt(i,t)}):t.push(e)),t}function fa(e,t,i,n){var o=e.key,r=e.type,a=i-1,s=i+1,c=t[i];if(c===null||c&&o==c.key&&r===c.type&&(131072&c.__u)==0)return i;if(n>(c!=null&&(131072&c.__u)==0?1:0))for(;a>=0||s<t.length;){if(a>=0){if((c=t[a])&&(131072&c.__u)==0&&o==c.key&&r===c.type)return a;a--}if(s<t.length){if((c=t[s])&&(131072&c.__u)==0&&o==c.key&&r===c.type)return s;s++}}return-1}function wn(e,t,i){t[0]==="-"?e.setProperty(t,i??""):e[t]=i==null?"":typeof i!="number"||la.test(t)?i:i+"px"}function dt(e,t,i,n,o){var r;e:if(t==="style")if(typeof i=="string")e.style.cssText=i;else{if(typeof n=="string"&&(e.style.cssText=n=""),n)for(t in n)i&&t in i||wn(e.style,t,"");if(i)for(t in i)n&&i[t]===n[t]||wn(e.style,t,i[t])}else if(t[0]==="o"&&t[1]==="n")r=t!==(t=t.replace(/(PointerCapture)$|Capture$/i,"$1")),t=t.toLowerCase()in e||t==="onFocusOut"||t==="onFocusIn"?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+r]=i,i?n?i.u=n.u:(i.u=zt,e.addEventListener(t,r?Mt:jt,r)):e.removeEventListener(t,r?Mt:jt,r);else{if(o=="http://www.w3.org/2000/svg")t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(t!="width"&&t!="height"&&t!="href"&&t!="list"&&t!="form"&&t!="tabIndex"&&t!="download"&&t!="rowSpan"&&t!="colSpan"&&t!="role"&&t!="popover"&&t in e)try{e[t]=i??"";break e}catch{}typeof i=="function"||(i==null||i===!1&&t[4]!=="-"?e.removeAttribute(t):e.setAttribute(t,t=="popover"&&i==1?"":i))}}function En(e){return function(t){if(this.l){var i=this.l[t.type+e];if(t.t==null)t.t=zt++;else if(t.t<i.u)return;return i(E.event?E.event(t):t)}}}function Bt(e,t,i,n,o,r,a,s,c,d){var f,l,_,p,g,h,m,y,b,w,C,x,N,T,F,D,R=t.type;if(t.constructor!==void 0)return null;128&i.__u&&(c=!!(32&i.__u),r=[s=t.__e=i.__e]),(f=E.__b)&&f(t);e:if(typeof R=="function")try{if(y=t.props,b="prototype"in R&&R.prototype.render,w=(f=R.contextType)&&n[f.__c],C=f?w?w.props.value:f.__:n,i.__c?m=(l=t.__c=i.__c).__=l.__E:(b?t.__c=l=new R(y,C):(t.__c=l=new ae(y,C),l.constructor=R,l.render=pa),w&&w.sub(l),l.props=y,l.state||(l.state={}),l.context=C,l.__n=n,_=l.__d=!0,l.__h=[],l._sb=[]),b&&l.__s==null&&(l.__s=l.state),b&&R.getDerivedStateFromProps!=null&&(l.__s==l.state&&(l.__s=fe({},l.__s)),fe(l.__s,R.getDerivedStateFromProps(y,l.__s))),p=l.props,g=l.state,l.__v=t,_)b&&R.getDerivedStateFromProps==null&&l.componentWillMount!=null&&l.componentWillMount(),b&&l.componentDidMount!=null&&l.__h.push(l.componentDidMount);else{if(b&&R.getDerivedStateFromProps==null&&y!==p&&l.componentWillReceiveProps!=null&&l.componentWillReceiveProps(y,C),!l.__e&&(l.shouldComponentUpdate!=null&&l.shouldComponentUpdate(y,l.__s,C)===!1||t.__v===i.__v)){for(t.__v!==i.__v&&(l.props=y,l.state=l.__s,l.__d=!1),t.__e=i.__e,t.__k=i.__k,t.__k.forEach(function(H){H&&(H.__=t)}),x=0;x<l._sb.length;x++)l.__h.push(l._sb[x]);l._sb=[],l.__h.length&&a.push(l);break e}l.componentWillUpdate!=null&&l.componentWillUpdate(y,l.__s,C),b&&l.componentDidUpdate!=null&&l.__h.push(function(){l.componentDidUpdate(p,g,h)})}if(l.context=C,l.props=y,l.__P=e,l.__e=!1,N=E.__r,T=0,b){for(l.state=l.__s,l.__d=!1,N&&N(t),f=l.render(l.props,l.state,l.context),F=0;F<l._sb.length;F++)l.__h.push(l._sb[F]);l._sb=[]}else do l.__d=!1,N&&N(t),f=l.render(l.props,l.state,l.context),l.state=l.__s;while(l.__d&&++T<25);l.state=l.__s,l.getChildContext!=null&&(n=fe(fe({},n),l.getChildContext())),b&&!_&&l.getSnapshotBeforeUpdate!=null&&(h=l.getSnapshotBeforeUpdate(p,g)),mn(e,at(D=f!=null&&f.type===re&&f.key==null?f.props.children:f)?D:[D],t,i,n,o,r,a,s,c,d),l.base=t.__e,t.__u&=-161,l.__h.length&&a.push(l),m&&(l.__E=l.__=null)}catch(H){t.__v=null,c||r!=null?(t.__e=s,t.__u|=c?160:32,r[r.indexOf(s)]=null):(t.__e=i.__e,t.__k=i.__k),E.__e(H,t,i)}else r==null&&t.__v===i.__v?(t.__k=i.__k,t.__e=i.__e):t.__e=ua(i.__e,t,i,n,o,r,a,c,d);(f=E.diffed)&&f(t)}function Cn(e,t,i){t.__d=void 0;for(var n=0;n<i.length;n++)Gt(i[n],i[++n],i[++n]);E.__c&&E.__c(t,e),e.some(function(o){try{e=o.__h,o.__h=[],e.some(function(r){r.call(o)})}catch(r){E.__e(r,o.__v)}})}function ua(e,t,i,n,o,r,a,s,c){var d,f,l,_,p,g,h,m=i.props,y=t.props,b=t.type;if(b==="svg"?o="http://www.w3.org/2000/svg":b==="math"?o="http://www.w3.org/1998/Math/MathML":o||(o="http://www.w3.org/1999/xhtml"),r!=null){for(d=0;d<r.length;d++)if((p=r[d])&&"setAttribute"in p==!!b&&(b?p.localName===b:p.nodeType===3)){e=p,r[d]=null;break}}if(e==null){if(b===null)return document.createTextNode(y);e=document.createElementNS(o,b,y.is&&y),r=null,s=!1}if(b===null)m===y||s&&e.data===y||(e.data=y);else{if(r=r&&rt.call(e.childNodes),m=i.props||Fe,!s&&r!=null)for(m={},d=0;d<e.attributes.length;d++)m[(p=e.attributes[d]).name]=p.value;for(d in m)if(p=m[d],d!="children"){if(d=="dangerouslySetInnerHTML")l=p;else if(d!=="key"&&!(d in y)){if(d=="value"&&"defaultValue"in y||d=="checked"&&"defaultChecked"in y)continue;dt(e,d,null,p,o)}}for(d in y)p=y[d],d=="children"?_=p:d=="dangerouslySetInnerHTML"?f=p:d=="value"?g=p:d=="checked"?h=p:d==="key"||s&&typeof p!="function"||m[d]===p||dt(e,d,p,m[d],o);if(f)s||l&&(f.__html===l.__html||f.__html===e.innerHTML)||(e.innerHTML=f.__html),t.__k=[];else if(l&&(e.innerHTML=""),mn(e,at(_)?_:[_],t,i,n,b==="foreignObject"?"http://www.w3.org/1999/xhtml":o,r,a,r?r[0]:i.__k&&he(i,0),s,c),r!=null)for(d=r.length;d--;)r[d]!=null&&bn(r[d]);s||(d="value",g!==void 0&&(g!==e[d]||b==="progress"&&!g||b==="option"&&g!==m[d])&&dt(e,d,g,m[d],o),d="checked",h!==void 0&&h!==e[d]&&dt(e,d,h,m[d],o))}return e}function Gt(e,t,i){try{typeof e=="function"?e(t):e.current=t}catch(n){E.__e(n,i)}}function Vt(e,t,i){var n,o;if(E.unmount&&E.unmount(e),(n=e.ref)&&(n.current&&n.current!==e.__e||Gt(n,null,t)),(n=e.__c)!=null){if(n.componentWillUnmount)try{n.componentWillUnmount()}catch(r){E.__e(r,t)}n.base=n.__P=null}if(n=e.__k)for(o=0;o<n.length;o++)n[o]&&Vt(n[o],t,i||typeof e.type!="function");i||e.__e==null||bn(e.__e),e.__c=e.__=e.__e=e.__d=void 0}function pa(e,t,i){return this.constructor(e,i)}function xn(e,t,i){var n,o,r,a;E.__&&E.__(e,t),o=(n=!1)?null:t.__k,r=[],a=[],Bt(t,e=t.__k=Ut(re,null,[e]),o||Fe,Fe,t.namespaceURI,o?null:t.firstChild?rt.call(t.childNodes):null,r,o?o.__e:t.firstChild,n,a),Cn(r,e,a)}function Ce(e,t){var i={__c:t="__cC"+_n++,__:e,Consumer:function(n,o){return n.children(o)},Provider:function(n){var o,r;return this.getChildContext||(o=[],(r={})[t]=this,this.getChildContext=function(){return r},this.componentWillUnmount=function(){o=null},this.shouldComponentUpdate=function(a){this.props.value!==a.value&&o.some(function(s){s.__e=!0,$t(s)})},this.sub=function(a){o.push(a);var s=a.componentWillUnmount;a.componentWillUnmount=function(){o&&o.splice(o.indexOf(a),1),s&&s.call(a)}}),n.children}};return i.Provider.__=i.Consumer.contextType=i}rt=hn.slice,E={__e:function(e,t,i,n){for(var o,r,a;t=t.__;)if((o=t.__c)&&!o.__)try{if((r=o.constructor)&&r.getDerivedStateFromError!=null&&(o.setState(r.getDerivedStateFromError(e)),a=o.__d),o.componentDidCatch!=null&&(o.componentDidCatch(e,n||{}),a=o.__d),a)return o.__E=o}catch(s){e=s}throw e}},pn=0,ae.prototype.setState=function(e,t){var i;i=this.__s!=null&&this.__s!==this.state?this.__s:this.__s=fe({},this.state),typeof e=="function"&&(e=e(fe({},i),this.props)),e&&fe(i,e),e!=null&&this.__v&&(t&&this._sb.push(t),$t(this))},ae.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),$t(this))},ae.prototype.render=re,_e=[],vn=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,Rt=function(e,t){return e.__v.__b-t.__v.__b},ct.__r=0,zt=0,jt=En(!1),Mt=En(!0),_n=0;const ga=e=>{try{const t=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);if(!t)return null;let i=parseInt(t[1],16),n=parseInt(t[2],16),o=parseInt(t[3],16);i/=255,n/=255,o/=255;const r=Math.max(i,n,o),a=Math.min(i,n,o);let s,c;const d=(r+a)/2;if(r===a)s=c=0;else{const f=r-a;switch(c=d>.5?f/(2-r-a):f/(r+a),r){case i:s=(n-o)/f+(n<o?6:0);break;case n:s=(o-i)/f+2;break;case o:s=(i-n)/f+4;break;default:s=0;break}s/=6}return{h:s,s:c,l:d}}catch{return null}},va=(e,t=!1)=>{let i="";const n=Math.round(e.h*360),o=Math.round(e.s*100),r=Math.round(e.l*100);return i=`${n},${o}%,${r}%`,i=t?i:`hsl(${i})`,i};var An=(e=>(e.HEX="hex",e.HSL="hsl",e))(An||{});const _a=(e,t,i)=>{const n=t==="hex"?ga(e):e;return n&&n.l?(n.l<.25?n.l=n.l+.1:n.l<.5?n.l=n.l+.08:n.l<.75?n.l=n.l+.06:n.l<.9?n.l=n.l+.04:n.l=.9,va(n)):e},Tn="fides-embed-container",ha="fides-overlay";let ft;const Nn=async({initializedFides:e,i18n:t,renderOverlay:i})=>{const{options:n,experience:o}=e,r=async()=>{try{if(ft&&(xn(null,ft),ft=void 0),n.fidesPrimaryColor){document.documentElement.style.setProperty("--fides-overlay-primary-color",n.fidesPrimaryColor);const s=_a(n.fidesPrimaryColor,An.HEX,1);document.documentElement.style.setProperty("--fides-overlay-primary-button-background-hover-color",s)}let a;if(n.fidesEmbed)a=document.getElementById(Tn),a||await(async()=>new Promise(c=>{let d=0,f=200;const l=setInterval(()=>{a=document.getElementById(Tn),a?(clearInterval(l),c()):(d+=1,d>=5&&f<1e3&&(f+=200))},f)}))();else{const s=n.overlayParentId||ha;a=document.getElementById(s),a||(a=document.createElement("div"),a.id=s,a.className="fides-overlay",document.body.prepend(a))}return a?(i&&(o.experience_config?.component===j.MODAL||o.experience_config?.component===j.BANNER_AND_MODAL||o.experience_config?.component===j.TCF_OVERLAY)&&(i({initializedFides:e,i18n:t},a),ft=a),await Promise.resolve()):await Promise.reject(new Error("There was a problem rendering the Fides overlay."))}catch(a){return Promise.reject(a)}};return document?.readyState==="loading"?document.addEventListener("readystatechange",async()=>{document.readyState==="interactive"&&r()}):r(),Promise.resolve()};var ba=0;function u(e,t,i,n,o,r){t||(t={});var a,s,c=t;if("ref"in c)for(s in c={},t)s=="ref"?a=t[s]:c[s]=t[s];var d={type:e,props:c,key:i,ref:a,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:--ba,__i:-1,__u:0,__source:o,__self:r};if(typeof e=="function"&&(a=e.defaultProps))for(s in a)c[s]===void 0&&(c[s]=a[s]);return E.vnode&&E.vnode(d),d}function ya(e,t){t===void 0&&(t={});var i=t.insertAt;if(!(typeof document>"u")){var n=document.head||document.getElementsByTagName("head")[0],o=document.createElement("style");o.type="text/css",i==="top"&&n.firstChild?n.insertBefore(o,n.firstChild):n.appendChild(o),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(document.createTextNode(e))}}var ma=`:root{--fides-overlay-primary-color:#2b2e35;--fides-overlay-background-color:#f7fafc;--fides-overlay-embed-background-color:transparent;--fides-overlay-font-color:#4a5568;--fides-overlay-font-color-dark:#2d3748;--fides-overlay-hover-color:#edf2f7;--fides-overlay-gpc-applied-background-color:#38a169;--fides-overlay-gpc-applied-text-color:#fff;--fides-overlay-gpc-overridden-background-color:#e53e3e;--fides-overlay-gpc-overridden-text-color:#fff;--fides-overlay-brand-link-logo-color:#2b2e35;--fides-overlay-background-dark-color:#e2e8f0;--fides-overlay-background-error-color:#f7c2c2;--fides-overlay-skeleton-gradient-from-color:rgba(0,0,0,.06);--fides-overlay-skeleton-gradient-to-color:rgba(0,0,0,.15);--fides-overlay-inactive-font-color:#a0aec0;--fides-overlay-primary-button-background-color:var(
|
|
2
2
|
--fides-overlay-primary-color
|
|
3
3
|
);--fides-overlay-primary-button-background-hover-color:#4f525b;--fides-overlay-primary-button-text-color:#fff;--fides-overlay-primary-button-border-color:transparent;--fides-overlay-secondary-button-background-color:var(
|
|
4
4
|
--fides-overlay-background-color
|
|
@@ -6,6 +6,6 @@ if(typeof Fides<"u"&&Fides.options?.fidesUnsupportedRepeatedScriptLoading!=="ena
|
|
|
6
6
|
--fides-overlay-hover-color
|
|
7
7
|
);--fides-overlay-neutral-background-color:#edf2f7;--fides-overlay-secondary-button-text-color:#2d3748;--fides-overlay-secondary-button-border-color:var(
|
|
8
8
|
--fides-overlay-primary-color
|
|
9
|
-
);--fides-overlay-secondary-button-border-color-disabled:#a0aec0;--fides-overlay-title-font-color:var(--fides-overlay-font-color);--fides-overlay-body-font-color:var(--fides-overlay-font-color);--fides-overlay-link-font-color:var(--fides-overlay-font-color-dark);--fides-overlay-line-height:1.4em;--fides-overlay-primary-active-color:var(--fides-overlay-primary-color);--fides-overlay-inactive-color:#e2e8f0;--fides-overlay-disabled-color:#e1e7ee;--fides-overlay-row-divider-color:#e2e8f0;--fides-overlay-row-hover-color:var(--fides-overlay-hover-color);--fides-overlay-badge-background-color:#718096;--fides-overlay-badge-border-radius:4px;--fides-overlay-select-border-color:#e2e8f0;--fides-overlay-language-button-border-radius:4px;--fides-overlay-width:680px;--fides-overlay-font-family:Inter,sans-serif;--fides-base-font-size:16px;--8px:calc(var(--fides-base-font-size)*0.5);--12px:calc(var(--fides-base-font-size)*0.75);--14px:calc(var(--fides-base-font-size)*0.875);--16px:calc(var(--fides-base-font-size)*1);--fides-overlay-font-size-body-xs:var(--8px);--fides-overlay-font-size-body-small:var(--12px);--fides-overlay-font-size-body:var(--14px);--fides-overlay-font-size-title:var(--16px);--fides-overlay-font-size-buttons:var(--14px);--fides-overlay-padding:24px;--fides-overlay-button-border-radius:6px;--fides-overlay-button-padding:8px 16px;--fides-overlay-link-v-padding:4px;--fides-overlay-link-h-padding:4px;--fides-overlay-link-padding:var(--fides-overlay-link-v-padding) var(--fides-overlay-link-h-padding);--fides-overlay-container-border-radius:12px;--fides-overlay-container-border-width:1px;--fides-overlay-component-border-radius:4px;--fides-overlay-banner-offset:48px;--fides-banner-font-size-title:var(--16px);--fides-overlay-language-loading-indicator-speed:5s;--fides-overlay-modal-secondary-button-group-height:calc(var(--fides-overlay-font-size-body) + var(--fides-overlay-link-v-padding)*2)}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}div.fides-overlay{position:fixed;z-index:1000}div#fides-overlay-wrapper *{box-sizing:border-box}.fides-banner,.fides-modal-container{-webkit-font-smoothing:antialiased;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);line-height:var(--fides-overlay-line-height);white-space:pre-line}#fides-modal-link{cursor:pointer;display:none}#fides-modal-link.fides-modal-link-shown{display:inline}div#fides-banner-container:not(.fides-embedded){display:flex;justify-content:center;position:fixed;transform:translateY(0);transition:transform 1s,visibility 1s;visibility:visible;width:100%;z-index:1}div#fides-banner{align-items:center;background:var(--fides-overlay-background-color);border-top:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);color:var(--fides-overlay-body-font-color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:var(--fides-overlay-font-size-body);justify-content:space-between;overflow-y:hidden;padding:24px;position:relative}.fides-embedded div#fides-banner{border:none}div#fides-banner-inner{width:100%}div#fides-banner-container.fides-banner-bottom{bottom:0;left:0}div#fides-banner-container.fides-banner-hidden{visibility:hidden}div#fides-banner-container.fides-banner-hidden.fides-embedded{display:none}div#fides-banner-container.fides-banner-bottom.fides-banner-hidden{transform:translateY(150%)}div#fides-banner-container.fides-banner-top{left:0;top:0}div#fides-banner-container.fides-banner-top.fides-banner-hidden{transform:translateY(-150%)}div#fides-banner-inner div#fides-button-group{align-items:center;flex-direction:row-reverse;margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0;width:100%}.fides-modal-footer div#fides-button-group{align-items:center;flex-direction:column;gap:12px;margin-inline:var(--fides-overlay-padding)}div#fides-banner-heading{align-items:center;display:flex;justify-content:space-between;margin-right:13px}.fides-banner-title{color:var(--fides-overlay-title-font-color);font-size:var(--fides-banner-font-size-title);font-weight:600;line-height:1.5em;margin:0}.fides-banner-description{flex:1;font-size:var(--fides-overlay-font-size-body);margin-bottom:24px;margin-top:16px}.fides-banner-description .fides-link-button,.fides-banner-description a,.fides-modal-description .fides-link-button,.fides-modal-description a{color:var(--fides-overlay-primary-color);font-weight:600;text-decoration:underline}div#fides-banner-notices{margin-top:16px}div#fides-button-group{background-color:var(--fides-overlay-background-color);display:flex;justify-content:space-between;margin-bottom:var(--fides-overlay-padding);margin-top:8px;z-index:5}button.fides-banner-button{align-items:center;background:var(--fides-overlay-primary-button-background-color);border:1px solid;border-radius:var(--fides-overlay-button-border-radius);color:var(--fides-overlay-primary-button-text-color);cursor:pointer;display:flex;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-buttons);font-weight:600;justify-content:center;margin:4px 0 0;padding:var(--fides-overlay-button-padding);text-decoration:none}button.fides-banner-button:focus,button.fides-banner-button:hover,button.fides-banner-button[disabled]{background:var(--fides-overlay-primary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-primary{background:var(--fides-overlay-primary-button-background-color);border:none;color:var(--fides-overlay-primary-button-text-color)}button.fides-banner-button.fides-banner-button-primary:focus,button.fides-banner-button.fides-banner-button-primary:hover,button.fides-banner-button.fides-banner-button-primary[disabled]{background:var(--fides-overlay-primary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-secondary{background:var(--fides-overlay-secondary-button-background-color);border:1px solid var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-secondary-button-text-color)}button.fides-banner-button.fides-banner-button-secondary:focus,button.fides-banner-button.fides-banner-button-secondary:hover,button.fides-banner-button.fides-banner-button-secondary[disabled]{background:var(--fides-overlay-secondary-button-background-hover-color)}button.fides-banner-button[disabled]{color:var(--fides-overlay-inactive-font-color)}button.fides-banner-button.fides-banner-button-secondary[disabled]{border-color:var(--fides-overlay-secondary-button-border-color-disabled)}button.fides-banner-button.fides-banner-button-tertiary{background:none;border:none;color:var(--fides-overlay-link-font-color);cursor:pointer;font-size:var(--fides-overlay-font-size-body);font-weight:500;line-height:1.25em;padding:0;text-decoration:underline}button.fides-banner-button.fides-acknowledge-button{min-width:160px}.fides-spinner{animation:spin 1s linear infinite;border-color:currentcolor currentcolor transparent transparent;border-radius:50%;border-style:solid;border-width:2px;border-right:2px solid var(--fides-overlay-skeleton-gradient-from-color);border-top:2px solid var(--fides-overlay-skeleton-gradient-from-color);height:1em;width:1em}.fides-banner-button-primary .fides-spinner{border-right-color:var(--fides-overlay-primary-button-text-color);border-top-color:var(--fides-overlay-primary-button-text-color)}.fides-banner-button-secondary .fides-spinner{border-right-color:var(--fides-overlay-inactive-font-color);border-top-color:var(--fides-overlay-inactive-font-color)}div.fides-modal-content{background-color:var(--fides-overlay-background-color);border:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-container-border-radius);color:var(--fides-overlay-body-font-color);display:flex;flex-direction:column;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);left:50%;max-height:min(680px,100vh);overflow-x:hidden;overflow-y:auto;padding:0;position:fixed;top:50%;transform:translate(-50%,-50%);width:var(--fides-overlay-width);z-index:2}.fides-modal-container,.fides-modal-overlay{background-color:rgba(0,0,0,.25);bottom:0;left:0;position:fixed;right:0;top:0}div#fides-embed-container div#fides-consent-content .fides-modal-footer{position:inherit}div#fides-embed-container .fides-modal-body{padding-top:16px}div#fides-embed-container div#fides-consent-content{background-color:var(--fides-overlay-background-color);border:none;border-radius:var(--fides-overlay-container-border-radius);border-bottom-left-radius:0;border-bottom-right-radius:0;color:var(--fides-overlay-body-font-color);display:flex;flex-direction:column;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);left:50%;max-height:none;overflow:hidden;padding:0;position:static;top:50%;transform:none;width:var(--fides-overlay-width)}.fides-modal-container{display:flex;z-index:2}.fides-modal-container[aria-hidden=true]{display:none}div#fides-modal .fides-modal-header{display:flex;justify-content:end}div#fides-consent-content{overflow:auto;scrollbar-gutter:stable}div#fides-consent-content .fides-modal-title{color:var(--fides-overlay-title-font-color);font-size:var(--fides-overlay-font-size-title);font-weight:600;margin:0;text-align:center}div#fides-consent-content .fides-modal-body{height:100%;overflow-y:auto;padding-inline:var(--fides-overlay-padding)}.fides-modal-footer{background-color:var(--fides-overlay-background-color);border-bottom-left-radius:var(--fides-overlay-component-border-radius);border-bottom-right-radius:var(--fides-overlay-component-border-radius);bottom:0;display:flex;flex-direction:column;max-width:var(--fides-overlay-width);position:relative;width:100%;z-index:5}div#fides-consent-content .fides-modal-description{margin:8px 0 24px}.fides-banner-button-group{align-items:center;display:flex;gap:12px}.fides-modal-button-group{display:flex;flex-direction:row;gap:12px;margin-inline:var(--fides-overlay-padding);width:100%}.fides-modal-primary-actions .fides-banner-button{flex:1}.fides-banner-secondary-actions{justify-content:space-between}.fides-modal-secondary-actions{justify-content:center}.fides-modal-footer .fides-button-group-brand{min-height:var(--fides-overlay-modal-secondary-button-group-height)}.fides-modal-secondary-actions .fides-brand{align-items:center;bottom:var(--fides-overlay-padding);display:flex;font-size:var(--fides-overlay-font-size-body-xs);justify-content:center;position:absolute;right:var(--fides-overlay-padding)}.fides-modal-secondary-actions .fides-brand-link{align-items:center;color:var(--fides-overlay-font-color);display:flex;gap:4px;text-decoration:none}.fides-modal-secondary-actions .fides-brand .ethyca-logo{color:var(--fides-overlay-brand-link-logo-color)}.fides-banner-secondary-actions{gap:36px}.fides-no-scroll{overflow:hidden}div#fides-banner .fides-close-button{display:flex;position:absolute;right:0;top:0}.fides-modal-header .fides-close-button,div#fides-banner .fides-close-button{background:none;border:none;cursor:pointer;padding-right:8px;padding-top:8px}.fides-close-button:hover{background:var(--fides-overlay-hover-color)}.fides-embedded .fides-close-button{display:none!important}.fides-modal-notices{margin-bottom:16px}.fides-privacy-policy{color:var(--fides-overlay-primary-color);display:block;font-family:var(--fides-overlay-font-family);text-align:center}.fides-privacy-policy,button.fides-banner-button.fides-banner-button-tertiary,button.fides-i18n-button{line-height:1;margin:0;padding:var(--fides-overlay-link-padding)}@media (prefers-reduced-motion:reduce){.fides-toggle-display{transition-duration:0ms}}.fides-toggle{align-items:center;display:inline-flex;flex-wrap:wrap;gap:1ch;position:relative}.fides-toggle .fides-toggle-input{cursor:pointer;height:100%;opacity:0;position:absolute;width:100%;z-index:4}.fides-toggle .fides-toggle-display{--offset:4px;--diameter:16px;align-items:center;background-color:var(--fides-overlay-inactive-color);border-radius:100vw;box-sizing:content-box;color:var(--fides-overlay-inactive-font-color);display:inline-flex!important;height:24px;justify-content:space-around;justify-content:end;padding-inline:8px;position:relative;transition:.25s;width:34px}div#fides-overlay-wrapper .fides-toggle .fides-toggle-display{box-sizing:content-box}.fides-toggle .fides-toggle-display:before{background-color:#fff;border-radius:50%;box-shadow:0 1.3px 2.7px rgba(0,0,0,.25);box-sizing:border-box;content:"";height:var(--diameter);left:var(--offset);position:absolute;top:50%;transform:translateY(-50%);transition:inherit;width:var(--diameter);z-index:3}.fides-toggle .fides-toggle-input:checked+.fides-toggle-display{background-color:var(--fides-overlay-primary-active-color);color:var(--fides-overlay-primary-button-text-color);justify-content:start}.fides-toggle .fides-toggle-input:checked+.fides-toggle-display:before{transform:translate(26px,-50%)}.fides-toggle .fides-toggle-input:disabled{cursor:not-allowed}.fides-toggle .fides-toggle-input:disabled+.fides-toggle-display,.fides-toggle .fides-toggle-input:disabled:checked+.fides-toggle-display{background-color:var(--fides-overlay-disabled-color)}.fides-toggle .fides-toggle-input:focus+.fides-toggle-display{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color}.fides-toggle .fides-toggle-input:focus:not(:focus-visible)+.fides-toggle-display{outline:0}.fides-divider{border-color:var(--fides-overlay-row-divider-color);border-width:0 0 1px;margin:0}.fides-disclosure-hidden{display:flex;height:0;margin-bottom:0;margin-top:0;overflow:hidden;visibility:hidden}.fides-notice-toggle .fides-notice-toggle-title{align-items:center;border-bottom:1px solid var(--fides-overlay-row-divider-color);display:flex;justify-content:space-between;padding-inline:12px 12px}.fides-notice-toggle .fides-notice-toggle-trigger{align-items:center;display:flex;flex-grow:1;justify-content:flex-end;min-height:40px}.fides-notice-toggle .fides-notice-toggle-trigger svg{flex-shrink:0}.fides-notice-toggle .fides-notice-toggle-title:hover{background-color:var(--fides-overlay-row-hover-color);cursor:pointer}.fides-notice-toggle .fides-notice-toggle-trigger:before{border-style:solid;border-width:2px 2px 0 0;content:"";display:inline-block;height:8px;margin-right:calc(var(--8px) + 2px);min-width:8px;transform:translateY(-2px) rotate(135deg);transition:transform .12s ease-in-out}.fides-notice-toggle.fides-notice-toggle-expanded .fides-notice-toggle-trigger:before{transform:translateY(2px) rotate(-45deg)}.fides-notice-toggle .fides-disclosure-visible{display:flex;flex-direction:column;gap:12px;overflow:auto;padding:12px}.fides-notice-toggle p{margin:0 0 18px}.fides-notice-toggle p:last-child{margin:0}.fides-notice-toggle-title .fides-flex-center{align-items:center;display:flex;white-space:wrap;width:100%}.fides-notice-toggle-expanded{background-color:var(--fides-overlay-row-hover-color)}.fides-notice-toggle-header{font-weight:600}.fides-notice-toggle-controls{align-items:center;display:flex;gap:8px;margin-left:8px;white-space:nowrap}.fides-gpc-banner{border:1px solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-component-border-radius);display:flex;margin-bottom:16px;padding:18px}.fides-gpc-banner p{margin:0}.fides-gpc-warning{color:var(--fides-overlay-primary-color);margin-right:8px}.fides-gpc-header{font-weight:700}.fides-gpc-label{display:inline-flex;font-size:var(--fides-overlay-font-size-body);font-weight:600;padding:0 8px;white-space:nowrap}.fides-gpc-badge{border-radius:var(--fides-overlay-badge-border-radius);display:inline-flex;font-weight:700;margin-left:4px;padding:0 4px;text-transform:uppercase}.fides-gpc-badge-applied,.fides-gpc-badge-detected{background:var(--fides-overlay-gpc-applied-background-color);color:var(--fides-overlay-gpc-applied-text-color)}.fides-gpc-badge-overridden{background:var(--fides-overlay-gpc-overridden-background-color);color:var(--fides-overlay-gpc-overridden-text-color)}.fides-tab-list{display:flex;list-style-type:none;padding:0}.fides-tab-list>li{width:100%}.fides-tab-button{background:none;border-width:0 0 1px;border-bottom:1px solid var(--fides-overlay-row-divider-color);color:var(--fides-overlay-body-font-color);cursor:pointer;font-weight:500;padding:10px 20px;width:100%}.fides-tab-button[aria-selected=true]{border-bottom-width:2px;border-color:var(--fides-overlay-primary-active-color);color:var(--fides-overlay-primary-active-color);font-weight:600}.fides-tab-button::focus-visible{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color}.fides-tab-button:focus:not(:focus-visible){outline:0}.fides-notice-badge{align-items:center;background:var(--fides-overlay-badge-background-color);border-radius:var(--fides-overlay-badge-border-radius);color:#fff;display:inline-flex;font-size:var(--fides-overlay-font-size-body-small);font-weight:600;height:18px;padding:0 4px;text-transform:uppercase}.fides-background-dark{background-color:var(--fides-overlay-background-dark-color)}.fides-radio-button-group{background-color:var(
|
|
9
|
+
);--fides-overlay-secondary-button-border-color-disabled:#a0aec0;--fides-overlay-title-font-color:var(--fides-overlay-font-color);--fides-overlay-body-font-color:var(--fides-overlay-font-color);--fides-overlay-link-font-color:var(--fides-overlay-font-color-dark);--fides-overlay-line-height:1.4em;--fides-overlay-primary-active-color:var(--fides-overlay-primary-color);--fides-overlay-inactive-color:#e2e8f0;--fides-overlay-disabled-color:#e1e7ee;--fides-overlay-row-divider-color:#e2e8f0;--fides-overlay-row-hover-color:var(--fides-overlay-hover-color);--fides-overlay-badge-background-color:#718096;--fides-overlay-badge-border-radius:4px;--fides-overlay-select-border-color:#e2e8f0;--fides-overlay-language-button-border-radius:4px;--fides-overlay-width:680px;--fides-overlay-font-family:Inter,sans-serif;--fides-base-font-size:16px;--8px:calc(var(--fides-base-font-size)*0.5);--12px:calc(var(--fides-base-font-size)*0.75);--14px:calc(var(--fides-base-font-size)*0.875);--16px:calc(var(--fides-base-font-size)*1);--fides-overlay-font-size-body-xs:var(--8px);--fides-overlay-font-size-body-small:var(--12px);--fides-overlay-font-size-body:var(--14px);--fides-overlay-font-size-title:var(--16px);--fides-overlay-font-size-buttons:var(--14px);--fides-overlay-padding:24px;--fides-overlay-button-border-radius:6px;--fides-overlay-button-padding:8px 16px;--fides-overlay-link-v-padding:4px;--fides-overlay-link-h-padding:4px;--fides-overlay-link-padding:var(--fides-overlay-link-v-padding) var(--fides-overlay-link-h-padding);--fides-overlay-container-border-radius:12px;--fides-overlay-container-border-width:1px;--fides-overlay-component-border-radius:4px;--fides-overlay-banner-offset:48px;--fides-banner-font-size-title:var(--16px);--fides-overlay-language-loading-indicator-speed:5s;--fides-overlay-modal-secondary-button-group-height:calc(var(--fides-overlay-font-size-body) + var(--fides-overlay-link-v-padding)*2);--fides-overlay-toggle-width:50px}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}div.fides-overlay{position:fixed;z-index:1000}div#fides-overlay-wrapper *{box-sizing:border-box}.fides-banner,.fides-modal-container{-webkit-font-smoothing:antialiased;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);line-height:var(--fides-overlay-line-height);white-space:pre-line}#fides-modal-link{cursor:pointer;display:none}#fides-modal-link.fides-modal-link-shown{display:inline}div#fides-banner-container:not(.fides-embedded){display:flex;justify-content:center;position:fixed;transform:translateY(0);transition:transform 1s,visibility 1s;visibility:visible;width:100%;z-index:1}div#fides-banner{align-items:center;background:var(--fides-overlay-background-color);border-top:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);color:var(--fides-overlay-body-font-color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:var(--fides-overlay-font-size-body);justify-content:space-between;overflow-y:hidden;padding:24px;position:relative}.fides-embedded div#fides-banner{border:none}div#fides-banner-inner{width:100%}div#fides-banner-container.fides-banner-bottom{bottom:0;left:0}div#fides-banner-container.fides-banner-hidden{visibility:hidden}div#fides-banner-container.fides-banner-hidden.fides-embedded{display:none}div#fides-banner-container.fides-banner-bottom.fides-banner-hidden{transform:translateY(150%)}div#fides-banner-container.fides-banner-top{left:0;top:0}div#fides-banner-container.fides-banner-top.fides-banner-hidden{transform:translateY(-150%)}div#fides-banner-inner div#fides-button-group{align-items:center;flex-direction:row-reverse;margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0;width:100%}.fides-modal-footer div#fides-button-group{align-items:center;flex-direction:column;gap:12px;margin-inline:var(--fides-overlay-padding)}div#fides-banner-heading{align-items:center;display:flex;justify-content:space-between;margin-right:13px}.fides-banner-title{color:var(--fides-overlay-title-font-color);font-size:var(--fides-banner-font-size-title);font-weight:600;line-height:1.5em;margin:0}.fides-banner-description{flex:1;font-size:var(--fides-overlay-font-size-body);margin-bottom:24px;margin-top:16px}.fides-banner-description .fides-link-button,.fides-banner-description a,.fides-link-button .fides-back-link,.fides-link-button.fides-vendors-disclosure-link,.fides-modal-description .fides-link-button,.fides-modal-description a{color:var(--fides-overlay-primary-color);font-weight:600;text-decoration:underline}div#fides-banner-notices{margin-top:16px}div#fides-button-group{background-color:var(--fides-overlay-background-color);display:flex;justify-content:space-between;margin-bottom:var(--fides-overlay-padding);margin-top:8px;z-index:5}button.fides-banner-button{align-items:center;background:var(--fides-overlay-primary-button-background-color);border:1px solid;border-radius:var(--fides-overlay-button-border-radius);color:var(--fides-overlay-primary-button-text-color);cursor:pointer;display:flex;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-buttons);font-weight:600;justify-content:center;margin:4px 0 0;padding:var(--fides-overlay-button-padding);text-decoration:none}button.fides-banner-button:focus,button.fides-banner-button:hover,button.fides-banner-button[disabled]{background:var(--fides-overlay-primary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-primary{background:var(--fides-overlay-primary-button-background-color);border:none;color:var(--fides-overlay-primary-button-text-color)}button.fides-banner-button.fides-banner-button-primary:focus,button.fides-banner-button.fides-banner-button-primary:hover,button.fides-banner-button.fides-banner-button-primary[disabled]{background:var(--fides-overlay-primary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-secondary{background:var(--fides-overlay-secondary-button-background-color);border:1px solid var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-secondary-button-text-color)}button.fides-banner-button.fides-banner-button-secondary:focus,button.fides-banner-button.fides-banner-button-secondary:hover,button.fides-banner-button.fides-banner-button-secondary[disabled]{background:var(--fides-overlay-secondary-button-background-hover-color)}button.fides-banner-button[disabled]{color:var(--fides-overlay-inactive-font-color)}button.fides-banner-button.fides-banner-button-secondary[disabled]{border-color:var(--fides-overlay-secondary-button-border-color-disabled)}button.fides-banner-button.fides-banner-button-tertiary{background:none;border:none;color:var(--fides-overlay-link-font-color);cursor:pointer;font-size:var(--fides-overlay-font-size-body);font-weight:500;line-height:1.25em;padding:0;text-decoration:underline}button.fides-banner-button.fides-acknowledge-button{min-width:160px}.fides-spinner{animation:spin 1s linear infinite;border-color:currentcolor currentcolor transparent transparent;border-radius:50%;border-style:solid;border-width:2px;border-right:2px solid var(--fides-overlay-skeleton-gradient-from-color);border-top:2px solid var(--fides-overlay-skeleton-gradient-from-color);height:1em;width:1em}.fides-banner-button-primary .fides-spinner{border-right-color:var(--fides-overlay-primary-button-text-color);border-top-color:var(--fides-overlay-primary-button-text-color)}.fides-banner-button-secondary .fides-spinner{border-right-color:var(--fides-overlay-inactive-font-color);border-top-color:var(--fides-overlay-inactive-font-color)}div.fides-modal-content{background-color:var(--fides-overlay-background-color);border:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-container-border-radius);color:var(--fides-overlay-body-font-color);display:flex;flex-direction:column;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);left:50%;max-height:min(680px,100vh);overflow-x:hidden;overflow-y:auto;padding:0;position:fixed;top:50%;transform:translate(-50%,-50%);width:var(--fides-overlay-width);z-index:2}.fides-modal-container,.fides-modal-overlay{background-color:rgba(0,0,0,.25);bottom:0;left:0;position:fixed;right:0;top:0}div#fides-embed-container div#fides-consent-content .fides-modal-footer{position:inherit}div#fides-embed-container .fides-modal-body{padding-top:16px}div#fides-embed-container div#fides-consent-content{background-color:var(--fides-overlay-background-color);border:none;border-radius:var(--fides-overlay-container-border-radius);border-bottom-left-radius:0;border-bottom-right-radius:0;color:var(--fides-overlay-body-font-color);display:flex;flex-direction:column;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);left:50%;max-height:none;overflow:hidden;padding:0;position:static;top:50%;transform:none;width:var(--fides-overlay-width)}.fides-modal-container{display:flex;z-index:2}.fides-modal-container[aria-hidden=true]{display:none}div#fides-modal .fides-modal-header{display:flex;justify-content:end}div#fides-consent-content{overflow:auto;scrollbar-gutter:stable}div#fides-consent-content .fides-modal-title{color:var(--fides-overlay-title-font-color);font-size:var(--fides-overlay-font-size-title);font-weight:600;margin:0;text-align:center}div#fides-consent-content .fides-modal-body{height:100%;overflow-y:auto;padding-inline:var(--fides-overlay-padding)}.fides-modal-footer{background-color:var(--fides-overlay-background-color);border-bottom-left-radius:var(--fides-overlay-component-border-radius);border-bottom-right-radius:var(--fides-overlay-component-border-radius);bottom:0;display:flex;flex-direction:column;max-width:var(--fides-overlay-width);position:relative;width:100%;z-index:5}div#fides-consent-content .fides-modal-description{margin:8px 0 24px}.fides-banner-button-group{align-items:center;display:flex;gap:12px}.fides-modal-button-group{display:flex;flex-direction:row;gap:12px;margin-inline:var(--fides-overlay-padding);width:100%}.fides-modal-primary-actions .fides-banner-button{flex:1}.fides-banner-secondary-actions{justify-content:space-between}.fides-modal-secondary-actions{justify-content:center}.fides-modal-footer .fides-button-group-brand{min-height:var(--fides-overlay-modal-secondary-button-group-height)}.fides-modal-secondary-actions .fides-brand{align-items:center;bottom:var(--fides-overlay-padding);display:flex;font-size:var(--fides-overlay-font-size-body-xs);justify-content:center;position:absolute;right:var(--fides-overlay-padding)}.fides-modal-secondary-actions .fides-brand-link{align-items:center;color:var(--fides-overlay-font-color);display:flex;gap:4px;text-decoration:none}.fides-modal-secondary-actions .fides-brand .ethyca-logo{color:var(--fides-overlay-brand-link-logo-color)}.fides-banner-secondary-actions{gap:36px}.fides-no-scroll{overflow:hidden}div#fides-banner .fides-close-button{display:flex;position:absolute;right:0;top:0}.fides-modal-header .fides-close-button,div#fides-banner .fides-close-button{background:none;border:none;cursor:pointer;padding-right:8px;padding-top:8px}.fides-close-button:hover{background:var(--fides-overlay-hover-color)}.fides-embedded .fides-close-button{display:none!important}.fides-modal-notices{margin-bottom:16px}.fides-privacy-policy{color:var(--fides-overlay-primary-color);display:block;font-family:var(--fides-overlay-font-family);text-align:center}.fides-privacy-policy,button.fides-banner-button.fides-banner-button-tertiary,button.fides-i18n-button{line-height:1;margin:0;padding:var(--fides-overlay-link-padding)}@media (prefers-reduced-motion:reduce){.fides-toggle-display{transition-duration:0ms}}.fides-toggle{align-items:center;display:inline-flex;flex-wrap:wrap;gap:1ch;position:relative}.fides-toggle .fides-toggle-input{cursor:pointer;height:100%;opacity:0;position:absolute;width:100%;z-index:4}.fides-toggle .fides-toggle-display{--offset:4px;--diameter:16px;align-items:center;background-color:var(--fides-overlay-inactive-color);border-radius:100vw;box-sizing:content-box;color:var(--fides-overlay-inactive-font-color);display:inline-flex!important;height:24px;justify-content:space-around;justify-content:end;padding-inline:8px;position:relative;transition:.25s;width:calc(var(--fides-overlay-toggle-width) - var(--16px))}div#fides-overlay-wrapper .fides-toggle .fides-toggle-display{box-sizing:content-box}.fides-toggle .fides-toggle-display:before{background-color:#fff;border-radius:50%;box-shadow:0 1.3px 2.7px rgba(0,0,0,.25);box-sizing:border-box;content:"";height:var(--diameter);left:var(--offset);position:absolute;top:50%;transform:translateY(-50%);transition:inherit;width:var(--diameter);z-index:3}.fides-toggle .fides-toggle-input:checked+.fides-toggle-display{background-color:var(--fides-overlay-primary-active-color);color:var(--fides-overlay-primary-button-text-color);justify-content:start}.fides-toggle .fides-toggle-input:checked+.fides-toggle-display:before{transform:translate(26px,-50%)}.fides-toggle .fides-toggle-input:disabled{cursor:not-allowed}.fides-toggle .fides-toggle-input:disabled+.fides-toggle-display,.fides-toggle .fides-toggle-input:disabled:checked+.fides-toggle-display{background-color:var(--fides-overlay-disabled-color)}.fides-toggle .fides-toggle-input:focus+.fides-toggle-display{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color}.fides-toggle .fides-toggle-input:focus:not(:focus-visible)+.fides-toggle-display{outline:0}.fides-divider{border-color:var(--fides-overlay-row-divider-color);border-width:0 0 1px;margin:0}.fides-disclosure-hidden{display:flex;height:0;margin-bottom:0;margin-top:0;overflow:hidden;visibility:hidden}.fides-notice-toggle .fides-notice-toggle-title{align-items:center;border-bottom:1px solid var(--fides-overlay-row-divider-color);display:flex;justify-content:space-between;padding-inline:12px 12px}.fides-notice-toggle .fides-notice-toggle-trigger{align-items:center;display:flex;flex-grow:1;justify-content:flex-end;min-height:40px}.fides-notice-toggle .fides-notice-toggle-trigger svg{flex-shrink:0}.fides-notice-toggle .fides-notice-toggle-title:hover{background-color:var(--fides-overlay-row-hover-color);cursor:pointer}.fides-notice-toggle .fides-notice-toggle-trigger:before{border-style:solid;border-width:2px 2px 0 0;content:"";display:inline-block;height:8px;margin-right:calc(var(--8px) + 2px);min-width:8px;transform:translateY(-2px) rotate(135deg);transition:transform .12s ease-in-out}.fides-notice-toggle.fides-notice-toggle-expanded .fides-notice-toggle-trigger:before{transform:translateY(2px) rotate(-45deg)}.fides-notice-toggle .fides-disclosure-visible{display:flex;flex-direction:column;gap:12px;overflow:auto;padding:12px}.fides-notice-toggle p{margin:0 0 18px}.fides-notice-toggle p:last-child{margin:0}.fides-notice-toggle-title .fides-flex-center{align-items:center;display:flex;white-space:wrap;width:100%}.fides-notice-toggle-expanded{background-color:var(--fides-overlay-row-hover-color)}.fides-notice-toggle-header{font-weight:600}.fides-notice-toggle-controls{align-items:center;display:flex;gap:8px;margin-left:8px;white-space:nowrap}.fides-gpc-banner{border:1px solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-component-border-radius);display:flex;margin-bottom:16px;padding:18px}.fides-gpc-banner p{margin:0}.fides-gpc-warning{color:var(--fides-overlay-primary-color);margin-right:8px}.fides-gpc-header{font-weight:700}.fides-gpc-label{align-items:center;display:inline-flex;font-size:var(--fides-overlay-font-size-body);font-weight:600;padding:0 8px;white-space:nowrap}.fides-gpc-badge{border-radius:var(--fides-overlay-badge-border-radius);display:inline-flex;font-weight:700;margin-left:4px;padding:0 4px;text-transform:uppercase}.fides-gpc-badge-applied,.fides-gpc-badge-detected{background:var(--fides-overlay-gpc-applied-background-color);color:var(--fides-overlay-gpc-applied-text-color)}.fides-gpc-badge-overridden{background:var(--fides-overlay-gpc-overridden-background-color);color:var(--fides-overlay-gpc-overridden-text-color)}.fides-tab-list{display:flex;list-style-type:none;padding:0}.fides-tab-list>li{width:100%}.fides-tab-button{background:none;border-width:0 0 1px;border-bottom:1px solid var(--fides-overlay-row-divider-color);color:var(--fides-overlay-body-font-color);cursor:pointer;font-weight:500;padding:10px 20px;width:100%}.fides-tab-button[aria-selected=true]{border-bottom-width:2px;border-color:var(--fides-overlay-primary-active-color);color:var(--fides-overlay-primary-active-color);font-weight:600}.fides-tab-button::focus-visible{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color}.fides-tab-button:focus:not(:focus-visible){outline:0}.fides-notice-badge{align-items:center;background:var(--fides-overlay-badge-background-color);border-radius:var(--fides-overlay-badge-border-radius);color:#fff;display:inline-flex;font-size:var(--fides-overlay-font-size-body-small);font-weight:600;height:18px;padding:0 4px;text-transform:uppercase}.fides-background-dark{background-color:var(--fides-overlay-background-dark-color)}.fides-radio-button-group{background-color:var(
|
|
10
10
|
--fides-overlay-secondary-button-background-hover-color
|
|
11
|
-
);border:1px solid var(--fides-overlay-row-divider-color);display:flex;margin-bottom:22px;padding:4px}.fides-radio-button{background-color:transparent;border:none;cursor:pointer;flex:1;padding:5px 16px}.fides-radio-button[aria-checked=true]{background-color:var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-primary-button-text-color)}.fides-flex-center{align-items:center;display:flex}.fides-margin-right{margin-right:3px}.fides-justify-space-between{justify-content:space-between}.fides-vendor-details-table{width:100%}.fides-vendor-details-table td,.fides-vendor-details-table th{font-size:var(--fides-overlay-font-size-body-small);text-align:left}.fides-vendor-details-table td{border-bottom:1px solid var(--fides-overlay-row-divider-color)}.fides-link-button{background:none;border:none;cursor:pointer;padding:0}.fides-external-link,.fides-primary-text-color{color:var(--fides-overlay-primary-color)}.fides-external-link{font-size:var(--fides-overlay-font-size-body-small);font-weight:500;margin-right:16px}.fides-info-box{background-color:var(--fides-overlay-neutral-background-color);border-radius:var(--fides-overlay-component-border-radius);margin:10px 0;padding:16px}.fides-info-box p{margin:0}.fides-tabs .tabpanel-container{overflow:hidden}.tabpanel-container section[hidden]{display:none}.fides-paging-buttons{display:flex;gap:8px;justify-content:center}.fides-paging-info{color:var(--fides-overlay-font-color-dark);font-size:var(--fides-overlay-font-size-body-small);font-weight:600;padding:8px}.fides-paging-previous-button{margin-right:8px}.fides-paging-next-button,.fides-paging-previous-button{background-color:transparent;border:none;cursor:pointer;padding:6px}.fides-paging-next-button:disabled,.fides-paging-previous-button:disabled{cursor:default}.fides-i18n-menu{position:relative}.fides-modal-footer .fides-i18n-menu{bottom:var(--fides-overlay-padding);left:var(--fides-overlay-padding);position:absolute}.fides-modal-footer .fides-button-group-i18n{min-height:var(--fides-overlay-modal-secondary-button-group-height)}button.fides-i18n-button{align-items:center;background-color:transparent;border:none;color:var(--fides-overlay-body-font-color);cursor:pointer;display:flex;flex-direction:row;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);gap:2px;height:var(--fides-overlay-font-size-body);text-transform:uppercase;white-space:nowrap}#fides-i18n-icon{animation-duration:var(--fides-overlay-language-loading-indicator-speed);animation-iteration-count:infinite;animation-timing-function:linear;transform-origin:50% 50%}div#fides-overlay-wrapper .fides-i18n-button{box-sizing:content-box}.fides-i18n-popover{background-color:var(--fides-overlay-background-dark-color);border-radius:var(--fides-overlay-component-border-radius);bottom:100%;display:flex;flex-direction:column;gap:1px;left:0;max-height:0;min-width:calc(var(--fides-base-font-size)*9);overflow:hidden;position:absolute;transition:max-height .2s ease-in-out}.fides-i18n-menu-open .fides-i18n-popover{border:1px solid var(--fides-overlay-primary-color);max-height:calc(var(--fides-base-font-size)*7);overflow:scroll}.fides-i18n-button:hover{background-color:var(--fides-overlay-hover-color);border-radius:var(--fides-overlay-language-button-border-radius)}.fides-i18n-menu-open .fides-i18n-caret{transform:rotate(180deg)}button.fides-banner-button.fides-menu-item{background:var(--fides-overlay-secondary-button-background-color);border:none;border-radius:0;color:var(--fides-overlay-secondary-button-text-color);margin:0;padding-left:calc(var(--fides-base-font-size)*1.5);text-align:left;width:100%}button.fides-banner-button.fides-menu-item[aria-checked=true]{background:var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-primary-button-text-color)}button.fides-banner-button.fides-menu-item[aria-checked=true]:before{content:"\\2713";display:inline-block;margin-left:calc(var(--fides-base-font-size)*-1);margin-right:calc(var(--fides-base-font-size)*.25)}button.fides-banner-button.fides-menu-item:not([aria-checked=true]):hover{background:var(--fides-overlay-secondary-button-background-hover-color)}.fides-sr-only{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}@media (min-width:1280px){div#fides-banner{width:60%}}@media (min-width:768px){div#fides-banner{border:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-component-border-radius);width:75%}div#fides-banner-container.fides-banner-bottom{bottom:var(--fides-overlay-banner-offset)}}@media (max-width:768px){div#fides-consent-content,div.fides-modal-content{width:100%!important}.fides-modal-button-group{flex-direction:column}button.fides-banner-button{margin:0 8px 12px 0}div#fides-banner{padding:24px;width:100%}div#fides-banner-description{margin-bottom:0}div#fides-banner-inner div#fides-button-group{align-items:flex-start;flex-direction:column;gap:12px;padding-top:24px}.fides-banner-button-group{flex-direction:column;width:100%}button.fides-banner-button{margin:0;width:100%}div#fides-banner-inner-container{max-height:50vh;overflow-y:auto;scrollbar-gutter:stable}div.fides-privacy-policy-link{width:100%}.fides-modal-footer{max-width:100%}.fides-banner-secondary-actions{gap:12px}.fides-banner-secondary-actions .fides-manage-preferences-button{order:0}.fides-banner-secondary-actions .fides-privacy-policy{order:1}.fides-banner-secondary-actions .fides-i18n-menu{order:2}.fides-banner-button-group.fides-button-group-i18n{min-height:68px}.fides-i18n-menu{bottom:var(--fides-overlay-padding);left:var(--fides-overlay-padding);position:absolute}}.fides-data-toggle-skeleton__container{align-items:center;border-bottom:1px solid var(--fides-overlay-row-divider-color);display:flex;justify-content:space-between;min-height:40px;padding-inline:12px;width:100%}.fides-notice-toggle .fides-skeleton__container:hover{background-color:unset;cursor:default}.fides-skeleton__component{animation-duration:1.4s;animation-iteration-count:infinite;animation-name:fides-skeleton-loading;animation-timing-function:ease;background:linear-gradient(90deg,var(--fides-overlay-skeleton-gradient-from-color) 25%,var(--fides-overlay-skeleton-gradient-to-color) 37%,var(--fides-overlay-skeleton-gradient-from-color) 63%);background-size:400% 100%}.fides-skeleton__text{border-radius:var(--fides-overlay-component-border-radius);height:var(--fides-overlay-line-height);width:60%}.fides-skeleton__switch{border-radius:100vw;height:24px;width:50px}@keyframes fides-skeleton-loading{0%{background-position:100% 50%}to{background-position:0 50%}}`;dl(ul);const Co=xe(void 0),fl=({children:e})=>{const[t,n]=Y(""),i=S(l=>{n(""),setTimeout(()=>{n(l)},0)},[]),o=S(()=>{n("")},[]),r=ve(()=>({message:t,announce:i,clear:o}),[t,i,o]);return F(()=>{const l=()=>{i("Preferences updated")},s=()=>{o()};return window.addEventListener("FidesUIShown",s),window.addEventListener("FidesUpdated",l),()=>{window.removeEventListener("FidesUIShown",s),window.removeEventListener("FidesUpdated",l)}},[i,o]),p(Co.Provider,{value:r,children:e})},Po=()=>{const e=Te(Co);if(!e)throw new Error("useLiveRegion must be used within a LiveRegionProvider");return e},pl=3e3,Ue=(e=!1,t=pl)=>{const[n,i]=Y(e),o=Ae(null),{clear:r}=Po(),l=S(()=>{o.current!==null&&(window.clearTimeout(o.current),o.current=null)},[]),s=S(()=>{l(),i(!1),r()},[l,r]),a=S(c=>{l(),i(!0);const u=c??t;o.current=window.setTimeout(()=>{i(!1),r(),o.current=null},u)},[l,t,r]);return F(()=>()=>l(),[l]),{isActive:n,activate:a,deactivate:s}},_l=({id:e})=>{const[t,n]=Y(!1),i=S(()=>n(!1),[]),o=S(()=>n(!0),[]),r=S(()=>{t?i():o()},[t,o,i]);return{isOpen:t,onOpen:o,onClose:i,onToggle:r,getButtonProps:()=>({"aria-expanded":t,"aria-controls":e,onClick:r}),getDisclosureProps:()=>({id:e,className:t?"fides-disclosure-visible":"fides-disclosure-hidden"})}},vl=(e,t)=>{const[n,i]=Y(null);return F(()=>{if(t)return()=>{};Fi(e).then(o=>{i(o)})},[e,t]),n},gl=()=>{const[e,t]=Y(!1);return F(()=>{t(!0)},[]),e};var bl=Object.defineProperty,xo=Object.getOwnPropertySymbols,hl=Object.prototype.hasOwnProperty,yl=Object.prototype.propertyIsEnumerable,No=(e,t,n)=>t in e?bl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ml=(e,t)=>{for(var n in t||(t={}))hl.call(t,n)&&No(e,n,t[n]);if(xo)for(var n of xo(t))yl.call(t,n)&&No(e,n,t[n]);return e},wl=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const El=({options:e,privacyExperience:t,privacyExperienceConfigHistoryId:n,privacyNoticeHistoryIds:i,userGeography:o,acknowledgeMode:r,tcfNoticesServed:l})=>{const s=S(a=>wl(void 0,null,function*(){var c;if(e.fidesDisableSaveApi||e.fidesDisableNoticesServedApi||!a.detail.extraDetails||a.detail.extraDetails.servingComponent===Le.BANNER&&!((c=t?.experience_config)!=null&&c.show_layer1_notices))return;const u=Oi.getServedNoticeHistoryId(),d=ml({served_notice_history_id:u,browser_identity:a.detail.identity,privacy_experience_config_history_id:n||"",user_geography:o,acknowledge_mode:r,privacy_notice_history_ids:i||[],serving_component:String(a.detail.extraDetails.servingComponent),property_id:t.property_id},l);ki({request:d,options:e})}),[e,t,n,o,r,i,l]);F(()=>(window.addEventListener("FidesUIShown",s),()=>{window.removeEventListener("FidesUIShown",s)}),[s])},Ao=xe({}),kl=({i18nInstance:e,children:t})=>{const[n,i]=Y(),[o,r]=Y(!1),l=S(a=>{e.activate(a),i(a)},[e,i]);F(()=>{const a=document.getElementById($r);o?a?.style.setProperty("animation-name","spin"):a?.style.removeProperty("animation-name")},[o]);const s=ve(()=>({i18n:e,currentLocale:n,setCurrentLocale:l,isLoading:o,setIsLoading:r}),[e,n,l,o]);return p(Ao.Provider,{value:s,children:t})},ce=()=>{const e=Te(Ao);if(!e||Object.keys(e).length===0)throw new Error("useI18n must be used within a I18nProvider");return e};var Ol=Object.defineProperty,Cl=Object.defineProperties,Pl=Object.getOwnPropertyDescriptors,To=Object.getOwnPropertySymbols,xl=Object.prototype.hasOwnProperty,Nl=Object.prototype.propertyIsEnumerable,So=(e,t,n)=>t in e?Ol(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,an=(e,t)=>{for(var n in t||(t={}))xl.call(t,n)&&So(e,n,t[n]);if(To)for(var n of To(t))Nl.call(t,n)&&So(e,n,t[n]);return e},Al=(e,t)=>Cl(e,Pl(t));const Io=xe({}),Tl=({children:e})=>{const t=Ae(),n=Ae(),i=S(s=>{t.current=s},[]),o=S(s=>{n.current=s},[]),r=S((s,a,c)=>{var u;re(s,a,Al(an({},c),{servingComponent:(u=c?.servingComponent)!=null?u:n.current,trigger:an(an({},c?.trigger),t.current)})),i(void 0)},[i]),l=ve(()=>({triggerRef:t,setTrigger:i,servingComponentRef:n,setServingComponent:o,dispatchFidesEventAndClearTrigger:r}),[i,r,o]);return p(Io.Provider,{value:l,children:e})},ge=()=>{const e=Te(Io);if(!e||Object.keys(e).length===0)throw new Error("useEvent must be used within a EventProvider");return e},Lo=xe({}),Sl=({initializedFides:e,children:t})=>{const[n,i]=Y(e),o=ve(()=>({fidesGlobal:n,setFidesGlobal:i}),[n,i]);return p(Lo.Provider,{value:o,children:t})},Il=()=>{const e=Te(Lo);if(!e||Object.keys(e).length===0)throw new Error("useFidesGlobal must be used within a FidesGlobalProvider");return e},Fo=({onClick:e,ariaLabel:t,hidden:n=!1})=>p("button",{type:"button","aria-label":t,className:"fides-close-button",onClick:e,style:{visibility:n?"hidden":"visible"},children:p("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",children:p("path",{fill:"#2D3748",d:"m8 7.057 3.3-3.3.943.943-3.3 3.3 3.3 3.3-.943.943-3.3-3.3-3.3 3.3-.943-.943 3.3-3.3-3.3-3.3.943-.943 3.3 3.3Z"})})}),Ll=xe({}),sn="__VENDOR_COUNT_LINK__",$o=(e,t)=>t?p("span",{dangerouslySetInnerHTML:{__html:e.trim()}}):Ns(e).trim(),jo=({description:e,onVendorPageClick:t,allowHTMLDescription:n=!1})=>{const[i,o]=Y(),{setTrigger:r}=ge();let l=0;const s=Te(Ll);return s?.vendorCount&&(l=s.vendorCount),F(()=>{if(e)if(e.includes(sn)&&t){const a=e.split(sn);for(let u=1;u<a.length;u+=2)a.splice(u,0,p(se,{children:[" ",p("button",{type:"button",className:"fides-link-button fides-vendor-count",onClick:()=>{t&&(r({type:X.LINK,label:sn}),t())},children:l})," "]}));const c=a.map(u=>typeof u=="string"?$o(u,n):u);o(c)}else o([$o(e,n)])},[e,t]),e?p("div",{children:i}):null},Do=({status:e})=>{const{i18n:t}=ce(),n=t.t("static.gpc"),i=e.valueOf();let o="";if(e===oe.APPLIED)o=t.t("static.gpc.status.applied");else if(e===oe.OVERRIDDEN)o=t.t("static.gpc.status.overridden");else if(e===oe.NONE)return null;return p("span",{className:"fides-gpc-label",children:[n," ",p("span",{className:`fides-gpc-badge fides-gpc-badge-${i}`,children:o})]})};var Fl=Object.defineProperty,$l=Object.defineProperties,jl=Object.getOwnPropertyDescriptors,Ro=Object.getOwnPropertySymbols,Dl=Object.prototype.hasOwnProperty,Rl=Object.prototype.propertyIsEnumerable,zo=(e,t,n)=>t in e?Fl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ln=(e,t)=>{for(var n in t||(t={}))Dl.call(t,n)&&zo(e,n,t[n]);if(Ro)for(var n of Ro(t))Rl.call(t,n)&&zo(e,n,t[n]);return e},cn=(e,t)=>$l(e,jl(t));const zl=({attributes:e,dismissable:t,onOpen:n,onClose:i,bannerIsOpen:o,children:r,onVendorPageClick:l,renderButtonGroup:s,className:a,isEmbedded:c})=>{var u,d,h,_,g,f,v,y,m,w,k;const{container:E,dialog:N,title:j,closeButton:O}=e,{i18n:x}=ce(),A=Pe().globalPrivacyControl,{setTrigger:I}=ge();F(()=>{o&&n()},[o,n]);const Z=he(x,"exp.banner_title")?x.t("exp.banner_title"):x.t("exp.title"),q=he(x,"exp.banner_description")?x.t("exp.banner_description"):x.t("exp.description"),G=["fides-banner","fides-banner-bottom",!o&&"fides-banner-hidden",c&&"fides-embedded",a].filter(B=>typeof B=="string").join(" ");let Q=[];return(h=(d=(u=window.Fides)==null?void 0:u.experience)==null?void 0:d.experience_config)!=null&&h.show_layer1_notices&&((g=(_=window.Fides)==null?void 0:_.experience)!=null&&g.privacy_notices)&&(Q=(v=(f=window.Fides)==null?void 0:f.experience)==null?void 0:v.privacy_notices),p("div",cn(ln({className:G},E),{id:`${E.id}-container`,children:p("div",{id:E.id,children:p("div",cn(ln({},N),{id:`${E.id}-inner`,children:[p(Fo,{ariaLabel:"Close banner",onClick:()=>{I({type:X.BUTTON,label:"Close banner"}),O.onClick(),i()},hidden:((m=(y=window.Fides)==null?void 0:y.options)==null?void 0:m.preventDismissal)||!t}),p("div",{id:`${E.id}-inner-container`,children:[p("div",{className:"fides-banner__col",children:[p("div",{id:"fides-banner-heading",children:[p("div",cn(ln({},j),{className:"fides-banner-title",children:Z})),A&&p(Do,{status:oe.APPLIED})]}),p("div",{id:`${E.id}-description`,className:"fides-banner-description fides-banner__content",children:[p(jo,{description:q,onVendorPageClick:l,allowHTMLDescription:(k=(w=window.Fides)==null?void 0:w.options)==null?void 0:k.allowHTMLDescription}),!!Q?.length&&p("div",{id:`${E.id}-notices`,className:"fides-banner-notices",children:Q.map((B,Ie)=>p("span",{children:[p("strong",{children:B.name}),Ie<Q.length-1&&", "]},B.id))})]})]}),r]}),s()]}))})}))},Ml=e=>{const[t,n]=Y(!1);return F(()=>{const i=window.matchMedia(e);n(i.matches);function o(r){n(r.matches)}return i.addEventListener?i.addEventListener("change",o):i.addListener(o),()=>{i.removeEventListener?i.removeEventListener("change",o):i.removeListener(o)}},[e]),t},Ul=()=>p("svg",{xmlns:"http://www.w3.org/2000/svg",width:"31",height:"20",fill:"currentColor",className:"ethyca-logo",role:"img","aria-label":"Ethyca",children:p("path",{d:"M11.5602 0H8.70311V7.9999H11.5602V0ZM23.0026 12.0001H20.1455V20H23.0026V12.0001ZM14.1258 20H17.5799L12.1315 11.9774V17.0631L14.1258 20ZM8.13179 17.0626V11.9769L2.68588 19.9995H6.14003L8.13129 17.0626H8.13179ZM23.5744 2.93688V8.02263L29.0198 0H25.5682L23.5739 2.93688H23.5744ZM19.5742 2.93688L17.5799 0H14.1258L19.5742 8.02263V2.93688ZM19.5717 8.57121H12.132V11.4283H19.5717V8.57121ZM31 8.57121H23.5603V11.4283H31V8.57121ZM8.13179 8.57121H0.691589V11.4283H8.13179V8.57121Z"})}),Gl=()=>p("div",{className:"fides-brand",children:p("a",{href:"https://ethyca.com/",target:"_blank",rel:"noopener noreferrer",className:"fides-brand-link",children:["Powered by",p(Ul,{})]})}),Bl=()=>p("svg",{xmlns:"http://www.w3.org/2000/svg",id:"icon",fill:"currentColor",viewBox:"0 0 32 32",children:[p("path",{d:"M16 2a14 14 0 1 0 14 14A14 14 0 0 0 16 2m-2 19.59-5-5L10.59 15 14 18.41 21.41 11l1.596 1.586Z"}),p("path",{id:"inner-path",d:"m14 21.591-5-5L10.591 15 14 18.409 21.41 11l1.595 1.585z",fill:"none"}),p("path",{id:"_Transparent_Rectangle_",d:"M0 0h32v32H0z",fill:"none"})]}),Vl=()=>p("div",{className:"fides-spinner"}),Se=({buttonType:e,label:t,id:n,onClick:i,className:o="",disabled:r,loading:l,complete:s})=>{const{isActive:a,activate:c,deactivate:u}=Ue();return F(()=>{s?c():u()},[c,s,u]),p("button",{type:"button",id:n,className:`fides-banner-button fides-banner-button-${e.valueOf()} ${o}`,onClick:i,disabled:r||l,style:{cursor:r||l?"not-allowed":"pointer"},children:p("span",{style:{display:"flex",alignItems:"center",gap:"0.5em"},children:[t||"",l&&p(Vl,{}),!l&&a&&p("span",{"aria-hidden":"true",style:{width:"1em",height:"1em"},children:p(Bl,{})})]})})},Hl=xe({});var Kl=Object.defineProperty,Yl=Object.defineProperties,ql=Object.getOwnPropertyDescriptors,Et=Object.getOwnPropertySymbols,Mo=Object.prototype.hasOwnProperty,Uo=Object.prototype.propertyIsEnumerable,Go=(e,t,n)=>t in e?Kl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Wl=(e,t)=>{for(var n in t||(t={}))Mo.call(t,n)&&Go(e,n,t[n]);if(Et)for(var n of Et(t))Uo.call(t,n)&&Go(e,n,t[n]);return e},Zl=(e,t)=>Yl(e,ql(t)),Xl=(e,t)=>{var n={};for(var i in e)Mo.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(e!=null&&Et)for(var i of Et(e))t.indexOf(i)<0&&Uo.call(e,i)&&(n[i]=e[i]);return n};const Jl=e=>{var t=e,{isActive:n,className:i,children:o}=t,r=Xl(t,["isActive","className","children"]);return p("button",Zl(Wl({type:"button",role:"menuitemradio","aria-checked":n},r),{className:`fides-banner-button fides-menu-item ${i||""}`,children:o}))};var Ql=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});const ec=({availableLocales:e,options:t,isTCF:n})=>{const[i,o]=Y(!1),{i18n:r,currentLocale:l,setCurrentLocale:s,setIsLoading:a}=ce(),c=Te(Hl),u=Ae(null),d=Ae(null),h=()=>{o(!i)},_=f=>Ql(void 0,null,function*(){var v;if(f!==r.locale)if(n){a(!0);const y=yield yi(t.fidesApiUrl,[f]);a(!1),y&&Object.keys(y).length?(c.setGvlTranslations(y[f]),li(r,y,e||[K]),s(f)):console.error(`Unable to load GVL translation for ${f}`)}else s(f);o(!1),(v=u.current)==null||v.focus()}),g=S(f=>{var v,y,m;if(!i)return;const w=((v=d.current)==null?void 0:v.querySelectorAll(".fides-menu-item"))||[],{key:k}=f;if(k==="Escape"||k==="Tab"){o(!1),(y=u.current)==null||y.focus();return}if(k==="ArrowUp"||k==="ArrowDown"){f.preventDefault();const E=Array.from(w).findIndex(j=>j===document.activeElement);let N=E;k==="ArrowDown"?N=E===w.length-1?0:E+1:k==="ArrowUp"&&(N=E===0?w.length-1:E-1),(m=w[N])==null||m.focus()}},[i]);return F(()=>(document.addEventListener("keydown",g),()=>{document.removeEventListener("keydown",g)}),[g]),F(()=>{var f,v;if(i){const y=(f=d.current)==null?void 0:f.querySelectorAll(".fides-menu-item");(v=y?.[0])==null||v.focus()}},[i]),F(()=>{const f=v=>{i&&d.current&&!d.current.contains(v.target)&&u.current&&!u.current.contains(v.target)&&o(!1)};return document.addEventListener("mousedown",f),()=>{document.removeEventListener("mousedown",f)}},[i]),p("div",{className:`fides-i18n-menu ${i?"fides-i18n-menu-open":""}`,ref:d,children:[p("div",{role:"menu",className:"fides-i18n-popover",id:"fides-i18n-popover",children:r.availableLanguages.map(f=>p(Jl,{id:l===f.locale?"fidesActiveMenuItem":void 0,onClick:()=>_(f.locale),isActive:l===f.locale,title:f.label_en,"aria-label":f.label_en,tabIndex:-1,children:f.label_original},f.locale))}),p("button",{type:"button",className:"fides-i18n-button",onClick:h,ref:u,"aria-haspopup":"true","aria-expanded":i,"aria-controls":"fides-i18n-popover","aria-label":`Select language, current language is ${l}`,children:[p("svg",{xmlns:"http://www.w3.org/2000/svg",height:"100%",viewBox:"0 0 36 36",fill:"currentColor",id:"fides-i18n-icon",children:p("path",{fill:"currentColor",d:"M18 32.625c.52 0 1.898-.506 3.347-3.403.619-1.245 1.153-2.756 1.547-4.472h-9.788c.394 1.716.928 3.227 1.547 4.472 1.449 2.897 2.827 3.403 3.347 3.403m-5.45-11.25h10.9a32.5 32.5 0 0 0 0-6.75h-10.9a32.5 32.5 0 0 0 0 6.75m.556-10.125h9.788c-.394-1.716-.928-3.227-1.547-4.472C19.898 3.881 18.52 3.375 18 3.375s-1.898.506-3.347 3.403c-.619 1.245-1.153 2.756-1.547 4.472m13.732 3.375A35 35 0 0 1 26.993 18c0 1.153-.056 2.285-.155 3.375h5.393c.253-1.083.394-2.215.394-3.375s-.134-2.292-.394-3.375h-5.393m4.135-3.375a14.7 14.7 0 0 0-6.92-6.567c.992 1.8 1.78 4.043 2.293 6.567h4.634zm-21.326 0c.513-2.524 1.3-4.76 2.292-6.567A14.7 14.7 0 0 0 5.02 11.25h4.634zm-5.878 3.375A14.8 14.8 0 0 0 3.375 18c0 1.16.134 2.292.394 3.375h5.393A35 35 0 0 1 9.007 18c0-1.153.056-2.285.155-3.375zm20.285 16.692a14.7 14.7 0 0 0 6.919-6.567h-4.627c-.513 2.524-1.3 4.76-2.292 6.567m-12.108 0c-.991-1.8-1.779-4.043-2.292-6.567H5.02a14.7 14.7 0 0 0 6.92 6.567zM18 36a18 18 0 1 1 0-36 18 18 0 0 1 0 36"})}),l,p("svg",{className:"fides-i18n-caret",xmlns:"http://www.w3.org/2000/svg",height:"100%",fill:"currentColor",viewBox:"0 0 24 24",children:p("path",{d:"M12 13.172L16.95 8.22198L18.364 9.63598L12 16L5.63599 9.63598L7.04999 8.22198L12 13.172Z"})})]})]})},tc=()=>{const{i18n:e}=ce();if(!he(e,"exp.privacy_policy_link_label")||!he(e,"exp.privacy_policy_url"))return null;const t=e.t("exp.privacy_policy_link_label"),n=e.t("exp.privacy_policy_url");return p("div",{id:"fides-privacy-policy-link",style:{display:"flex",alignItems:"center",justifyContent:"center"},children:p("a",{href:n,rel:"noopener noreferrer",target:"_blank",className:"fides-privacy-policy",children:t})})},nc=({availableLocales:e=[K],onManagePreferencesClick:t,renderFirstButton:n,onAcceptAll:i,onRejectAll:o,hideOptInOut:r,hideRejectAll:l,options:s,isInModal:a,isTCF:c,isGVLLoading:u})=>{var d;const{i18n:h}=ce(),{setTrigger:_}=ge(),g=Ml("(max-width: 768px)"),{isActive:f,activate:v}=Ue(!1),{isActive:y,activate:m}=Ue(!1),w=((d=h.availableLanguages)==null?void 0:d.length)>1,k=he(h,"exp.privacy_policy_link_label")&&he(h,"exp.privacy_policy_url"),E=a&&s.showFidesBrandLink;return p("div",{id:"fides-button-group",children:[p("div",{className:a?"fides-modal-button-group fides-modal-primary-actions":"fides-banner-button-group fides-banner-primary-actions",children:[!!n&&n(),!r&&p(se,{children:[c&&!!t&&p(Se,{buttonType:ee.SECONDARY,label:h.t("exp.privacy_preferences_link_label"),onClick:()=>{_({type:X.BUTTON,label:h.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),!l&&p(Se,{buttonType:ee.PRIMARY,label:h.t("exp.reject_button_label"),onClick:()=>{_({type:X.BUTTON,label:h.t("exp.reject_button_label")}),o(),m()},className:"fides-reject-all-button",id:"fides-reject-all-button",loading:u,complete:y}),p(Se,{buttonType:ee.PRIMARY,label:h.t("exp.accept_button_label"),onClick:()=>{_({type:X.BUTTON,label:h.t("exp.accept_button_label")}),i(),v()},className:"fides-accept-all-button",id:"fides-accept-all-button",loading:u,complete:f})]})]}),p("div",{className:`${a?"fides-modal-button-group fides-modal-secondary-actions":"fides-banner-button-group fides-banner-secondary-actions"}${w?" fides-button-group-i18n":""}${k?" fides-button-group-privacy-policy":""}${E?" fides-button-group-brand":""}`,children:[w&&p(ec,{availableLocales:e,options:s,isTCF:!!c}),!c&&!!t&&p(Se,{buttonType:g?ee.SECONDARY:ee.TERTIARY,label:h.t("exp.privacy_preferences_link_label"),onClick:()=>{_({type:X.BUTTON,label:h.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),k&&p(tc,{}),E&&p(Gl,{})]})]})},Bo=({experience:e,onAcceptAll:t,onRejectAll:n,onSave:i,onManagePreferencesClick:o,enabledKeys:r,isInModal:l,isAcknowledge:s,hideOptInOut:a=!1,options:c})=>{const{isActive:u,activate:d}=Ue(!1),{isActive:h,activate:_}=Ue(!1),{i18n:g}=ce(),{setTrigger:f}=ge();if(!e.experience_config||!e.privacy_notices)return null;const{privacy_notices:v}=e,y=()=>{i(L.ACKNOWLEDGE,v.map(k=>k.notice_key))},m=()=>{i(L.SAVE,r)},w=()=>s?p(Se,{buttonType:ee.PRIMARY,label:g.t("exp.acknowledge_button_label"),onClick:()=>{f({type:X.BUTTON,label:g.t("exp.acknowledge_button_label")}),y(),d()},className:"fides-acknowledge-button",complete:u}):l?p(Se,{buttonType:a?ee.PRIMARY:ee.SECONDARY,label:g.t("exp.save_button_label"),onClick:()=>{f({type:X.BUTTON,label:g.t("exp.save_button_label")}),m(),_()},className:"fides-save-button",id:"fides-save-button",complete:h}):null;return p(nc,{availableLocales:e.available_locales,onManagePreferencesClick:o,onAcceptAll:t,onRejectAll:n,isInModal:l,renderFirstButton:w,hideOptInOut:a,options:c})};var ic=['a[href]:not([tabindex^="-"])','area[href]:not([tabindex^="-"])','input:not([type="hidden"]):not([type="radio"]):not([disabled]):not([tabindex^="-"])','input[type="radio"]:not([disabled]):not([tabindex^="-"])','select:not([disabled]):not([tabindex^="-"])','textarea:not([disabled]):not([tabindex^="-"])','button:not([disabled]):not([tabindex^="-"])','iframe:not([tabindex^="-"])','audio[controls]:not([tabindex^="-"])','video[controls]:not([tabindex^="-"])','[contenteditable]:not([tabindex^="-"])','[tabindex]:not([tabindex^="-"])'],oc="Tab",rc="Escape";function J(e){this._show=this.show.bind(this),this._hide=this.hide.bind(this),this._maintainFocus=this._maintainFocus.bind(this),this._bindKeypress=this._bindKeypress.bind(this),this.$el=e,this.shown=!1,this._id=this.$el.getAttribute("data-a11y-dialog")||this.$el.id,this._previouslyFocused=null,this._listeners={},this.create()}J.prototype.create=function(){this.$el.setAttribute("aria-hidden",!0),this.$el.setAttribute("aria-modal",!0),this.$el.setAttribute("tabindex",-1),this.$el.hasAttribute("role")||this.$el.setAttribute("role","dialog"),this._openers=Ge('[data-a11y-dialog-show="'+this._id+'"]'),this._openers.forEach(function(t){t.addEventListener("click",this._show)}.bind(this));const e=this.$el;return this._closers=Ge("[data-a11y-dialog-hide]",this.$el).filter(function(t){return t.closest('[aria-modal="true"], [data-a11y-dialog]')===e}).concat(Ge('[data-a11y-dialog-hide="'+this._id+'"]')),this._closers.forEach(function(t){t.addEventListener("click",this._hide)}.bind(this)),this._fire("create"),this},J.prototype.show=function(e){if(this.shown)return this;this._previouslyFocused=document.activeElement;const t=e&&e.target?e.target:null;return t&&Object.is(this._previouslyFocused,document.body)&&(this._previouslyFocused=t),this.$el.removeAttribute("aria-hidden"),this.shown=!0,Vo(this.$el),document.body.addEventListener("focus",this._maintainFocus,!0),document.addEventListener("keydown",this._bindKeypress),this._fire("show",e),this},J.prototype.hide=function(e){return this.shown?(this.shown=!1,this.$el.setAttribute("aria-hidden","true"),this._previouslyFocused&&this._previouslyFocused.focus&&this._previouslyFocused.focus(),document.body.removeEventListener("focus",this._maintainFocus,!0),document.removeEventListener("keydown",this._bindKeypress),this._fire("hide",e),this):this},J.prototype.destroy=function(){return this.hide(),this._openers.forEach(function(e){e.removeEventListener("click",this._show)}.bind(this)),this._closers.forEach(function(e){e.removeEventListener("click",this._hide)}.bind(this)),this._fire("destroy"),this._listeners={},this},J.prototype.on=function(e,t){return typeof this._listeners[e]>"u"&&(this._listeners[e]=[]),this._listeners[e].push(t),this},J.prototype.off=function(e,t){var n=(this._listeners[e]||[]).indexOf(t);return n>-1&&this._listeners[e].splice(n,1),this},J.prototype._fire=function(e,t){var n=this._listeners[e]||[],i=new CustomEvent(e,{detail:t});this.$el.dispatchEvent(i),n.forEach(function(o){o(this.$el,t)}.bind(this))},J.prototype._bindKeypress=function(e){const t=document.activeElement;t&&t.closest('[aria-modal="true"]')!==this.$el||(this.shown&&e.key===rc&&this.$el.getAttribute("role")!=="alertdialog"&&(e.preventDefault(),this.hide(e)),this.shown&&e.key===oc&&lc(this.$el,e))},J.prototype._maintainFocus=function(e){this.shown&&!e.target.closest('[aria-modal="true"]')&&!e.target.closest("[data-a11y-dialog-ignore-focus-trap]")&&Vo(this.$el)};function ac(e){return Array.prototype.slice.call(e)}function Ge(e,t){return ac((t||document).querySelectorAll(e))}function Vo(e){var t=e.querySelector("[autofocus]")||e;t.focus()}function sc(e){return Ge(ic.join(","),e).filter(function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)})}function lc(e,t){var n=sc(e),i=n.indexOf(document.activeElement);t.shiftKey&&i===0?(n[n.length-1].focus(),t.preventDefault()):!t.shiftKey&&i===n.length-1&&(n[0].focus(),t.preventDefault())}function dn(){Ge("[data-a11y-dialog]").forEach(function(e){new J(e)})}typeof document<"u"&&(document.readyState==="loading"?document.addEventListener("DOMContentLoaded",dn):window.requestAnimationFrame?window.requestAnimationFrame(dn):window.setTimeout(dn,16));const cc=()=>{const[e,t]=Y(null),n=S(i=>{if(i!==null){const o=new J(i);t(o)}},[]);return{instance:e,container:n}},Ho=({id:e,onClose:t,ariaHidden:n=!0})=>{const{instance:i,container:o}=cc(),r=`${e}-title`,l=S(()=>{i&&i.hide(),t&&t()},[t,i]);return F(()=>()=>{i&&i.destroy()},[i]),{instance:i,attributes:{container:{id:e,ref:o,role:"alertdialog","aria-hidden":n,"aria-labelledby":r},dialog:{role:"document"},closeButton:{type:"button",onClick:l},title:{role:"heading","aria-level":2,id:r}}}},dc=()=>p("svg",{xmlns:"http://www.w3.org/2000/svg",width:"18",height:"18",fill:"currentColor",children:p("path",{d:"M9 12.05a.68.68 0 0 0-.68.7c0 .39.32.7.68.7.39 0 .68-.31.68-.7a.66.66 0 0 0-.68-.7Zm0-1.18c.26 0 .44-.2.44-.46V6.19c0-.26-.2-.47-.44-.47a.49.49 0 0 0-.47.47v4.22c0 .25.21.46.47.46Zm7.27 2.27-5.85-9.9c-.3-.5-.83-.8-1.42-.8-.6 0-1.12.3-1.42.8l-5.86 9.9c-.3.5-.3 1.1-.01 1.6.3.51.83.82 1.43.82h11.72c.6 0 1.13-.3 1.43-.82.29-.5.28-1.1-.02-1.6Zm-.82 1.1c-.1.25-.33.38-.62.38H3.14a.7.7 0 0 1-.61-.35.64.64 0 0 1 0-.65l5.86-9.9A.7.7 0 0 1 9 3.37a.7.7 0 0 1 .61.35l5.86 9.9c.1.2.12.44-.02.63Z"})}),uc=({title:e,description:t})=>p("div",{className:"fides-gpc-banner",children:[p("div",{className:"fides-gpc-warning",children:p(dc,{})}),p("div",{children:[p("p",{className:"fides-gpc-header",children:e}),p("p",{children:t})]})]});var fc=Object.defineProperty,pc=Object.defineProperties,_c=Object.getOwnPropertyDescriptors,Ko=Object.getOwnPropertySymbols,vc=Object.prototype.hasOwnProperty,gc=Object.prototype.propertyIsEnumerable,Yo=(e,t,n)=>t in e?fc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,bc=(e,t)=>{for(var n in t||(t={}))vc.call(t,n)&&Yo(e,n,t[n]);if(Ko)for(var n of Ko(t))gc.call(t,n)&&Yo(e,n,t[n]);return e},hc=(e,t)=>pc(e,_c(t));const qo=({titleProps:e,className:t,renderModalFooter:n,children:i,onVendorPageClick:o})=>{var r,l;const{i18n:s}=ce(),a=s.t("exp.title"),c=s.t("exp.description"),u=Pe().globalPrivacyControl,d=s.t("static.gpc.title"),h=s.t("static.gpc.description");return p(se,{children:[p("div",{id:"fides-consent-content",className:t,children:p("div",{className:"fides-modal-body",children:[p("div",hc(bc({},e),{className:"fides-modal-title",children:a})),p("p",{className:"fides-modal-description",children:p(jo,{onVendorPageClick:o,description:c,allowHTMLDescription:(l=(r=window.Fides)==null?void 0:r.options)==null?void 0:l.allowHTMLDescription})}),u&&p(uc,{title:d,description:h}),i]})}),p("div",{className:"fides-modal-footer",children:n()})]})};var yc=Object.defineProperty,mc=Object.defineProperties,wc=Object.getOwnPropertyDescriptors,Wo=Object.getOwnPropertySymbols,Ec=Object.prototype.hasOwnProperty,kc=Object.prototype.propertyIsEnumerable,Zo=(e,t,n)=>t in e?yc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Xo=(e,t)=>{for(var n in t||(t={}))Ec.call(t,n)&&Zo(e,n,t[n]);if(Wo)for(var n of Wo(t))kc.call(t,n)&&Zo(e,n,t[n]);return e},Jo=(e,t)=>mc(e,wc(t));const Oc=({attributes:e,children:t,dismissable:n,onVendorPageClick:i,renderModalFooter:o})=>{const{container:r,dialog:l,title:s,closeButton:a}=e,{setTrigger:c}=ge();return p("div",Jo(Xo({},r),{className:"fides-modal-container",children:[p("div",{className:"fides-modal-overlay"}),p("div",Jo(Xo({},l),{className:"fides-modal-content",children:[p("div",{className:"fides-modal-header",children:[p("div",{}),p(Fo,{ariaLabel:"Close modal",onClick:()=>{c({type:"button",label:"Close modal"}),a.onClick()},hidden:window.Fides.options.preventDismissal||!n})]}),p(qo,{titleProps:s,renderModalFooter:o,onVendorPageClick:i,children:t})]}))]}))},Cc=()=>{const{message:e}=Po();return p("div",{role:"status","aria-live":"polite","aria-relevant":"additions",className:"fides-sr-only",id:"fides-overlay-live-region",children:e})},Pc=({options:e,experience:t,cookie:n,savedConsent:i,onOpen:o,onDismiss:r,renderBanner:l,renderModalContent:s,renderModalFooter:a,onVendorPageClick:c,isUiBlocking:u})=>{const{setServingComponent:d,dispatchFidesEventAndClearTrigger:h}=ge(),_=100,g=gl(),f=e.modalLinkId||"fides-modal-link",v=!t||!!e.fidesEmbed||e.modalLinkId==="",y=vl(f,v),m=Ae(null),[w,k]=Y(null);F(()=>{w===null&&k(!it(t,n,i,e))},[w]);const[E,N]=Y(e.fidesEmbed?it(t,n,i,e):!1);F(()=>(u&&E?xs():Li(),()=>{Li()}),[u,E]);const j=S(({saved:G=!1})=>{G||r(),h("FidesModalClosed",n,{saved:G}),d(void 0)},[h,n,r,d]),{instance:O,attributes:x}=Ho({id:"fides-modal",onClose:()=>{j({saved:!1})}});F(()=>{O&&O.on("show",()=>{document.documentElement.style.overflowY="hidden"}).on("hide",()=>{document.documentElement.style.overflowY=""})},[O]);const{attributes:A}=Ho({id:"fides-banner",ariaHidden:!E&&!e.fidesEmbed,onClose:()=>{N(!1)}}),I=S((G=be.FIDES)=>{e.fidesEmbed?N(!1):O&&(N(!1),O.show(),o(G))},[O,o,e]),Z=S(()=>{O&&!e.fidesEmbed&&(O.hide(),j({saved:!0}))},[O,j,e.fidesEmbed]);F(()=>{e.fidesEmbed&&!E&&o()},[e,o,E]),F(()=>{const G=setTimeout(()=>{w||N(!0)},_);return()=>clearTimeout(G)},[w,N]),F(()=>(t&&!e.fidesEmbed&&(window.Fides.showModal=()=>{I(be.EXTERNAL)}),()=>{window.Fides.showModal=$t}),[t,I,e.fidesEmbed]),F(()=>{e.fidesModalDisplay==="immediate"&&I()},[e.fidesModalDisplay,I]),F(()=>(document.body.classList.add("fides-overlay-modal-link-shown"),v||y&&(m.current=y,m.current.addEventListener("click",window.Fides.showModal),m.current.classList.add("fides-modal-link-shown")),()=>{m.current&&m.current.removeEventListener("click",window.Fides.showModal)}),[y,v,f]);const q=()=>{I()};return!g||!t.experience_config?null:p("div",{id:Fr,tabIndex:-1,children:[!w&&E&&u&&p("div",{className:"fides-modal-overlay"}),e.fidesEmbed?E||!s||!a?null:p(qo,{titleProps:x.title,renderModalFooter:()=>a({onClose:Z,isMobile:!1}),onVendorPageClick:c,children:s()}):p(Oc,{attributes:x,dismissable:t.experience_config.dismissable,onVendorPageClick:c,renderModalFooter:()=>a?a({onClose:Z,isMobile:!1}):null,children:s&&s()}),!w&&l({attributes:A,isOpen:E,isEmbedded:e.fidesEmbed,onClose:()=>{N(!1)},onManagePreferencesClick:q}),p(Cc,{})]})},xc=({label:e,name:t,id:n,checked:i,onChange:o,disabled:r,onLabel:l,offLabel:s})=>{const{setTrigger:a}=ge(),c=i?l:s;return p("div",{className:"fides-toggle",children:[p("input",{type:"checkbox",name:t,"aria-label":e,className:"fides-toggle-input",onChange:()=>{a({type:X.TOGGLE,label:e,checked:!i}),o(n)},checked:i,role:"switch",disabled:r}),p("span",{className:"fides-toggle-display",children:c})]})};var Nc=Object.defineProperty,Ac=Object.defineProperties,Tc=Object.getOwnPropertyDescriptors,Qo=Object.getOwnPropertySymbols,Sc=Object.prototype.hasOwnProperty,Ic=Object.prototype.propertyIsEnumerable,er=(e,t,n)=>t in e?Nc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,tr=(e,t)=>{for(var n in t||(t={}))Sc.call(t,n)&&er(e,n,t[n]);if(Qo)for(var n of Qo(t))Ic.call(t,n)&&er(e,n,t[n]);return e},nr=(e,t)=>Ac(e,Tc(t));const Lc=({noticeKey:e,title:t,checked:n,onToggle:i,children:o,badge:r,gpcBadge:l,disabled:s,onLabel:a,offLabel:c,isHeader:u,includeToggle:d=!0})=>{const{isOpen:h,getButtonProps:_,getDisclosureProps:g,onToggle:f}=_l({id:e}),v=(w,k)=>{(w.code==="Space"||w.code==="Enter")&&(w.preventDefault(),k&&f())},y=o!=null,m=y?_():{};return p("div",{className:h&&y?"fides-notice-toggle fides-notice-toggle-expanded":"fides-notice-toggle",children:[p("div",{className:"fides-notice-toggle-title",children:[p("span",nr(tr({role:"button",tabIndex:0,onKeyDown:w=>v(w,y)},m),{className:u?"fides-notice-toggle-trigger fides-notice-toggle-header":"fides-notice-toggle-trigger",children:p("span",{className:"fides-flex-center fides-justify-space-between",children:t})})),p("span",{className:"fides-notice-toggle-controls",children:[l,r?p("span",{className:"fides-notice-badge",children:r}):null,d?p(xc,{label:t,name:e,id:e,checked:n,onChange:i,disabled:s,onLabel:a,offLabel:c}):null]})]},e),o?p("div",nr(tr({},g()),{children:o})):null]})},Fc=()=>p("hr",{className:"fides-divider"}),$c=({noticeToggles:e,enabledNoticeKeys:t,onChange:n})=>{const{i18n:i}=ce(),o=s=>{const a={key:s,type:"notice"};t.indexOf(s)===-1?n([...t,s],a):n(t.filter(c=>c!==s),a)};let r,l;return ci(i)===K&&(r="On",l="Off"),p("div",{children:e.map((s,a)=>{const{noticeKey:c,title:u,description:d,checked:h,disabled:_,gpcStatus:g}=s,f=a===e.length-1;return p("div",{children:[p(Lc,{noticeKey:c,title:u,checked:h,onToggle:o,gpcBadge:p(Do,{status:g}),disabled:_,onLabel:r,offLabel:l,children:d}),f?null:p(Fc,{})]},c)})})};var jc=Object.defineProperty,Dc=Object.defineProperties,Rc=Object.getOwnPropertyDescriptors,ir=Object.getOwnPropertySymbols,zc=Object.prototype.hasOwnProperty,Mc=Object.prototype.propertyIsEnumerable,or=(e,t,n)=>t in e?jc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Uc=(e,t)=>{for(var n in t||(t={}))zc.call(t,n)&&or(e,n,t[n]);if(ir)for(var n of ir(t))Mc.call(t,n)&&or(e,n,t[n]);return e},Gc=(e,t)=>Dc(e,Rc(t));const Bc=()=>{var e;const{fidesGlobal:t,setFidesGlobal:n}=Il(),{fidesRegionString:i,cookie:o,options:r,saved_consent:l}=t,s=t.experience,{i18n:a,currentLocale:c,setCurrentLocale:u}=ce(),{triggerRef:d,setTrigger:h,servingComponentRef:_,setServingComponent:g,dispatchFidesEventAndClearTrigger:f}=ge(),v=Oe(),y=P=>s.privacy_notices?s.privacy_notices.map(T=>On(T,P||l||v?.consent)?T.notice_key:""):[];F(()=>{!c&&a.locale&&u(a.locale)},[c,a.locale,u]);const m=ve(()=>{if(s.experience_config){const P=st(c,a.getDefaultLocale(),s.experience_config);return P?.privacy_experience_config_history_id}},[s,c]),w=ve(()=>{var P;const D=((P=s.privacy_notices)!=null?P:[]).map(W=>{var Ve,kt;const fn=W.consent_mechanism===V.NOTICE_ONLY||((kt=(Ve=r.fidesDisabledNotices)==null?void 0:Ve.includes(W.notice_key))!=null?kt:!1)||W.disabled,nd=Mt(c,a.getDefaultLocale(),W);return{notice:Gc(Uc({},W),{disabled:fn}),bestTranslation:nd}}),z=D.filter(W=>W.notice.consent_mechanism===V.NOTICE_ONLY),Be=D.filter(W=>W.notice.consent_mechanism!==V.NOTICE_ONLY);return[...z,...Be]},[s.privacy_notices,c,r.fidesDisabledNotices]),[k,E]=Y(y());window.addEventListener("FidesUpdating",P=>{const{consent:T}=P.detail;Object.entries(T).forEach(([D,z])=>{T[D]=$e(z)}),E(y(T))});const N=w.every(P=>P.notice.consent_mechanism===V.NOTICE_ONLY),j=w.map(P=>{var T,D;const z=k.indexOf(P.notice.notice_key)!==-1,Be=Pe(),W=Yn({value:z,notice:P.notice,consentContext:Be});return{noticeKey:P.notice.notice_key,title:((T=P.bestTranslation)==null?void 0:T.title)||P.notice.name||"",description:(D=P.bestTranslation)==null?void 0:D.description,checked:z,consentMechanism:P.notice.consent_mechanism,disabled:P.notice.disabled,gpcStatus:W}});El({privacyExperienceConfigHistoryId:m,privacyNoticeHistoryIds:w.reduce((P,T)=>{var D;const z=(D=T.bestTranslation)==null?void 0:D.privacy_notice_history_id;return z&&P.push(z),P},[]),options:r,userGeography:i,acknowledgeMode:N,privacyExperience:s});const O=S((P,T)=>{const D={};w.forEach(z=>{z.notice.consent_mechanism!==V.NOTICE_ONLY?D[z.notice.notice_key]=T.includes(z.notice.notice_key):D[z.notice.notice_key]=!0}),Vt(t,{noticeConsent:D,consentMethod:P,eventExtraDetails:{servingComponent:_.current,trigger:d.current}}).finally(()=>{window.Fides&&n(window.Fides),h(void 0)}),E(T)},[w,t,_,d,h,n]),x=S(P=>{O(P?L.SCRIPT:L.ACCEPT,w.filter(T=>!T.notice.disabled||k.includes(T.notice.notice_key)).map(T=>T.notice.notice_key))},[k,O,w]),A=S(P=>{O(P?L.SCRIPT:L.REJECT,w.filter(T=>T.notice.consent_mechanism===V.NOTICE_ONLY||T.notice.disabled&&k.includes(T.notice.notice_key)).map(T=>T.notice.notice_key))},[k,O,w]);F(()=>{nt(r)&&s.privacy_notices&&(r.fidesConsentOverride===L.ACCEPT?x(!0):r.fidesConsentOverride===L.REJECT&&A(!0))},[s.privacy_notices,r.fidesConsentOverride]);const I=S(()=>{g(Le.BANNER),f("FidesUIShown",o)},[o,f,g]),Z=S(P=>{g(Le.MODAL),f("FidesUIShown",o,{trigger:{origin:P}})},[o,f,g]),q=S(()=>{St(v?.consent)||O(L.DISMISS,y())},[O,y,v?.consent]),G=S((P,T)=>{const D={servingComponent:_.current,trigger:d.current,preference:T};E(P),f("FidesUIChanged",o,D)},[d,f,o,_]);if(!s.experience_config)return null;const B=!!((e=s.experience_config)!=null&&e.dismissable),Ie=w.length===1;return p(Pc,{options:r,experience:s,cookie:o,savedConsent:l,isUiBlocking:!B,onOpen:Z,onDismiss:q,renderBanner:({attributes:P,isEmbedded:T,isOpen:D,onClose:z,onManagePreferencesClick:Be})=>{var W;const Ve=N||((W=s.experience_config)==null?void 0:W.layer1_button_options)===Pt.ACKNOWLEDGE;return p(zl,{attributes:P,bannerIsOpen:D,dismissable:B,onOpen:I,onClose:()=>{z(),q()},isEmbedded:T,renderButtonGroup:()=>p(Bo,{experience:s,onManagePreferencesClick:Be,enabledKeys:k,onAcceptAll:()=>{x(),z()},onRejectAll:()=>{A(),z()},onSave:(kt,fn)=>{O(kt,fn),z()},isAcknowledge:Ve,hideOptInOut:Ve,options:r})})},renderModalContent:()=>p("div",{children:p("div",{className:"fides-modal-notices",children:p($c,{noticeToggles:j,enabledNoticeKeys:k,onChange:G})})}),renderModalFooter:({onClose:P})=>p(Bo,{experience:s,enabledKeys:k,onAcceptAll:()=>{x(),P()},onRejectAll:()=>{A(),P()},onSave:(T,D)=>{O(T,D),P()},isInModal:!0,isAcknowledge:N,hideOptInOut:Ie||N,options:r})})},Vc=(e,t)=>{const{i18n:n,initializedFides:i}=e;Xi(p(kl,{i18nInstance:n,children:p(Sl,{initializedFides:i,children:p(Tl,{children:p(fl,{children:p(Bc,{})})})})}),t)};var Hc=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});function Kc(e){return Hc(this,null,function*(){var t;if(!((t=e.options.apiOptions)!=null&&t.getPreferencesFn))return null;try{return yield e.options.apiOptions.getPreferencesFn(e)}catch{return null}})}var Yc=Object.defineProperty,qc=Object.defineProperties,Wc=Object.getOwnPropertyDescriptors,rr=Object.getOwnPropertySymbols,Zc=Object.prototype.hasOwnProperty,Xc=Object.prototype.propertyIsEnumerable,ar=(e,t,n)=>t in e?Yc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ie=(e,t)=>{for(var n in t||(t={}))Zc.call(t,n)&&ar(e,n,t[n]);if(rr)for(var n of rr(t))Xc.call(t,n)&&ar(e,n,t[n]);return e},un=(e,t)=>qc(e,Wc(t)),Jc=(e,t,n)=>new Promise((i,o)=>{var r=a=>{try{s(n.next(a))}catch(c){o(c)}},l=a=>{try{s(n.throw(a))}catch(c){o(c)}},s=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,l);s((n=n.apply(e,t)).next())});function Qc(e){return Jc(this,null,function*(){var t,n,i,o;let r=(t=e??this.config)!=null?t:Ht("Fides must be initialized with a configuration object");Tr(!!((n=r.options)!=null&&n.debug)),this.config=r,re("FidesInitializing",void 0,{gppEnabled:this.config.options.gppEnabled||((o=(i=this.config.experience)==null?void 0:i.gpp_settings)==null?void 0:o.enabled),tcfEnabled:this.config.options.tcfEnabled});const l=Ri(Ee.OPTIONS,r),s=Ri(Ee.EXPERIENCE_TRANSLATION,r),a=yield Kc(r);!l.fidesString&&a?.fides_string&&(l.fidesString=a.fides_string);const c={optionsOverrides:l,consentPrefsOverrides:a,experienceTranslationOverrides:s};Ar(l);let u;if(!Oe()){const{consent:f,method:v}=Mn(l);f&&v&&(u=f)}r=un(ie({},r),{options:ie(ie({},r.options),c.optionsOverrides)}),this.config=r,this.cookie=js(r),this.cookie.consent=ie(ie({},this.cookie.consent),u),this.saved_consent=ie({},this.cookie.consent);const{fidesString:d}=r.options;if(d)try{const{nc:f}=Dt(d);this.decodeNoticeConsentString(f);const v={fides_string:d};this.cookie=ie(ie({},this.cookie),v)}catch{}if(this.experience=r.experience,!An(this.cookie)||!!u){const f=Ds(un(ie({},r),{cookie:this.cookie,savedConsent:this.saved_consent,updateExperienceFromCookieConsent:It}));Object.assign(this,f),dt(this),this.experience=f.experience,Jn(this.cookie,{shouldShowExperience:this.shouldShowExperience()})}const g=yield Rs({fides:this,initOverlay:eo,renderOverlay:Vc,updateExperience:Ni,overrides:c});Object.assign(this,g),dt(this),Qn(this.cookie,{shouldShowExperience:this.shouldShowExperience()})})}const ed=Ai({}),td=un(ie({},ed),{init:Qc});dt(td),b.BannerEnabled=vn,b.ButtonType=ee,b.CONSENT_COOKIE_MAX_AGE_DAYS=xn,b.CONSENT_COOKIE_NAME=Tt,b.ComponentType=U,b.ConsentFlagType=de,b.ConsentMechanism=V,b.ConsentMethod=L,b.ConsentNonApplicableFlagMode=we,b.DEFAULT_LOCALE=K,b.DEFAULT_MODAL_LINK_LABEL=Je,b.EnforcementLevel=_n,b.FidesEndpointPaths=gi,b.FidesEventOrigin=be,b.FidesEventTargetType=X,b.FidesModalDefaultView=gn,b.GpcStatus=oe,b.LOCALE_REGEX=Qe,b.Layer1ButtonOption=Pt,b.OverrideType=Ee,b.PrivacyNoticeFramework=pn,b.REQUEST_SOURCE=wi,b.RejectAllMechanism=bn,b.RequestOrigin=hn,b.SaveConsentPreference=Ct,b.ServingComponent=Le,b.UpdateConsentValidation=ue,b.UserConsentPreference=H,b.allNoticesAreDefaultOptIn=Gr,b.applyOverridesToConsent=je,b.areLocalesEqual=ne,b.buildCookieConsentFromConsentPreferences=$n,b.consentCookieObjHasSomeConsentSet=St,b.constructFidesRegionString=tt,b.createConsentPreferencesToSave=Vr,b.createConsentProxy=jt,b.createEmptyExperience=bi,b.decodeNoticeConsentString=ot,b.defaultShowModal=$t,b.detectUserLocale=di,b.dispatchConsentLoadedEvents=Jn,b.dispatchFidesEvent=re,b.dispatchReadyEvents=Qn,b.encodeNoticeConsentString=qn,b.experienceIsValid=Hn,b.extractDefaultLocaleFromExperience=zt,b.fetchExperience=hi,b.fetchGvlTranslations=yi,b.getConsentContext=Pe,b.getCookieByName=Xe,b.getCoreFides=Ai,b.getCurrentLocale=ci,b.getFidesConsentCookie=Oe,b.getGeolocation=Ti,b.getGpcStatusFromNotice=Yn,b.getOrMakeFidesCookie=Sn,b.getOverrideValidatorMapByType=Vn,b.getTcfDefaultPreference=Br,b.getWindowObjFromPath=Kn,b.i18n=es,b.initOverlay=eo,b.initializeI18n=fi,b.isConsentOverride=nt,b.isNewFidesCookie=An,b.isPrivacyExperience=Ce,b.isValidAcString=Yr,b.loadGVLMessagesFromExperience=si,b.loadMessagesFromExperience=ai,b.loadMessagesFromFiles=ri,b.loadMessagesFromGVLTranslations=li,b.localizeModalLinkText=pi,b.makeConsentDefaultsLegacy=Ln,b.makeFidesCookie=Tn,b.matchAvailableLocales=ui,b.messageExists=he,b.noticeHasConsentInCookie=We,b.onFidesEvent=Xn,b.parseFidesDisabledNotices=En,b.patchNoticesServed=ki,b.patchUserPreference=Ei,b.processExternalConsentValue=$e,b.raise=Ht,b.removeCookiesFromBrowser=Fn,b.resolveConsentValue=On,b.resolveLegacyConsentValue=kn,b.saveFidesCookie=In,b.selectBestExperienceConfigTranslation=st,b.selectBestNoticeTranslation=Mt,b.setupI18n=Ut,b.shouldResurfaceBanner=it,b.transformConsentToFidesUserPreference=Fe,b.transformTcfPreferencesToCookieKeys=kr,b.transformUserPreferenceToBoolean=fe,b.updateCookieFromExperience=Dn,b.updateCookieFromNoticePreferences=jn,b.updateExperience=Ni,b.updateExperienceFromCookieConsentNotices=It,b.updateWindowFides=dt,b.validateOptions=Bn});
|
|
11
|
+
);border:1px solid var(--fides-overlay-row-divider-color);display:flex;margin-bottom:22px;padding:4px}.fides-radio-button{background-color:transparent;border:none;cursor:pointer;flex:1;padding:5px 16px}.fides-radio-button[aria-checked=true]{background-color:var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-primary-button-text-color)}.fides-flex-center{align-items:center;display:flex}.fides-margin-right{margin-right:3px}.fides-justify-space-between{justify-content:space-between}.fides-vendor-details-table{width:100%}.fides-vendor-details-table td,.fides-vendor-details-table th{font-size:var(--fides-overlay-font-size-body-small);text-align:left}.fides-vendor-details-table td{border-bottom:1px solid var(--fides-overlay-row-divider-color)}.fides-link-button{background:none;border:none;cursor:pointer;padding:0}.fides-back-link:before{border-color:var(--fides-overlay-primary-color);border-style:solid;border-width:1.5px 1.5px 0 0;content:"";display:inline-block;height:.6em;margin-right:3px;transform:translateY(-1px) rotate(225deg);transition:transform .12s ease-in-out;width:.6em}.fides-external-link,.fides-primary-text-color{color:var(--fides-overlay-primary-color)}.fides-external-link{font-size:var(--fides-overlay-font-size-body-small);font-weight:500;margin-right:16px}.fides-info-box{background-color:var(--fides-overlay-neutral-background-color);border-radius:var(--fides-overlay-component-border-radius);margin:10px 0;padding:16px}.fides-info-box p{margin:0}.fides-tabs .tabpanel-container{overflow:hidden}.tabpanel-container section[hidden]{display:none}.fides-paging-buttons{display:flex;gap:8px;justify-content:center}.fides-paging-info{color:var(--fides-overlay-font-color-dark);font-size:var(--fides-overlay-font-size-body-small);font-weight:600;padding:8px}.fides-paging-previous-button{margin-right:8px}.fides-paging-next-button,.fides-paging-previous-button{background-color:transparent;border:none;cursor:pointer;padding:6px}.fides-paging-next-button:disabled,.fides-paging-previous-button:disabled{cursor:default}.fides-i18n-menu{position:relative}.fides-modal-footer .fides-i18n-menu{bottom:var(--fides-overlay-padding);left:var(--fides-overlay-padding);position:absolute}.fides-modal-footer .fides-button-group-i18n{min-height:var(--fides-overlay-modal-secondary-button-group-height)}button.fides-i18n-button{align-items:center;background-color:transparent;border:none;color:var(--fides-overlay-body-font-color);cursor:pointer;display:flex;flex-direction:row;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);gap:2px;height:var(--fides-overlay-font-size-body);text-transform:uppercase;white-space:nowrap}#fides-i18n-icon{animation-duration:var(--fides-overlay-language-loading-indicator-speed);animation-iteration-count:infinite;animation-timing-function:linear;transform-origin:50% 50%}div#fides-overlay-wrapper .fides-i18n-button{box-sizing:content-box}.fides-i18n-popover{background-color:var(--fides-overlay-background-dark-color);border-radius:var(--fides-overlay-component-border-radius);bottom:100%;display:flex;flex-direction:column;gap:1px;left:0;max-height:0;min-width:calc(var(--fides-base-font-size)*9);overflow:hidden;position:absolute;transition:max-height .2s ease-in-out}.fides-i18n-menu-open .fides-i18n-popover{border:1px solid var(--fides-overlay-primary-color);max-height:calc(var(--fides-base-font-size)*7);overflow:scroll}.fides-i18n-button:hover{background-color:var(--fides-overlay-hover-color);border-radius:var(--fides-overlay-language-button-border-radius)}.fides-i18n-menu-open .fides-i18n-caret{transform:rotate(180deg)}button.fides-banner-button.fides-menu-item{background:var(--fides-overlay-secondary-button-background-color);border:none;border-radius:0;color:var(--fides-overlay-secondary-button-text-color);margin:0;padding-left:calc(var(--fides-base-font-size)*1.5);text-align:left;width:100%}button.fides-banner-button.fides-menu-item[aria-checked=true]{background:var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-primary-button-text-color)}button.fides-banner-button.fides-menu-item[aria-checked=true]:before{content:"\\2713";display:inline-block;margin-left:calc(var(--fides-base-font-size)*-1);margin-right:calc(var(--fides-base-font-size)*.25)}button.fides-banner-button.fides-menu-item:not([aria-checked=true]):hover{background:var(--fides-overlay-secondary-button-background-hover-color)}.fides-sr-only{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}@media (min-width:1280px){div#fides-banner{width:60%}}@media (min-width:768px){div#fides-banner{border:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-component-border-radius);width:75%}div#fides-banner-container.fides-banner-bottom{bottom:var(--fides-overlay-banner-offset)}}.fides-notice-toggle-title .fides-badge-container{align-items:center;display:flex;justify-content:center;min-width:fit-content;order:1}.fides-notice-toggle-title .fides-notice-toggle-controls{order:2}@media (max-width:480px){.fides-notice-toggle-title .fides-badge-container span{margin-bottom:4px;margin-top:4px}.fides-notice-toggle .fides-notice-toggle-title .fides-notice-toggle-trigger{max-width:calc(100% - var(--fides-overlay-toggle-width) - var(--8px))}.fides-notice-toggle-title .fides-badge-container{display:flex;justify-content:center;order:2;position:static;width:100%}.fides-notice-toggle .fides-notice-toggle-title{flex-wrap:wrap}div#fides-banner-heading{align-items:start;flex-direction:column;gap:8px;justify-content:start;margin-bottom:8px}}@media (max-width:768px){div#fides-consent-content,div.fides-modal-content{width:100%!important}.fides-modal-button-group{flex-direction:column}button.fides-banner-button{margin:0 8px 12px 0}div#fides-banner{padding:24px;width:100%}div#fides-banner-description{margin-bottom:0}div#fides-banner-inner div#fides-button-group{align-items:flex-start;flex-direction:column;gap:12px;padding-top:24px}.fides-banner-button-group{flex-direction:column;width:100%}button.fides-banner-button{margin:0;width:100%}div#fides-banner-inner-container{max-height:50vh;overflow-y:auto;scrollbar-gutter:stable}div.fides-privacy-policy-link{width:100%}.fides-modal-footer{max-width:100%}.fides-banner-secondary-actions{gap:12px}.fides-banner-secondary-actions .fides-manage-preferences-button{order:0}.fides-banner-secondary-actions .fides-privacy-policy{order:1}.fides-banner-secondary-actions .fides-i18n-menu{order:2}.fides-banner-button-group.fides-button-group-i18n{min-height:68px}.fides-i18n-menu{bottom:var(--fides-overlay-padding);left:var(--fides-overlay-padding);position:absolute}}.fides-data-toggle-skeleton__container{align-items:center;border-bottom:1px solid var(--fides-overlay-row-divider-color);display:flex;justify-content:space-between;min-height:40px;padding-inline:12px;width:100%}.fides-notice-toggle .fides-skeleton__container:hover{background-color:unset;cursor:default}.fides-skeleton__component{animation-duration:1.4s;animation-iteration-count:infinite;animation-name:fides-skeleton-loading;animation-timing-function:ease;background:linear-gradient(90deg,var(--fides-overlay-skeleton-gradient-from-color) 25%,var(--fides-overlay-skeleton-gradient-to-color) 37%,var(--fides-overlay-skeleton-gradient-from-color) 63%);background-size:400% 100%}.fides-skeleton__text{border-radius:var(--fides-overlay-component-border-radius);height:var(--fides-overlay-line-height);width:60%}.fides-skeleton__switch{border-radius:100vw;height:24px;width:50px}@keyframes fides-skeleton-loading{0%{background-position:100% 50%}to{background-position:0 50%}}`;ya(ma);var be,L,Ht,On,De=0,Sn=[],I=E,Ln=I.__b,Pn=I.__r,In=I.diffed,Fn=I.__c,Dn=I.unmount,Rn=I.__;function Re(e,t){I.__h&&I.__h(L,e,De||t),De=0;var i=L.__H||(L.__H={__:[],__h:[]});return e>=i.__.length&&i.__.push({}),i.__[e]}function U(e){return De=1,ka(jn,e)}function ka(e,t,i){var n=Re(be++,2);if(n.t=e,!n.__c&&(n.__=[i?i(t):jn(void 0,t),function(s){var c=n.__N?n.__N[0]:n.__[0],d=n.t(c,s);c!==d&&(n.__N=[d,n.__[1]],n.__c.setState({}))}],n.__c=L,!L.u)){var o=function(s,c,d){if(!n.__c.__H)return!0;var f=n.__c.__H.__.filter(function(_){return!!_.__c});if(f.every(function(_){return!_.__N}))return!r||r.call(this,s,c,d);var l=!1;return f.forEach(function(_){if(_.__N){var p=_.__[0];_.__=_.__N,_.__N=void 0,p!==_.__[0]&&(l=!0)}}),!(!l&&n.__c.props===s)&&(!r||r.call(this,s,c,d))};L.u=!0;var r=L.shouldComponentUpdate,a=L.componentWillUpdate;L.componentWillUpdate=function(s,c,d){if(this.__e){var f=r;r=void 0,o(s,c,d),r=f}a&&a.call(this,s,c,d)},L.shouldComponentUpdate=o}return n.__N||n.__}function P(e,t){var i=Re(be++,3);!I.__s&&Yt(i.__H,t)&&(i.__=e,i.i=t,L.__H.__h.push(i))}function wa(e,t){var i=Re(be++,4);!I.__s&&Yt(i.__H,t)&&(i.__=e,i.i=t,L.__h.push(i))}function xe(e){return De=5,se(function(){return{current:e}},[])}function se(e,t){var i=Re(be++,7);return Yt(i.__H,t)&&(i.__=e(),i.__H=t,i.__h=e),i.__}function O(e,t){return De=8,se(function(){return e},t)}function Ae(e){var t=L.context[e.__c],i=Re(be++,9);return i.c=e,t?(i.__==null&&(i.__=!0,t.sub(L)),t.props.value):e.__}function Ea(){for(var e;e=Sn.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(ut),e.__H.__h.forEach(Kt),e.__H.__h=[]}catch(t){e.__H.__h=[],I.__e(t,e.__v)}}I.__b=function(e){L=null,Ln&&Ln(e)},I.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),Rn&&Rn(e,t)},I.__r=function(e){Pn&&Pn(e),be=0;var t=(L=e.__c).__H;t&&(Ht===L?(t.__h=[],L.__h=[],t.__.forEach(function(i){i.__N&&(i.__=i.__N),i.i=i.__N=void 0})):(t.__h.forEach(ut),t.__h.forEach(Kt),t.__h=[],be=0)),Ht=L},I.diffed=function(e){In&&In(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(Sn.push(t)!==1&&On===I.requestAnimationFrame||((On=I.requestAnimationFrame)||Ca)(Ea)),t.__H.__.forEach(function(i){i.i&&(i.__H=i.i),i.i=void 0})),Ht=L=null},I.__c=function(e,t){t.some(function(i){try{i.__h.forEach(ut),i.__h=i.__h.filter(function(n){return!n.__||Kt(n)})}catch(n){t.some(function(o){o.__h&&(o.__h=[])}),t=[],I.__e(n,i.__v)}}),Fn&&Fn(e,t)},I.unmount=function(e){Dn&&Dn(e);var t,i=e.__c;i&&i.__H&&(i.__H.__.forEach(function(n){try{ut(n)}catch(o){t=o}}),i.__H=void 0,t&&I.__e(t,i.__v))};var zn=typeof requestAnimationFrame=="function";function Ca(e){var t,i=function(){clearTimeout(n),zn&&cancelAnimationFrame(t),setTimeout(e)},n=setTimeout(i,100);zn&&(t=requestAnimationFrame(i))}function ut(e){var t=L,i=e.__c;typeof i=="function"&&(e.__c=void 0,i()),L=t}function Kt(e){var t=L;e.__c=e.__(),L=t}function Yt(e,t){return!e||e.length!==t.length||t.some(function(i,n){return i!==e[n]})}function jn(e,t){return typeof t=="function"?t(e):t}const Mn=Ce(void 0),xa=({children:e})=>{const[t,i]=U(""),n=O(a=>{i(""),setTimeout(()=>{i(a)},0)},[]),o=O(()=>{i("")},[]),r=se(()=>({message:t,announce:n,clear:o}),[t,n,o]);return P(()=>{const a=()=>{n("Preferences updated")},s=()=>{o()};return window.addEventListener("FidesUIShown",s),window.addEventListener("FidesUpdated",a),()=>{window.removeEventListener("FidesUIShown",s),window.removeEventListener("FidesUpdated",a)}},[n,o]),u(Mn.Provider,{value:r,children:e})},Un=()=>{const e=Ae(Mn);if(!e)throw new Error("useLiveRegion must be used within a LiveRegionProvider");return e},Aa=3e3,ze=(e=!1,t=Aa)=>{const[i,n]=U(e),o=xe(null),{clear:r}=Un(),a=O(()=>{o.current!==null&&(window.clearTimeout(o.current),o.current=null)},[]),s=O(()=>{a(),n(!1),r()},[a,r]),c=O(d=>{a(),n(!0);const f=d??t;o.current=window.setTimeout(()=>{n(!1),r(),o.current=null},f)},[a,t,r]);return P(()=>()=>a(),[a]),{isActive:i,activate:c,deactivate:s}},Ta=({id:e})=>{const[t,i]=U(!1),n=O(()=>i(!1),[]),o=O(()=>i(!0),[]),r=O(()=>{t?n():o()},[t,o,n]);return{isOpen:t,onOpen:o,onClose:n,onToggle:r,getButtonProps:()=>({"aria-expanded":t,"aria-controls":e,onClick:r}),getDisclosureProps:()=>({id:e,className:t?"fides-disclosure-visible":"fides-disclosure-hidden"})}},Na=(e,t)=>{const[i,n]=U(null);return P(()=>{if(t)return()=>{};fn(e).then(o=>{n(o)})},[e,t]),i},Oa=()=>{const[e,t]=U(!1);return P(()=>{t(!0)},[]),e},Sa=({options:e,privacyExperience:t,privacyExperienceConfigHistoryId:i,privacyNoticeHistoryIds:n,userGeography:o,acknowledgeMode:r,tcfNoticesServed:a})=>{const s=O(async c=>{if(e.fidesDisableSaveApi||e.fidesDisableNoticesServedApi||!c.detail.extraDetails||c.detail.extraDetails.servingComponent===Se.BANNER&&!t?.experience_config?.show_layer1_notices)return;const f={served_notice_history_id:rn.getServedNoticeHistoryId(),browser_identity:c.detail.identity,privacy_experience_config_history_id:i||"",user_geography:o,acknowledge_mode:r,privacy_notice_history_ids:n||[],serving_component:String(c.detail.extraDetails.servingComponent),property_id:t.property_id,...a};on({request:f,options:e})},[e,t,i,o,r,n,a]);P(()=>(window.addEventListener("FidesUIShown",s),()=>{window.removeEventListener("FidesUIShown",s)}),[s])},$n=Ce({}),La=({i18nInstance:e,children:t})=>{const[i,n]=U(),[o,r]=U(!1),a=O(c=>{e.activate(c),n(c)},[e,n]);P(()=>{const c=document.getElementById(Io);o?c?.style.setProperty("animation-name","spin"):c?.style.removeProperty("animation-name")},[o]);const s=se(()=>({i18n:e,currentLocale:i,setCurrentLocale:a,isLoading:o,setIsLoading:r}),[e,i,a,o]);return u($n.Provider,{value:s,children:t})},q=()=>{const e=Ae($n);if(!e||Object.keys(e).length===0)throw new Error("useI18n must be used within a I18nProvider");return e},Bn=Ce({}),Pa=({children:e})=>{const t=xe(),i=xe(),n=O(s=>{t.current=s},[]),o=O(s=>{i.current=s},[]),r=O((s,c,d)=>{oe(s,c,{...d,servingComponent:d?.servingComponent??i.current,trigger:{...d?.trigger,...t.current}}),n(void 0)},[n]),a=se(()=>({triggerRef:t,setTrigger:n,servingComponentRef:i,setServingComponent:o,dispatchFidesEventAndClearTrigger:r}),[n,r,o]);return u(Bn.Provider,{value:a,children:e})},ue=()=>{const e=Ae(Bn);if(!e||Object.keys(e).length===0)throw new Error("useEvent must be used within a EventProvider");return e},Gn=Ce({}),Ia=({initializedFides:e,children:t})=>{const[i,n]=U(e),o=se(()=>({fidesGlobal:i,setFidesGlobal:n}),[i,n]);return u(Gn.Provider,{value:o,children:t})},Vn=()=>{const e=Ae(Gn);if(!e||Object.keys(e).length===0)throw new Error("useFidesGlobal must be used within a FidesGlobalProvider");return e},Wt="__GPC_START__",qt="__GPC_END__",Zt="__NO_GPC_START__",Xt="__NO_GPC_END__",pt=(e,t)=>{if(!e)return"";if(!(e.includes(Wt)||e.includes(qt)||e.includes(Zt)||e.includes(Xt)))return e;let n=e;return t?(n=n.replace(new RegExp(`${Wt}(.*?)${qt}`,"gs"),"$1"),n=n.replace(new RegExp(`${Zt}(.*?)${Xt}`,"gs"),"")):(n=n.replace(new RegExp(`${Wt}(.*?)${qt}`,"gs"),""),n=n.replace(new RegExp(`${Zt}(.*?)${Xt}`,"gs"),"$1")),n=n.trim(),n},Hn=({onClick:e,ariaLabel:t,hidden:i=!1})=>u("button",{type:"button","aria-label":t,className:"fides-close-button",onClick:e,style:{visibility:i?"hidden":"visible"},children:u("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",children:u("path",{fill:"#2D3748",d:"m8 7.057 3.3-3.3.943.943-3.3 3.3 3.3 3.3-.943.943-3.3-3.3-3.3 3.3-.943-.943 3.3-3.3-3.3-3.3.943-.943 3.3 3.3Z"})})}),Fa=Ce({}),Jt="__VENDOR_COUNT_LINK__",Kn=(e,t)=>t?u("span",{dangerouslySetInnerHTML:{__html:e.trim()}}):oa(e).trim(),Yn=({description:e,onVendorPageClick:t,allowHTMLDescription:i=!1})=>{const[n,o]=U(),{setTrigger:r}=ue();let a=0;const s=Ae(Fa);return s?.vendorCount&&(a=s.vendorCount),P(()=>{if(e)if(e.includes(Jt)&&t){const c=e.split(Jt);for(let f=1;f<c.length;f+=2)c.splice(f,0,u(re,{children:[" ",u("button",{type:"button",className:"fides-link-button fides-vendor-count",onClick:()=>{t&&(r({type:W.LINK,label:Jt}),t())},children:a})," "]}));const d=c.map(f=>typeof f=="string"?Kn(f,i):f);o(d)}else o([Kn(e,i)])},[e,t]),e?u("div",{children:n}):null},Wn=({status:e,...t})=>{const{i18n:i}=q(),n=i.t("static.gpc"),o=e.valueOf();let r="";if(e===ie.APPLIED)r=i.t("static.gpc.status.applied");else if(e===ie.OVERRIDDEN)r=i.t("static.gpc.status.overridden");else if(e===ie.NONE)return null;return u("span",{className:"fides-gpc-label",...t,children:[n," ",u("span",{className:`fides-gpc-badge fides-gpc-badge-${o}`,children:r})]})},Da=({attributes:e,dismissable:t,onOpen:i,onClose:n,bannerIsOpen:o,children:r,onVendorPageClick:a,renderButtonGroup:s,className:c,isEmbedded:d})=>{const{container:f,dialog:l,title:_,closeButton:p}=e,{i18n:g}=q(),h=de().globalPrivacyControl,{setTrigger:m}=ue();P(()=>{o&&i()},[o,i]);const y=ve(g,"exp.banner_title")?g.t("exp.banner_title"):g.t("exp.title"),b=ve(g,"exp.banner_description")?g.t("exp.banner_description"):g.t("exp.description"),w=pt(y,!!h),C=pt(b,!!h),x=["fides-banner","fides-banner-bottom",!o&&"fides-banner-hidden",d&&"fides-embedded",c].filter(T=>typeof T=="string").join(" ");let N=[];return window.Fides?.experience?.experience_config?.show_layer1_notices&&window.Fides?.experience?.privacy_notices&&(N=window.Fides?.experience?.privacy_notices),u("div",{className:x,...f,id:`${f.id}-container`,children:u("div",{id:f.id,children:u("div",{...l,id:`${f.id}-inner`,children:[u(Hn,{ariaLabel:"Close banner",onClick:()=>{m({type:W.BUTTON,label:"Close banner"}),p.onClick(),n()},hidden:window.Fides?.options?.preventDismissal||!t}),u("div",{id:`${f.id}-inner-container`,children:[u("div",{className:"fides-banner__col",children:[u("div",{id:"fides-banner-heading",children:[u("div",{..._,className:"fides-banner-title",children:w}),h&&u(Wn,{status:ie.APPLIED})]}),u("div",{id:`${f.id}-description`,className:"fides-banner-description fides-banner__content",children:[u(Yn,{description:C,onVendorPageClick:a,allowHTMLDescription:window.Fides?.options?.allowHTMLDescription}),!!N?.length&&u("div",{id:`${f.id}-notices`,className:"fides-banner-notices",children:N.map((T,F)=>u("span",{children:[u("strong",{children:T.name}),F<N.length-1&&", "]},T.id))})]})]}),r]}),s()]})})})},Ra=e=>{const[t,i]=U(!1);return P(()=>{const n=window.matchMedia(e);i(n.matches);function o(r){i(r.matches)}return n.addEventListener?n.addEventListener("change",o):n.addListener(o),()=>{n.removeEventListener?n.removeEventListener("change",o):n.removeListener(o)}},[e]),t},za=()=>u("svg",{xmlns:"http://www.w3.org/2000/svg",width:"31",height:"20",fill:"currentColor",className:"ethyca-logo",role:"img","aria-label":"Ethyca",children:u("path",{d:"M11.5602 0H8.70311V7.9999H11.5602V0ZM23.0026 12.0001H20.1455V20H23.0026V12.0001ZM14.1258 20H17.5799L12.1315 11.9774V17.0631L14.1258 20ZM8.13179 17.0626V11.9769L2.68588 19.9995H6.14003L8.13129 17.0626H8.13179ZM23.5744 2.93688V8.02263L29.0198 0H25.5682L23.5739 2.93688H23.5744ZM19.5742 2.93688L17.5799 0H14.1258L19.5742 8.02263V2.93688ZM19.5717 8.57121H12.132V11.4283H19.5717V8.57121ZM31 8.57121H23.5603V11.4283H31V8.57121ZM8.13179 8.57121H0.691589V11.4283H8.13179V8.57121Z"})}),ja=()=>u("div",{className:"fides-brand",children:u("a",{href:"https://ethyca.com/",target:"_blank",rel:"noopener noreferrer",className:"fides-brand-link",children:["Powered by",u(za,{})]})}),Ma=()=>u("svg",{xmlns:"http://www.w3.org/2000/svg",id:"icon",fill:"currentColor",viewBox:"0 0 32 32",children:[u("path",{d:"M16 2a14 14 0 1 0 14 14A14 14 0 0 0 16 2m-2 19.59-5-5L10.59 15 14 18.41 21.41 11l1.596 1.586Z"}),u("path",{id:"inner-path",d:"m14 21.591-5-5L10.591 15 14 18.409 21.41 11l1.595 1.585z",fill:"none"}),u("path",{id:"_Transparent_Rectangle_",d:"M0 0h32v32H0z",fill:"none"})]}),Ua=()=>u("div",{className:"fides-spinner"}),Te=({buttonType:e,label:t,id:i,onClick:n,className:o="",disabled:r,loading:a,complete:s})=>{const{isActive:c,activate:d,deactivate:f}=ze();return P(()=>{s?d():f()},[d,s,f]),u("button",{type:"button",id:i,className:`fides-banner-button fides-banner-button-${e.valueOf()} ${o}`,onClick:n,disabled:r||a,style:{cursor:r||a?"not-allowed":"pointer"},children:u("span",{style:{display:"flex",alignItems:"center",gap:"0.5em"},children:[t||"",a&&u(Ua,{}),!a&&c&&u("span",{"aria-hidden":"true",style:{width:"1em",height:"1em"},children:u(Ma,{})})]})})};function $a(e,t){for(var i in t)e[i]=t[i];return e}function qn(e,t){for(var i in e)if(i!=="__source"&&!(i in t))return!0;for(var n in t)if(n!=="__source"&&e[n]!==t[n])return!0;return!1}function Zn(e,t){this.props=e,this.context=t}(Zn.prototype=new ae).isPureReactComponent=!0,Zn.prototype.shouldComponentUpdate=function(e,t){return qn(this.props,e)||qn(this.state,t)};var Xn=E.__b;E.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),Xn&&Xn(e)};var Ba=E.__e;E.__e=function(e,t,i,n){if(e.then){for(var o,r=t;r=r.__;)if((o=r.__c)&&o.__c)return t.__e==null&&(t.__e=i.__e,t.__k=i.__k),o.__c(e,t)}Ba(e,t,i,n)};var Jn=E.unmount;function Qn(e,t,i){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(n){typeof n.__c=="function"&&n.__c()}),e.__c.__H=null),(e=$a({},e)).__c!=null&&(e.__c.__P===i&&(e.__c.__P=t),e.__c=null),e.__k=e.__k&&e.__k.map(function(n){return Qn(n,t,i)})),e}function eo(e,t,i){return e&&i&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(n){return eo(n,t,i)}),e.__c&&e.__c.__P===t&&(e.__e&&i.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=i)),e}function Qt(){this.__u=0,this.t=null,this.__b=null}function to(e){var t=e.__.__c;return t&&t.__a&&t.__a(e)}function gt(){this.u=null,this.o=null}E.unmount=function(e){var t=e.__c;t&&t.__R&&t.__R(),t&&32&e.__u&&(e.type=null),Jn&&Jn(e)},(Qt.prototype=new ae).__c=function(e,t){var i=t.__c,n=this;n.t==null&&(n.t=[]),n.t.push(i);var o=to(n.__v),r=!1,a=function(){r||(r=!0,i.__R=null,o?o(s):s())};i.__R=a;var s=function(){if(!--n.__u){if(n.state.__a){var c=n.state.__a;n.__v.__k[0]=eo(c,c.__c.__P,c.__c.__O)}var d;for(n.setState({__a:n.__b=null});d=n.t.pop();)d.forceUpdate()}};n.__u++||32&t.__u||n.setState({__a:n.__b=n.__v.__k[0]}),e.then(a,a)},Qt.prototype.componentWillUnmount=function(){this.t=[]},Qt.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var i=document.createElement("div"),n=this.__v.__k[0].__c;this.__v.__k[0]=Qn(this.__b,i,n.__O=n.__P)}this.__b=null}var o=t.__a&&Ut(re,null,e.fallback);return o&&(o.__u&=-33),[Ut(re,null,t.__a?null:e.children),o]};var io=function(e,t,i){if(++i[1]===i[0]&&e.o.delete(t),e.props.revealOrder&&(e.props.revealOrder[0]!=="t"||!e.o.size))for(i=e.u;i;){for(;i.length>3;)i.pop()();if(i[1]<i[0])break;e.u=i=i[2]}};(gt.prototype=new ae).__a=function(e){var t=this,i=to(t.__v),n=t.o.get(e);return n[0]++,function(o){var r=function(){t.props.revealOrder?(n.push(o),io(t,e,n)):o()};i?i(r):r()}},gt.prototype.render=function(e){this.u=null,this.o=new Map;var t=lt(e.children);e.revealOrder&&e.revealOrder[0]==="b"&&t.reverse();for(var i=t.length;i--;)this.o.set(t[i],this.u=[1,0,this.u]);return e.children},gt.prototype.componentDidUpdate=gt.prototype.componentDidMount=function(){var e=this;this.o.forEach(function(t,i){io(e,i,t)})};var Ga=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.element")||60103,Va=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,Ha=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,Ka=/[A-Z0-9]/g,Ya=typeof document<"u",Wa=function(e){return(typeof Symbol<"u"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};ae.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(ae.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})});var no=E.event;function qa(){}function Za(){return this.cancelBubble}function Xa(){return this.defaultPrevented}E.event=function(e){return no&&(e=no(e)),e.persist=qa,e.isPropagationStopped=Za,e.isDefaultPrevented=Xa,e.nativeEvent=e};var Ja={enumerable:!1,configurable:!0,get:function(){return this.class}},oo=E.vnode;E.vnode=function(e){typeof e.type=="string"&&function(t){var i=t.props,n=t.type,o={};for(var r in i){var a=i[r];if(!(r==="value"&&"defaultValue"in i&&a==null||Ya&&r==="children"&&n==="noscript"||r==="class"||r==="className")){var s=r.toLowerCase();r==="defaultValue"&&"value"in i&&i.value==null?r="value":r==="download"&&a===!0?a="":s==="translate"&&a==="no"?a=!1:s==="ondoubleclick"?r="ondblclick":s!=="onchange"||n!=="input"&&n!=="textarea"||Wa(i.type)?s==="onfocus"?r="onfocusin":s==="onblur"?r="onfocusout":Ha.test(r)?r=s:n.indexOf("-")===-1&&Va.test(r)?r=r.replace(Ka,"-$&").toLowerCase():a===null&&(a=void 0):s=r="oninput",s==="oninput"&&o[r=s]&&(r="oninputCapture"),o[r]=a}}n=="select"&&o.multiple&&Array.isArray(o.value)&&(o.value=lt(i.children).forEach(function(c){c.props.selected=o.value.indexOf(c.props.value)!=-1})),n=="select"&&o.defaultValue!=null&&(o.value=lt(i.children).forEach(function(c){c.props.selected=o.multiple?o.defaultValue.indexOf(c.props.value)!=-1:o.defaultValue==c.props.value})),i.class&&!i.className?(o.class=i.class,Object.defineProperty(o,"className",Ja)):(i.className&&!i.class||i.class&&i.className)&&(o.class=o.className=i.className),t.props=o}(e),e.$$typeof=Ga,oo&&oo(e)};var ro=E.__r;E.__r=function(e){ro&&ro(e),e.__c};var ao=E.diffed;E.diffed=function(e){ao&&ao(e);var t=e.props,i=e.__e;i!=null&&e.type==="textarea"&&"value"in t&&t.value!==i.value&&(i.value=t.value==null?"":t.value)};const Qa=Ce({}),es=({isActive:e,className:t,children:i,...n})=>u("button",{type:"button",role:"menuitemradio","aria-checked":e,...n,className:`fides-banner-button fides-menu-item ${t||""}`,children:i}),ts=({availableLocales:e,options:t,isTCF:i})=>{const[n,o]=U(!1),{i18n:r,currentLocale:a,setCurrentLocale:s,setIsLoading:c}=q(),d=Ae(Qa),f=xe(null),l=xe(null),_=()=>{o(!n)},p=async h=>{if(h!==r.locale)if(i){c(!0);const m=await Qi(t.fidesApiUrl,[h]);c(!1),m&&Object.keys(m).length?(d.setGvlTranslations(m[h]),Vi(r,m,e||[V]),s(h)):console.error(`Unable to load GVL translation for ${h}`)}else s(h);o(!1),f.current?.focus()},g=O(h=>{if(!n)return;const m=l.current?.querySelectorAll(".fides-menu-item")||[],{key:y}=h;if(y==="Escape"||y==="Tab"){o(!1),f.current?.focus();return}if(y==="ArrowUp"||y==="ArrowDown"){h.preventDefault();const b=Array.from(m).findIndex(C=>C===document.activeElement);let w=b;y==="ArrowDown"?w=b===m.length-1?0:b+1:y==="ArrowUp"&&(w=b===0?m.length-1:b-1),m[w]?.focus()}},[n]);return P(()=>(document.addEventListener("keydown",g),()=>{document.removeEventListener("keydown",g)}),[g]),P(()=>{n&&l.current?.querySelectorAll(".fides-menu-item")?.[0]?.focus()},[n]),P(()=>{const h=m=>{n&&l.current&&!l.current.contains(m.target)&&f.current&&!f.current.contains(m.target)&&o(!1)};return document.addEventListener("mousedown",h),()=>{document.removeEventListener("mousedown",h)}},[n]),u("div",{className:`fides-i18n-menu ${n?"fides-i18n-menu-open":""}`,ref:l,children:[u("div",{role:"menu",className:"fides-i18n-popover",id:"fides-i18n-popover",children:r.availableLanguages.map(h=>u(es,{id:a===h.locale?"fidesActiveMenuItem":void 0,onClick:()=>p(h.locale),isActive:a===h.locale,title:h.label_en,"aria-label":h.label_en,tabIndex:-1,children:h.label_original},h.locale))}),u("button",{type:"button",className:"fides-i18n-button",onClick:_,ref:f,"aria-haspopup":"true","aria-expanded":n,"aria-controls":"fides-i18n-popover","aria-label":`Select language, current language is ${a}`,children:[u("svg",{xmlns:"http://www.w3.org/2000/svg",height:"100%",viewBox:"0 0 36 36",fill:"currentColor",id:"fides-i18n-icon",children:u("path",{fill:"currentColor",d:"M18 32.625c.52 0 1.898-.506 3.347-3.403.619-1.245 1.153-2.756 1.547-4.472h-9.788c.394 1.716.928 3.227 1.547 4.472 1.449 2.897 2.827 3.403 3.347 3.403m-5.45-11.25h10.9a32.5 32.5 0 0 0 0-6.75h-10.9a32.5 32.5 0 0 0 0 6.75m.556-10.125h9.788c-.394-1.716-.928-3.227-1.547-4.472C19.898 3.881 18.52 3.375 18 3.375s-1.898.506-3.347 3.403c-.619 1.245-1.153 2.756-1.547 4.472m13.732 3.375A35 35 0 0 1 26.993 18c0 1.153-.056 2.285-.155 3.375h5.393c.253-1.083.394-2.215.394-3.375s-.134-2.292-.394-3.375h-5.393m4.135-3.375a14.7 14.7 0 0 0-6.92-6.567c.992 1.8 1.78 4.043 2.293 6.567h4.634zm-21.326 0c.513-2.524 1.3-4.76 2.292-6.567A14.7 14.7 0 0 0 5.02 11.25h4.634zm-5.878 3.375A14.8 14.8 0 0 0 3.375 18c0 1.16.134 2.292.394 3.375h5.393A35 35 0 0 1 9.007 18c0-1.153.056-2.285.155-3.375zm20.285 16.692a14.7 14.7 0 0 0 6.919-6.567h-4.627c-.513 2.524-1.3 4.76-2.292 6.567m-12.108 0c-.991-1.8-1.779-4.043-2.292-6.567H5.02a14.7 14.7 0 0 0 6.92 6.567zM18 36a18 18 0 1 1 0-36 18 18 0 0 1 0 36"})}),a,u("svg",{className:"fides-i18n-caret",xmlns:"http://www.w3.org/2000/svg",height:"100%",fill:"currentColor",viewBox:"0 0 24 24",children:u("path",{d:"M12 13.172L16.95 8.22198L18.364 9.63598L12 16L5.63599 9.63598L7.04999 8.22198L12 13.172Z"})})]})]})},is=()=>{const{i18n:e}=q();if(!ve(e,"exp.privacy_policy_link_label")||!ve(e,"exp.privacy_policy_url"))return null;const t=e.t("exp.privacy_policy_link_label"),i=e.t("exp.privacy_policy_url");return u("div",{id:"fides-privacy-policy-link",style:{display:"flex",alignItems:"center",justifyContent:"center"},children:u("a",{href:i,rel:"noopener noreferrer",target:"_blank",className:"fides-privacy-policy",children:t})})},ns=({availableLocales:e=[V],onManagePreferencesClick:t,renderFirstButton:i,onAcceptAll:n,onRejectAll:o,hideOptInOut:r,hideRejectAll:a,options:s,isInModal:c,isTCF:d,isGVLLoading:f})=>{const{i18n:l}=q(),{setTrigger:_}=ue(),p=Ra("(max-width: 768px)"),{isActive:g,activate:h}=ze(!1),{isActive:m,activate:y}=ze(!1),b=l.availableLanguages?.length>1,w=ve(l,"exp.privacy_policy_link_label")&&ve(l,"exp.privacy_policy_url"),C=c&&s.showFidesBrandLink;return u("div",{id:"fides-button-group",children:[u("div",{className:c?"fides-modal-button-group fides-modal-primary-actions":"fides-banner-button-group fides-banner-primary-actions",children:[!!i&&i(),!r&&u(re,{children:[d&&!!t&&u(Te,{buttonType:Q.SECONDARY,label:l.t("exp.privacy_preferences_link_label"),onClick:()=>{_({type:W.BUTTON,label:l.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),!a&&u(Te,{buttonType:Q.PRIMARY,label:l.t("exp.reject_button_label"),onClick:()=>{_({type:W.BUTTON,label:l.t("exp.reject_button_label")}),o(),y()},className:"fides-reject-all-button",id:"fides-reject-all-button",loading:f,complete:m}),u(Te,{buttonType:Q.PRIMARY,label:l.t("exp.accept_button_label"),onClick:()=>{_({type:W.BUTTON,label:l.t("exp.accept_button_label")}),n(),h()},className:"fides-accept-all-button",id:"fides-accept-all-button",loading:f,complete:g})]})]}),u("div",{className:`${c?"fides-modal-button-group fides-modal-secondary-actions":"fides-banner-button-group fides-banner-secondary-actions"}${b?" fides-button-group-i18n":""}${w?" fides-button-group-privacy-policy":""}${C?" fides-button-group-brand":""}`,children:[b&&u(ts,{availableLocales:e,options:s,isTCF:!!d}),!d&&!!t&&u(Te,{buttonType:p?Q.SECONDARY:Q.TERTIARY,label:l.t("exp.privacy_preferences_link_label"),onClick:()=>{_({type:W.BUTTON,label:l.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),w&&u(is,{}),C&&u(ja,{})]})]})},so=({experience:e,onAcceptAll:t,onRejectAll:i,onSave:n,onManagePreferencesClick:o,enabledKeys:r,isInModal:a,isAcknowledge:s,hideOptInOut:c=!1,options:d})=>{const{isActive:f,activate:l}=ze(!1),{isActive:_,activate:p}=ze(!1),{i18n:g}=q(),{setTrigger:h}=ue();if(!e.experience_config||!e.privacy_notices)return null;const m=()=>{n(S.ACKNOWLEDGE,r)},y=()=>{n(S.SAVE,r)},b=()=>s?u(Te,{buttonType:Q.PRIMARY,label:g.t("exp.acknowledge_button_label"),onClick:()=>{h({type:W.BUTTON,label:g.t("exp.acknowledge_button_label")}),m(),l()},className:"fides-acknowledge-button",complete:f}):a?u(Te,{buttonType:c?Q.PRIMARY:Q.SECONDARY,label:g.t("exp.save_button_label"),onClick:()=>{h({type:W.BUTTON,label:g.t("exp.save_button_label")}),y(),p()},className:"fides-save-button",id:"fides-save-button",complete:_}):null;return u(ns,{availableLocales:e.available_locales,onManagePreferencesClick:o,onAcceptAll:t,onRejectAll:i,isInModal:a,renderFirstButton:b,hideOptInOut:c,options:d})};var os=['a[href]:not([tabindex^="-"])','area[href]:not([tabindex^="-"])','input:not([type="hidden"]):not([type="radio"]):not([disabled]):not([tabindex^="-"])','input[type="radio"]:not([disabled]):not([tabindex^="-"])','select:not([disabled]):not([tabindex^="-"])','textarea:not([disabled]):not([tabindex^="-"])','button:not([disabled]):not([tabindex^="-"])','iframe:not([tabindex^="-"])','audio[controls]:not([tabindex^="-"])','video[controls]:not([tabindex^="-"])','[contenteditable]:not([tabindex^="-"])','[tabindex]:not([tabindex^="-"])'],rs="Tab",as="Escape";function Z(e){this._show=this.show.bind(this),this._hide=this.hide.bind(this),this._maintainFocus=this._maintainFocus.bind(this),this._bindKeypress=this._bindKeypress.bind(this),this.$el=e,this.shown=!1,this._id=this.$el.getAttribute("data-a11y-dialog")||this.$el.id,this._previouslyFocused=null,this._listeners={},this.create()}Z.prototype.create=function(){this.$el.setAttribute("aria-hidden",!0),this.$el.setAttribute("aria-modal",!0),this.$el.setAttribute("tabindex",-1),this.$el.hasAttribute("role")||this.$el.setAttribute("role","dialog"),this._openers=je('[data-a11y-dialog-show="'+this._id+'"]'),this._openers.forEach(function(t){t.addEventListener("click",this._show)}.bind(this));const e=this.$el;return this._closers=je("[data-a11y-dialog-hide]",this.$el).filter(function(t){return t.closest('[aria-modal="true"], [data-a11y-dialog]')===e}).concat(je('[data-a11y-dialog-hide="'+this._id+'"]')),this._closers.forEach(function(t){t.addEventListener("click",this._hide)}.bind(this)),this._fire("create"),this},Z.prototype.show=function(e){if(this.shown)return this;this._previouslyFocused=document.activeElement;const t=e&&e.target?e.target:null;return t&&Object.is(this._previouslyFocused,document.body)&&(this._previouslyFocused=t),this.$el.removeAttribute("aria-hidden"),this.shown=!0,co(this.$el),document.body.addEventListener("focus",this._maintainFocus,!0),document.addEventListener("keydown",this._bindKeypress),this._fire("show",e),this},Z.prototype.hide=function(e){return this.shown?(this.shown=!1,this.$el.setAttribute("aria-hidden","true"),this._previouslyFocused&&this._previouslyFocused.focus&&this._previouslyFocused.focus(),document.body.removeEventListener("focus",this._maintainFocus,!0),document.removeEventListener("keydown",this._bindKeypress),this._fire("hide",e),this):this},Z.prototype.destroy=function(){return this.hide(),this._openers.forEach(function(e){e.removeEventListener("click",this._show)}.bind(this)),this._closers.forEach(function(e){e.removeEventListener("click",this._hide)}.bind(this)),this._fire("destroy"),this._listeners={},this},Z.prototype.on=function(e,t){return typeof this._listeners[e]>"u"&&(this._listeners[e]=[]),this._listeners[e].push(t),this},Z.prototype.off=function(e,t){var i=(this._listeners[e]||[]).indexOf(t);return i>-1&&this._listeners[e].splice(i,1),this},Z.prototype._fire=function(e,t){var i=this._listeners[e]||[],n=new CustomEvent(e,{detail:t});this.$el.dispatchEvent(n),i.forEach(function(o){o(this.$el,t)}.bind(this))},Z.prototype._bindKeypress=function(e){const t=document.activeElement;t&&t.closest('[aria-modal="true"]')!==this.$el||(this.shown&&e.key===as&&this.$el.getAttribute("role")!=="alertdialog"&&(e.preventDefault(),this.hide(e)),this.shown&&e.key===rs&&ls(this.$el,e))},Z.prototype._maintainFocus=function(e){this.shown&&!e.target.closest('[aria-modal="true"]')&&!e.target.closest("[data-a11y-dialog-ignore-focus-trap]")&&co(this.$el)};function ss(e){return Array.prototype.slice.call(e)}function je(e,t){return ss((t||document).querySelectorAll(e))}function co(e){var t=e.querySelector("[autofocus]")||e;t.focus()}function cs(e){return je(os.join(","),e).filter(function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)})}function ls(e,t){var i=cs(e),n=i.indexOf(document.activeElement);t.shiftKey&&n===0?(i[i.length-1].focus(),t.preventDefault()):!t.shiftKey&&n===i.length-1&&(i[0].focus(),t.preventDefault())}function ei(){je("[data-a11y-dialog]").forEach(function(e){new Z(e)})}typeof document<"u"&&(document.readyState==="loading"?document.addEventListener("DOMContentLoaded",ei):window.requestAnimationFrame?window.requestAnimationFrame(ei):window.setTimeout(ei,16));const ds=()=>{const[e,t]=U(null),i=O(n=>{if(n!==null){const o=new Z(n);t(o)}},[]);return{instance:e,container:i}},lo=({id:e,onClose:t,ariaHidden:i=!0})=>{const{instance:n,container:o}=ds(),r=`${e}-title`,a=O(()=>{n&&n.hide(),t&&t()},[t,n]);return P(()=>()=>{n&&n.destroy()},[n]),{instance:n,attributes:{container:{id:e,ref:o,role:"alertdialog","aria-hidden":i,"aria-labelledby":r},dialog:{role:"document"},closeButton:{type:"button",onClick:a},title:{role:"heading","aria-level":2,id:r}}}},fs=()=>u("svg",{xmlns:"http://www.w3.org/2000/svg",width:"18",height:"18",fill:"currentColor",children:u("path",{d:"M9 12.05a.68.68 0 0 0-.68.7c0 .39.32.7.68.7.39 0 .68-.31.68-.7a.66.66 0 0 0-.68-.7Zm0-1.18c.26 0 .44-.2.44-.46V6.19c0-.26-.2-.47-.44-.47a.49.49 0 0 0-.47.47v4.22c0 .25.21.46.47.46Zm7.27 2.27-5.85-9.9c-.3-.5-.83-.8-1.42-.8-.6 0-1.12.3-1.42.8l-5.86 9.9c-.3.5-.3 1.1-.01 1.6.3.51.83.82 1.43.82h11.72c.6 0 1.13-.3 1.43-.82.29-.5.28-1.1-.02-1.6Zm-.82 1.1c-.1.25-.33.38-.62.38H3.14a.7.7 0 0 1-.61-.35.64.64 0 0 1 0-.65l5.86-9.9A.7.7 0 0 1 9 3.37a.7.7 0 0 1 .61.35l5.86 9.9c.1.2.12.44-.02.63Z"})}),us=({title:e,description:t})=>u("div",{className:"fides-gpc-banner",children:[u("div",{className:"fides-gpc-warning",children:u(fs,{})}),u("div",{children:[u("p",{className:"fides-gpc-header",children:e}),u("p",{children:t})]})]}),fo=({titleProps:e,className:t,renderModalFooter:i,children:n,onVendorPageClick:o,headerContent:r,isVendorAssetDisclosureView:a})=>{const{title:s,description:c}=r,{i18n:d}=q(),f=de().globalPrivacyControl,l=d.t("static.gpc.title"),_=d.t("static.gpc.description");return u(re,{children:[u("div",{id:"fides-consent-content",className:t,children:u("div",{className:"fides-modal-body",children:[u("div",{...e,className:"fides-modal-title",children:s}),u("p",{className:"fides-modal-description",children:u(Yn,{onVendorPageClick:o,description:c,allowHTMLDescription:window.Fides?.options?.allowHTMLDescription})}),!a&&f&&u(us,{title:l,description:_}),n]})}),u("div",{className:"fides-modal-footer",children:i()})]})},ps=({attributes:e,children:t,dismissable:i,onVendorPageClick:n,renderModalFooter:o,headerContent:r,isVendorAssetDisclosureView:a})=>{const{container:s,dialog:c,title:d,closeButton:f}=e,{setTrigger:l}=ue(),{fidesGlobal:_}=Vn();return u("div",{...s,className:"fides-modal-container",children:[u("div",{className:"fides-modal-overlay"}),u("div",{...c,className:"fides-modal-content",children:[u("div",{className:"fides-modal-header",children:[u("div",{}),u(Hn,{ariaLabel:"Close modal",onClick:()=>{l({type:"button",label:"Close modal"}),f.onClick()},hidden:_?.options.preventDismissal||!i})]}),u(fo,{titleProps:d,renderModalFooter:o,onVendorPageClick:n,headerContent:r,isVendorAssetDisclosureView:a,children:t})]})]})},gs=()=>{const{message:e}=Un();return u("div",{role:"status","aria-live":"polite","aria-relevant":"additions",className:"fides-sr-only",id:"fides-overlay-live-region",children:e})},vs=({options:e,experience:t,cookie:i,savedConsent:n,onOpen:o,onDismiss:r,renderBanner:a,renderModalContent:s,renderModalFooter:c,onVendorPageClick:d,isUiBlocking:f,headerContent:l,isVendorAssetDisclosureView:_,onModalHide:p})=>{const{setServingComponent:g,dispatchFidesEventAndClearTrigger:h}=ue(),m=100,y=Oa(),b=e.modalLinkId||"fides-modal-link",w=!t||!!e.fidesEmbed||e.modalLinkId==="",C=Na(b,w),x=xe(null),[N,T]=U(null),{i18n:F}=q(),D=F.t("exp.title"),R=F.t("exp.description"),{globalPrivacyControl:H}=de(),pe=pt(D,!!H),Me=pt(R,!!H),X=l??{title:pe,description:Me};P(()=>{N===null&&T(!et(t,i,n,e))},[N]);const[Y,te]=U(e.fidesEmbed?et(t,i,n,e):!1);P(()=>(f&&Y?na():dn(),()=>{dn()}),[f,Y]);const Ue=O(({saved:k=!1})=>{k||r(),h("FidesModalClosed",i,{saved:k}),g(void 0)},[h,i,r,g]),{instance:J,attributes:$e}=lo({id:"fides-modal",onClose:()=>{Ue({saved:!1}),p&&p()}});P(()=>{J&&J.on("show",()=>{document.documentElement.style.overflowY="hidden"}).on("hide",()=>{document.documentElement.style.overflowY=""})},[J]);const{attributes:ti}=lo({id:"fides-banner",ariaHidden:!Y&&!e.fidesEmbed,onClose:()=>{te(!1)}}),Ne=O((k=ge.FIDES)=>{e.fidesEmbed?te(!1):J&&(te(!1),J.show(),o(k))},[J,o,e]),Be=O(()=>{J&&!e.fidesEmbed&&(J.hide(),Ue({saved:!0}),p&&p())},[J,Ue,e.fidesEmbed,p]);P(()=>{e.fidesEmbed&&!Y&&o()},[e,o,Y]),P(()=>{const k=setTimeout(()=>{N===!1&&te(!0)},m);return()=>clearTimeout(k)},[N,te]),P(()=>(t&&!e.fidesEmbed&&window.Fides&&(window.Fides.showModal=()=>{Ne(ge.EXTERNAL)}),()=>{window.Fides&&(window.Fides.showModal=At)}),[t,Ne,e.fidesEmbed]),P(()=>{e.fidesModalDisplay==="immediate"&&Ne()},[e.fidesModalDisplay,Ne]),P(()=>(document.body.classList.add("fides-overlay-modal-link-shown"),w||C&&(x.current=C,x.current.addEventListener("click",window.Fides?.showModal),x.current.classList.add("fides-modal-link-shown")),()=>{x.current&&x.current.removeEventListener("click",window.Fides?.showModal)}),[C,w,b]);const ii=()=>{Ne()};return!y||!t.experience_config?null:u("div",{id:Po,tabIndex:-1,children:[!N&&Y&&f&&u("div",{className:"fides-modal-overlay"}),e.fidesEmbed?Y||!s||!c?null:u(fo,{titleProps:$e.title,renderModalFooter:()=>c({onClose:Be,isMobile:!1}),onVendorPageClick:d,headerContent:X,isVendorAssetDisclosureView:_,children:s()}):u(ps,{attributes:$e,dismissable:t.experience_config.dismissable,onVendorPageClick:d,headerContent:X,isVendorAssetDisclosureView:_,renderModalFooter:()=>c?c({onClose:Be,isMobile:!1}):null,children:s&&s()}),!N&&a({attributes:ti,isOpen:Y,isEmbedded:e.fidesEmbed,onClose:()=>{te(!1)},onManagePreferencesClick:ii}),u(gs,{})]})},_s=({label:e,name:t,id:i,checked:n,onChange:o,disabled:r,onLabel:a,offLabel:s})=>{const{setTrigger:c}=ue(),d=n?a:s;return u("div",{className:"fides-toggle",children:[u("input",{type:"checkbox",name:t,"aria-label":e,className:"fides-toggle-input",onChange:()=>{c({type:W.TOGGLE,label:e,checked:!n}),o(i)},checked:n,role:"switch",disabled:r}),u("span",{className:"fides-toggle-display",children:d})]})},uo=({noticeKey:e,title:t,checked:i,onToggle:n,children:o,badge:r,gpcBadge:a,disabled:s,onLabel:c,offLabel:d,isHeader:f,includeToggle:l=!0})=>{const{isOpen:_,getButtonProps:p,getDisclosureProps:g,onToggle:h}=Ta({id:e}),m=(w,C)=>{(w.code==="Space"||w.code==="Enter")&&(w.preventDefault(),C&&h())},y=o!=null,b=y?p():{};return u("div",{className:_&&y?"fides-notice-toggle fides-notice-toggle-expanded":"fides-notice-toggle",children:[u("div",{className:"fides-notice-toggle-title",children:[u("span",{role:"button",tabIndex:0,onKeyDown:w=>m(w,y),...b,className:f?"fides-notice-toggle-trigger fides-notice-toggle-header":"fides-notice-toggle-trigger",children:u("span",{className:"fides-flex-center fides-justify-space-between",children:t})}),u("span",{className:"fides-notice-toggle-controls",children:l?u(_s,{label:t,name:e,id:e,checked:i,onChange:n,disabled:s,onLabel:c,offLabel:d}):null}),u("div",{className:"fides-badge-container",children:[a,r?u("span",{className:"fides-notice-badge",children:r}):null]})]},e),o?u("div",{...g(),children:o}):null]})},hs=()=>u("hr",{className:"fides-divider"}),bs=({noticeToggles:e,enabledNoticeKeys:t,onChange:i,renderDescription:n})=>{const{i18n:o}=q(),r=c=>{const d={key:c,type:"notice"};t.indexOf(c)===-1?i([...t,c],d):i(t.filter(f=>f!==c),d)};let a,s;return Hi(o)===V&&(a="On",s="Off"),u("div",{children:e.map((c,d)=>{const{noticeKey:f,title:l,description:_,checked:p,disabled:g,gpcStatus:h}=c,m=d===e.length-1;return u("div",{children:[u(uo,{noticeKey:f,title:l,checked:p,onToggle:r,gpcBadge:u(Wn,{status:h}),disabled:g,onLabel:a,offLabel:s,children:n?n(c):_}),m?null:u(hs,{})]},f)})})},ys=({cookiesByNotice:e,onBack:t})=>{const{i18n:i}=q();return u("div",{children:[u("button",{type:"button",className:"fides-link-button",onClick:t,"aria-label":"back",children:u("span",{className:"fides-flex-center fides-back-link",style:{marginBottom:"12px"},children:i.t("static.other.back")})}),e.length>=1?u("div",{style:{marginTop:"8px",marginBottom:"8px"},children:u("strong",{children:i.t("static.other.vendors")})}):null,u("div",{className:"fides-modal-notices",style:{marginTop:"12px"},children:(()=>{const n=new Map;return e.forEach(r=>{(r.cookies||[]).forEach(a=>{const s=a.system_name||"Other",c=n.get(s)||[];c.push(a),n.set(s,c)})}),Array.from(n.entries()).map(([r,a])=>{const s=a.some(c=>c.duration!=null&&c.duration!=="");return u("div",{children:u(uo,{noticeKey:`vendor-${r}`,title:r,checked:!1,onToggle:()=>{},includeToggle:!1,children:u("table",{className:"fides-vendor-details-table",children:[u("thead",{children:u("tr",{children:[u("th",{width:s?"80%":void 0,children:i.t("static.other.cookies")}),s?u("th",{width:"20%",style:{textAlign:"right"},children:i.t("static.other.retention")}):null]})}),u("tbody",{children:a.map(c=>u("tr",{children:[u("td",{style:{paddingBottom:"2px",paddingTop:"2px"},children:[u("div",{children:c.name}),c.description?u("div",{children:[i.t("static.other.description"),":"," ",c.description]}):null]}),s?u("td",{style:{textAlign:"right"},children:c.duration?c.duration:"-"}):null]},`${r}-${c.name}`))})]})})},`vendor-${r}`)})})()})]})},ms=()=>{const{fidesGlobal:e,setFidesGlobal:t}=Vn(),{fidesRegionString:i,cookie:n,options:o,saved_consent:r}=e,a=e.experience,{i18n:s,currentLocale:c,setCurrentLocale:d}=q(),{triggerRef:f,setTrigger:l,servingComponentRef:_,setServingComponent:p,dispatchFidesEventAndClearTrigger:g}=ue(),h=we(o.fidesCookieSuffix),m=O(k=>a.privacy_notices?a.privacy_notices.map(A=>gi(A,k)?A.notice_key:""):[],[a.privacy_notices]);P(()=>{!c&&s.locale&&d(s.locale)},[c,s.locale,d]);const y=se(()=>{if(a.experience_config)return nt(c,s.getDefaultLocale(),a.experience_config)?.privacy_experience_config_history_id},[a,c]),b=se(()=>{const A=(a.privacy_notices??[]).map(K=>{const Oe=K.consent_mechanism===B.NOTICE_ONLY||(o.fidesDisabledNotices?.includes(K.notice_key)??!1)||K.disabled,ni=Pt(c,s.getDefaultLocale(),K);return{notice:{...K,disabled:Oe},bestTranslation:ni}}),z=A.filter(K=>K.notice.consent_mechanism===B.NOTICE_ONLY),$=A.filter(K=>K.notice.consent_mechanism!==B.NOTICE_ONLY);return[...z,...$]},[a.privacy_notices,c,o.fidesDisabledNotices]),[w,C]=U(m(n?.consent));wa(()=>{const k=A=>{const z=A,{consent:$}=z.detail;Object.entries($).forEach(([K,Oe])=>{$[K]=Pe(Oe)}),C(m($)),window.removeEventListener("FidesUpdating",k)};return window.addEventListener("FidesUpdating",k),()=>{window.removeEventListener("FidesUpdating",k)}},[]);const x=b.every(k=>k.notice.consent_mechanism===B.NOTICE_ONLY),N=b.map(k=>{const A=w.indexOf(k.notice.notice_key)!==-1,z=de(),$=Pi({value:A,notice:k.notice,consentContext:z});return{noticeKey:k.notice.notice_key,title:k.bestTranslation?.title||k.notice.name||"",description:k.bestTranslation?.description,cookies:k.notice.cookies,checked:A,consentMechanism:k.notice.consent_mechanism,disabled:k.notice.disabled,gpcStatus:$}}),[T,F]=U(!1),[D,R]=U(null),H=se(()=>D?b.find(k=>k.notice.notice_key===D):null,[D,b]),pe=b.map(k=>({noticeKey:k.notice.notice_key,title:k.bestTranslation?.title||k.notice.name||"",cookies:k.notice.cookies||[]})).filter(k=>k.cookies&&k.cookies.length>0),Me=D?pe.filter(k=>k.noticeKey===D):pe;Sa({privacyExperienceConfigHistoryId:y,privacyNoticeHistoryIds:b.reduce((k,A)=>{const z=A.bestTranslation?.privacy_notice_history_id;return z&&k.push(z),k},[]),options:o,userGeography:i,acknowledgeMode:x,privacyExperience:a});const X=O((k,A)=>{const z={};b.forEach($=>{$.notice.consent_mechanism!==B.NOTICE_ONLY?z[$.notice.notice_key]=A.includes($.notice.notice_key):z[$.notice.notice_key]=!0}),Ft(e,{noticeConsent:z,consentMethod:k,eventExtraDetails:{servingComponent:_.current,trigger:f.current}}).finally(()=>{window.Fides&&t(window.Fides),l(void 0)}),C(A)},[b,e,_,f,l,t]),Y=O(k=>{X(k?S.SCRIPT:S.ACCEPT,b.filter(A=>!A.notice.disabled||w.includes(A.notice.notice_key)).map(A=>A.notice.notice_key))},[w,X,b]),te=O(k=>{X(k?S.SCRIPT:S.REJECT,b.filter(A=>A.notice.consent_mechanism===B.NOTICE_ONLY||A.notice.disabled&&w.includes(A.notice.notice_key)).map(A=>A.notice.notice_key))},[w,X,b]);P(()=>{Qe(o)&&a.privacy_notices&&(o.fidesConsentOverride===S.ACCEPT?Y(!0):o.fidesConsentOverride===S.REJECT&&te(!0))},[a.privacy_notices,o.fidesConsentOverride]);const Ue=O(()=>{p(Se.BANNER),g("FidesUIShown",n)},[n,g,p]),J=O(k=>{p(Se.MODAL),g("FidesUIShown",n,{trigger:{origin:k}})},[n,g,p]),$e=O(()=>{wt(h?.consent)||X(S.DISMISS,m(n?.consent))},[X,m,h?.consent,n?.consent]),ti=O((k,A)=>{const z={servingComponent:_.current,trigger:f.current,preference:A};C(k),g("FidesUIChanged",n,z)},[f,g,n,_]);if(!a.experience_config)return null;const Be=!!a.experience_config?.dismissable,ii=b.length===1;return u(vs,{options:o,experience:a,cookie:n,savedConsent:r,isUiBlocking:!Be,isVendorAssetDisclosureView:T,onModalHide:()=>{F(!1),R(null)},headerContent:T&&H?{title:H.bestTranslation?.title||H.notice.name||"",description:H.bestTranslation?.description||""}:void 0,onOpen:J,onDismiss:$e,renderBanner:({attributes:k,isEmbedded:A,isOpen:z,onClose:$,onManagePreferencesClick:K})=>{const Oe=a.experience_config?.layer1_button_options,ni=de(),xs=Oe===Ge.GPC_CONDITIONAL,po=x||Oe===Ge.ACKNOWLEDGE||xs&&ni.globalPrivacyControl===!0;return u(Da,{attributes:k,bannerIsOpen:z,dismissable:Be,onOpen:Ue,onClose:()=>{$(),$e()},isEmbedded:A,renderButtonGroup:()=>u(so,{experience:a,onManagePreferencesClick:K,enabledKeys:w,onAcceptAll:()=>{Y(),$()},onRejectAll:()=>{te(),$()},onSave:(As,Ts)=>{X(As,Ts),$()},isAcknowledge:po,hideOptInOut:po,options:o})})},renderModalContent:()=>u("div",{children:T?u(ys,{cookiesByNotice:Me,onBack:()=>{F(!1),R(null)}}):u("div",{className:"fides-modal-notices",children:u(bs,{noticeToggles:N,enabledNoticeKeys:w,onChange:ti,renderDescription:k=>{const A=(k.cookies||[]).length>0;return u("div",{children:[k.description,A&&a.experience_config?.asset_disclosure_include_types?.includes(vt.COOKIE)&&a.experience_config?.allow_vendor_asset_disclosure?u("div",{style:{marginTop:"12px"},children:u("button",{type:"button",className:"fides-link-button fides-vendors-disclosure-link",onClick:()=>{R(k.noticeKey),F(!0)},children:s.t("static.other.vendors")})}):null]})}})})}),renderModalFooter:({onClose:k})=>u(so,{experience:a,enabledKeys:w,onAcceptAll:()=>{Y(),k()},onRejectAll:()=>{te(),k()},onSave:(A,z)=>{X(A,z),k()},isInModal:!0,isAcknowledge:x,hideOptInOut:ii||x,options:o})})},ks=(e,t)=>{const{i18n:i,initializedFides:n}=e;xn(u(La,{i18nInstance:i,children:u(Ia,{initializedFides:n,children:u(Pa,{children:u(xa,{children:u(ms,{})})})})}),t)};async function ws(e){if(!e.options.apiOptions?.getPreferencesFn)return null;try{return await e.options.apiOptions.getPreferencesFn(e)}catch{return null}}async function Es(e){let t=e??this.config??Dt("Fides must be initialized with a configuration object");No(!!t.options?.debug),this.config=t,oe("FidesInitializing",void 0,{gppEnabled:this.config.options.gppEnabled||this.config.experience?.gpp_settings?.enabled,tcfEnabled:this.config.options.tcfEnabled});const i=un(ke.OPTIONS,t),n=un(ke.EXPERIENCE_TRANSLATION,t),o=await ws(t);!i.fidesString&&o?.fides_string&&(i.fidesString=o.fides_string);const r={optionsOverrides:i,experienceTranslationOverrides:n};To(i),t={...t,options:{...t.options,...r.optionsOverrides}},this.config=t;let a;if(!we(t.options.fidesCookieSuffix)){const{consent:l,method:_}=Ti(i);l&&_&&(a=l)}this.cookie=aa(t),this.cookie.consent={...this.cookie.consent,...a},this.saved_consent={...this.cookie.consent};const{fidesString:s}=t.options;if(s)try{const{nc:l}=Nt(s);this.decodeNoticeConsentString(l);const _={fides_string:s};this.cookie={...this.cookie,..._}}catch{}if(this.experience=t.experience,!hi(this.cookie)||!!a){const l=sa({...t,cookie:this.cookie,savedConsent:this.saved_consent,updateExperienceFromCookieConsent:Et});Object.assign(this,l),ot(this),this.experience=l.experience,Di(this.cookie,{shouldShowExperience:this.shouldShowExperience()})}const f=await ca({fides:this,initOverlay:Nn,renderOverlay:ks,updateExperience:sn,overrides:r});Object.assign(this,f),ot(this),Ri(this.cookie,{shouldShowExperience:this.shouldShowExperience()})}const Cs={...cn({}),init:Es};ot(Cs),v.AssetType=vt,v.BannerEnabled=ai,v.ButtonType=Q,v.CONSENT_COOKIE_MAX_AGE_DAYS=vi,v.CONSENT_COOKIE_NAME=mt,v.ComponentType=j,v.ConsentFlagType=ce,v.ConsentMechanism=B,v.ConsentMethod=S,v.ConsentNonApplicableFlagMode=me,v.DEFAULT_LOCALE=V,v.DEFAULT_MODAL_LINK_LABEL=Ze,v.EnforcementLevel=ri,v.FidesEndpointPaths=Zi,v.FidesEventOrigin=ge,v.FidesEventTargetType=W,v.FidesModalDefaultView=si,v.GpcStatus=ie,v.LOCALE_REGEX=Xe,v.Layer1ButtonOption=Ge,v.OverrideType=ke,v.PrivacyNoticeFramework=oi,v.REQUEST_SOURCE=tn,v.RejectAllMechanism=ci,v.RequestOrigin=li,v.SaveConsentPreference=ye,v.ServingComponent=Se,v.UpdateConsentValidation=le,v.UserConsentPreference=G,v.allNoticesAreDefaultOptIn=Fo,v.applyOverridesToConsent=Ie,v.areLocalesEqual=ee,v.buildCookieConsentFromConsentPreferences=Ei,v.consentCookieObjHasSomeConsentSet=wt,v.constructFidesRegionString=Je,v.createConsentPreferencesToSave=Ro,v.createConsentProxy=Tt,v.createEmptyExperience=Xi,v.decodeNoticeConsentString=tt,v.defaultShowModal=At,v.detectUserLocale=Ki,v.dispatchConsentLoadedEvents=Di,v.dispatchFidesEvent=oe,v.dispatchReadyEvents=Ri,v.encodeNoticeConsentString=Ii,v.experienceIsValid=Si,v.extractDefaultLocaleFromExperience=Lt,v.fetchExperience=Ji,v.fetchGvlTranslations=Qi,v.getConsentContext=de,v.getCookieByName=qe,v.getCoreFides=cn,v.getCurrentLocale=Hi,v.getFidesConsentCookie=we,v.getGeolocation=ln,v.getGpcStatusFromNotice=Pi,v.getOrMakeFidesCookie=yi,v.getOverrideValidatorMapByType=Oi,v.getTcfDefaultPreference=Do,v.getWindowObjFromPath=Li,v.i18n=qr,v.initOverlay=Nn,v.initializeI18n=Wi,v.isConsentOverride=Qe,v.isNewFidesCookie=hi,v.isPrivacyExperience=Ee,v.isValidAcString=Mo,v.loadGVLMessagesFromExperience=Gi,v.loadMessagesFromExperience=Bi,v.loadMessagesFromFiles=$i,v.loadMessagesFromGVLTranslations=Vi,v.localizeModalLinkText=qi,v.makeConsentDefaultsLegacy=ki,v.makeFidesCookie=bi,v.matchAvailableLocales=Yi,v.messageExists=ve,v.noticeHasConsentInCookie=Ye,v.onFidesEvent=Fi,v.parseCommaSeparatedString=bt,v.patchNoticesServed=on,v.patchUserPreference=nn,v.processExternalConsentValue=Pe,v.raise=Dt,v.removeCookiesFromBrowser=wi,v.resolveConsentValue=gi,v.resolveLegacyConsentValue=pi,v.saveFidesCookie=mi,v.selectBestExperienceConfigTranslation=nt,v.selectBestNoticeTranslation=Pt,v.setupI18n=It,v.shouldResurfaceBanner=et,v.transformConsentToFidesUserPreference=Le,v.transformTcfPreferencesToCookieKeys=Eo,v.transformUserPreferenceToBoolean=ne,v.updateCookieFromExperience=xi,v.updateCookieFromNoticePreferences=Ci,v.updateExperience=sn,v.updateExperienceFromCookieConsentNotices=Et,v.updateWindowFides=ot,v.validateOptions=Ni});
|