ethyca-fides 2.73.2b0__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.
Files changed (453) hide show
  1. {ethyca_fides-2.73.2b0.dist-info → ethyca_fides-2.76.0rc2.dist-info}/METADATA +2 -1
  2. {ethyca_fides-2.73.2b0.dist-info → ethyca_fides-2.76.0rc2.dist-info}/RECORD +349 -336
  3. fides/_version.py +3 -3
  4. fides/api/alembic/migrations/versions/303287c70600_migrate_resource_type_from_enum_to_.py +99 -0
  5. fides/api/alembic/migrations/versions/795f46f656c0_migrate_field_type_from_enum_to_string.py +61 -0
  6. fides/api/alembic/migrations/versions/xx_2025_10_29_1659_80d28dea3b6b_added_duplicate_group_table.py +79 -0
  7. fides/api/alembic/migrations/versions/xx_2025_11_05_0200_f1a2b3c4d5e6_create_staged_resource_error_table.py +82 -0
  8. fides/api/alembic/migrations/versions/xx_2025_11_07_1709_56fe6fad2d89_add_notice_display_order.py +47 -0
  9. fides/api/alembic/migrations/versions/xx_2025_11_10_1200_a1b2c3d4e5f6_add_test_datastore_to_connectiontype.py +53 -0
  10. fides/api/alembic/migrations/versions/xx_2025_11_11_1317_7d82c8fc4c34_store_saas_template_datasets.py +68 -0
  11. fides/api/alembic/migrations/versions/xx_2025_11_12_1430_b2c3d4e5f6a7_add_default_identity_definitions.py +81 -0
  12. fides/api/alembic/migrations/versions/xx_2025_11_25_1854_3ff6449c099e_add_index_on_providedidentity_privacy_.py +50 -0
  13. fides/api/api/v1/api.py +2 -0
  14. fides/api/api/v1/endpoints/admin.py +39 -0
  15. fides/api/api/v1/endpoints/connector_template_endpoints.py +167 -0
  16. fides/api/api/v1/endpoints/generic_overrides.py +6 -6
  17. fides/api/api/v1/endpoints/pre_approval_webhook_endpoints.py +5 -5
  18. fides/api/api/v1/endpoints/privacy_request_endpoints.py +101 -21
  19. fides/api/api/v1/endpoints/saas_config_endpoints.py +3 -44
  20. fides/api/api/v1/endpoints/storage_endpoints.py +5 -1
  21. fides/api/api/v1/endpoints/system.py +2 -2
  22. fides/api/api/v1/endpoints/user_endpoints.py +10 -4
  23. fides/api/db/base.py +1 -0
  24. fides/api/db/database.py +228 -1
  25. fides/api/db/seed.py +1 -1
  26. fides/api/email_templates/templates/external_user_welcome.html +9 -5
  27. fides/api/migrations/post_upgrade_index_creation.py +10 -0
  28. fides/api/models/connectionconfig.py +4 -1
  29. fides/api/models/detection_discovery/__init__.py +2 -0
  30. fides/api/models/detection_discovery/core.py +10 -0
  31. fides/api/models/detection_discovery/staged_resource_error.py +25 -0
  32. fides/api/models/experience_notices.py +6 -1
  33. fides/api/models/identity_definition.py +2 -1
  34. fides/api/models/location_regulation_selections.py +22 -0
  35. fides/api/models/manual_webhook.py +17 -6
  36. fides/api/models/messaging_template.py +7 -0
  37. fides/api/models/policy.py +3 -0
  38. fides/api/models/privacy_experience.py +20 -0
  39. fides/api/models/privacy_notice.py +45 -1
  40. fides/api/models/privacy_preference.py +1 -0
  41. fides/api/models/privacy_request/duplicate_group.py +84 -0
  42. fides/api/models/privacy_request/privacy_request.py +84 -9
  43. fides/api/models/privacy_request/provided_identity.py +22 -1
  44. fides/api/models/saas_template_dataset.py +63 -0
  45. fides/api/models/sql_models.py +150 -7
  46. fides/api/models/taxonomy.py +61 -1
  47. fides/api/oauth/roles.py +2 -0
  48. fides/api/schemas/connection_configuration/connection_secrets_mssql.py +5 -0
  49. fides/api/schemas/messaging/messaging.py +1 -0
  50. fides/api/schemas/oauth.py +2 -1
  51. fides/api/schemas/privacy_request.py +38 -6
  52. fides/api/schemas/saas/connector_template.py +14 -0
  53. fides/api/service/async_dsr/strategies/async_dsr_strategy_polling.py +19 -7
  54. fides/api/service/connectors/base_erasure_email_connector.py +7 -0
  55. fides/api/service/connectors/microsoft_sql_server_connector.py +6 -1
  56. fides/api/service/connectors/saas/connector_registry_service.py +45 -1
  57. fides/api/service/messaging/message_dispatch_service.py +44 -4
  58. fides/api/service/privacy_request/dsr_package/dsr_report_builder.py +3 -3
  59. fides/api/service/privacy_request/dsr_package/templates/attachments_index.html +41 -30
  60. fides/api/service/privacy_request/dsr_package/templates/clickme.html +68 -0
  61. fides/api/service/privacy_request/dsr_package/templates/dataset_index.html +30 -27
  62. fides/api/service/privacy_request/duplication_detection.py +439 -0
  63. fides/api/service/privacy_request/email_batch_service.py +2 -1
  64. fides/api/service/privacy_request/request_runner_service.py +31 -5
  65. fides/api/service/privacy_request/request_service.py +4 -2
  66. fides/api/service/saas_request/saas_request_override_factory.py +7 -2
  67. fides/api/task/conditional_dependencies/privacy_request/__init__.py +0 -0
  68. fides/api/task/conditional_dependencies/privacy_request/convenience_fields.py +155 -0
  69. fides/api/task/conditional_dependencies/privacy_request/privacy_request_data.py +140 -0
  70. fides/api/task/conditional_dependencies/privacy_request/schemas.py +212 -0
  71. fides/api/task/conditional_dependencies/util.py +111 -0
  72. fides/api/task/execute_request_tasks.py +17 -4
  73. fides/api/task/manual/manual_task_conditional_evaluation.py +32 -27
  74. fides/api/task/manual/manual_task_graph_task.py +4 -1
  75. fides/api/task/manual/manual_task_utils.py +63 -20
  76. fides/api/tasks/__init__.py +14 -0
  77. fides/api/util/cache.py +4 -0
  78. fides/api/util/connection_util.py +2 -3
  79. fides/api/util/fuzzy_search_utils.py +7 -1
  80. fides/api/util/lock.py +13 -3
  81. fides/api/util/logger.py +58 -4
  82. fides/api/util/logger_context_utils.py +3 -1
  83. fides/api/util/memory_watchdog.py +118 -0
  84. fides/api/util/saas_config_updater.py +12 -2
  85. fides/api/worker/__init__.py +4 -0
  86. fides/common/api/scope_registry.py +6 -0
  87. fides/common/api/v1/urn_registry.py +11 -2
  88. fides/config/__init__.py +8 -2
  89. fides/config/celery_settings.py +42 -0
  90. fides/service/messaging/messaging_service.py +75 -74
  91. fides/service/privacy_request/privacy_request_service.py +151 -19
  92. fides/ui-build/static/admin/404.html +1 -1
  93. fides/ui-build/static/admin/_next/static/chunks/1099-688fa865621531cc.js +1 -0
  94. fides/ui-build/static/admin/_next/static/chunks/{1115-26393b586775ea29.js → 1115-7fd171dac1eb0e51.js} +1 -1
  95. fides/ui-build/static/admin/_next/static/chunks/1276.deb10ae2643f8463.js +1 -0
  96. fides/ui-build/static/admin/_next/static/chunks/1438-8a33b3834d6e43f3.js +1 -0
  97. fides/ui-build/static/admin/_next/static/chunks/{6148-59a59d5c5925344f.js → 1533-84e250d1f26e6d7d.js} +1 -1
  98. fides/ui-build/static/admin/_next/static/chunks/1821-c1daa160f492aacf.js +1 -0
  99. fides/ui-build/static/admin/_next/static/chunks/1840-359ee056e4cf6629.js +1 -0
  100. fides/ui-build/static/admin/_next/static/chunks/{1975.afe8cad52f904fcf.js → 1975.bef017bc80e2012c.js} +1 -1
  101. fides/ui-build/static/admin/_next/static/chunks/{2040-7eed8491ca7276ed.js → 2040-70972e15960d9afe.js} +1 -1
  102. fides/ui-build/static/admin/_next/static/chunks/2121.321b0fd3932164d4.js +1 -0
  103. fides/ui-build/static/admin/_next/static/chunks/{2397-083fc511acb6105d.js → 2397-3434603a97f3f5d6.js} +1 -1
  104. fides/ui-build/static/admin/_next/static/chunks/2921-49ed0ed897832958.js +1 -0
  105. fides/ui-build/static/admin/_next/static/chunks/3150-da5406b80d25fe6d.js +1 -0
  106. fides/ui-build/static/admin/_next/static/chunks/3214-90ce0a366b0f461a.js +1 -0
  107. fides/ui-build/static/admin/_next/static/chunks/3377-02bf9780fd383d94.js +1 -0
  108. fides/ui-build/static/admin/_next/static/chunks/3615-5e2d062d684b8fa1.js +1 -0
  109. fides/ui-build/static/admin/_next/static/chunks/3655-5e1ba5dd68b5ec48.js +1 -0
  110. fides/ui-build/static/admin/_next/static/chunks/3729-31ff8ba51491bf21.js +1 -0
  111. fides/ui-build/static/admin/_next/static/chunks/3872-cff30ca0844fe2b1.js +1 -0
  112. fides/ui-build/static/admin/_next/static/chunks/3931-8bedde156fe83564.js +1 -0
  113. fides/ui-build/static/admin/_next/static/chunks/{401-7c345d019bb9bcbd.js → 401-582d9970d89deefe.js} +1 -1
  114. fides/ui-build/static/admin/_next/static/chunks/4093-7e47408c28de5375.js +1 -0
  115. fides/ui-build/static/admin/_next/static/chunks/{4259.d1507e0db19cbed7.js → 4259.05038c9b78467244.js} +1 -1
  116. fides/ui-build/static/admin/_next/static/chunks/4322-f6aeff6880726c83.js +1 -0
  117. fides/ui-build/static/admin/_next/static/chunks/4339-04a715ab07122744.js +1 -0
  118. fides/ui-build/static/admin/_next/static/chunks/4496-ccbce2459174e0d6.js +1 -0
  119. fides/ui-build/static/admin/_next/static/chunks/454-d5c2c84f1a14e4f1.js +1 -0
  120. fides/ui-build/static/admin/_next/static/chunks/4589-c1d83c6a8dab4d30.js +1 -0
  121. fides/ui-build/static/admin/_next/static/chunks/4809-a8f4a108a42f53ed.js +1 -0
  122. fides/ui-build/static/admin/_next/static/chunks/4903-19c0bc07a956dfa8.js +1 -0
  123. fides/ui-build/static/admin/_next/static/chunks/4910-d990773601f794c1.js +1 -0
  124. fides/ui-build/static/admin/_next/static/chunks/{5185-e7f8b81dd3dfbe0b.js → 5185-96423702fba70ced.js} +1 -1
  125. fides/ui-build/static/admin/_next/static/chunks/5258-4e308cca01d59367.js +1 -0
  126. fides/ui-build/static/admin/_next/static/chunks/5487-5c3501754bf027ba.js +1 -0
  127. fides/ui-build/static/admin/_next/static/chunks/549-1bdc3e6f3264c020.js +1 -0
  128. fides/ui-build/static/admin/_next/static/chunks/5505-43b9c39491b88e08.js +1 -0
  129. fides/ui-build/static/admin/_next/static/chunks/{5783-21775c232dce7af7.js → 5783-016dfcee8e49bf61.js} +1 -1
  130. fides/ui-build/static/admin/_next/static/chunks/5826-4db99ea4e5077911.js +1 -0
  131. fides/ui-build/static/admin/_next/static/chunks/590-be447cacf12419dd.js +1 -0
  132. fides/ui-build/static/admin/_next/static/chunks/6084-91badbc6569a0efb.js +1 -0
  133. fides/ui-build/static/admin/_next/static/chunks/6344-026cb323c1d49926.js +1 -0
  134. fides/ui-build/static/admin/_next/static/chunks/6362-ba0e12f2fc4cad94.js +1 -0
  135. fides/ui-build/static/admin/_next/static/chunks/{6853-de9905d28e5b19b3.js → 6853-882889659769d7b4.js} +1 -1
  136. fides/ui-build/static/admin/_next/static/chunks/6882-bb1b469d7d7f5335.js +1 -0
  137. fides/ui-build/static/admin/_next/static/chunks/6954-0dcf22a9aabe39c5.js +1 -0
  138. fides/ui-build/static/admin/_next/static/chunks/7170-46db82bb5b55e856.js +1 -0
  139. fides/ui-build/static/admin/_next/static/chunks/7218-2ace8c82e3e7eb74.js +1 -0
  140. fides/ui-build/static/admin/_next/static/chunks/{7245-c9bc628d078c2170.js → 7245-1cdafb35f289861b.js} +1 -1
  141. fides/ui-build/static/admin/_next/static/chunks/7630-7f75ab7b8df42eb3.js +1 -0
  142. fides/ui-build/static/admin/_next/static/chunks/7654-2e9a8be02e41769a.js +1 -0
  143. fides/ui-build/static/admin/_next/static/chunks/{8212-393420e5a9751791.js → 8212-348ddd2b6933db70.js} +1 -1
  144. fides/ui-build/static/admin/_next/static/chunks/9014-eeae6f581158e645.js +1 -0
  145. fides/ui-build/static/admin/_next/static/chunks/{5596-29a7c8322530b7cf.js → 9195-da717d324917b049.js} +3 -3
  146. fides/ui-build/static/admin/_next/static/chunks/9450-b7b7bb1d755ecf57.js +1 -0
  147. fides/ui-build/static/admin/_next/static/chunks/{9676.7d029a5383595b69.js → 9676.1f395eeb9cc34968.js} +1 -1
  148. fides/ui-build/static/admin/_next/static/chunks/{9826-a737a9956c1d0905.js → 9826-1078e46f3ac0b688.js} +1 -1
  149. fides/ui-build/static/admin/_next/static/chunks/9911-ece086f2230e34f0.js +1 -0
  150. fides/ui-build/static/admin/_next/static/chunks/pages/{404-eb019192ce498f32.js → 404-800be6996aaa999c.js} +1 -1
  151. fides/ui-build/static/admin/_next/static/chunks/pages/{_app-ee588a308812715d.js → _app-de4b578c904df772.js} +70 -70
  152. fides/ui-build/static/admin/_next/static/chunks/pages/add-systems/{manual-7081e0e49f67716c.js → manual-f12020b82dd4bd1a.js} +1 -1
  153. fides/ui-build/static/admin/_next/static/chunks/pages/add-systems/{multiple-a188f84239f4b2a8.js → multiple-a911b7990371704d.js} +1 -1
  154. fides/ui-build/static/admin/_next/static/chunks/pages/{add-systems-ee9df33ebd471099.js → add-systems-ad585b79953c2753.js} +1 -1
  155. fides/ui-build/static/admin/_next/static/chunks/pages/consent/configure/{add-vendors-4f9cf087fcee87e6.js → add-vendors-bb263d394ca1c8fa.js} +1 -1
  156. fides/ui-build/static/admin/_next/static/chunks/pages/consent/configure-6907c368d8611c44.js +1 -0
  157. fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-experience/{[id]-1b02a4991201b7e4.js → [id]-c32f381af358149b.js} +1 -1
  158. fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-experience/{new-a5e738a234dadc7e.js → new-6efb3c069d8b47dd.js} +1 -1
  159. fides/ui-build/static/admin/_next/static/chunks/pages/consent/{privacy-experience-b08abefec298ccf1.js → privacy-experience-1975c529905eea9b.js} +1 -1
  160. fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices/{[id]-8c164c4b8310214e.js → [id]-b05331178928ab52.js} +1 -1
  161. fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices/{new-db789002d84c8829.js → new-516834e930bb0d0d.js} +1 -1
  162. fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices-985717f2565f9d9d.js +1 -0
  163. fides/ui-build/static/admin/_next/static/chunks/pages/consent/{properties-5cba30eba1e97e56.js → properties-2be773e08498e40c.js} +1 -1
  164. fides/ui-build/static/admin/_next/static/chunks/pages/consent/reporting-850afb74f4192e87.js +1 -0
  165. fides/ui-build/static/admin/_next/static/chunks/pages/{consent-614af0a2c2ba966c.js → consent-b63d1e395d879b86.js} +1 -1
  166. fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects/[projectUrn]/[resourceUrn]-5b28f0f674ea87bd.js +1 -0
  167. fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects/[projectUrn]-676177e2f3c9c2a2.js +1 -0
  168. fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects-794906929efb8e1d.js +1 -0
  169. fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/resources/[resourceUrn]-3ccbf7c0d06507b9.js +1 -0
  170. fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/resources-81d1b50585468fb0.js +1 -0
  171. fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog-1ea0b24d306b1e67.js +1 -0
  172. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/datastore/[monitorId]-d4861a4a218bb65a.js +1 -0
  173. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/infrastructure/[monitorId]-66bd265044daf97d.js +1 -0
  174. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/infrastructure-c9c79fa8576a4f77.js +1 -0
  175. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/website/[monitorId]/[systemId]-60cacc3232c2eead.js +1 -0
  176. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/website/[monitorId]-437bd64a3016de36.js +1 -0
  177. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center-8349248c2da970a6.js +1 -0
  178. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/activity-6919a1d6cadaa46b.js +1 -0
  179. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/detection/{[resourceUrn]-b072cf25aefc98f6.js → [resourceUrn]-1a50d421897d3da1.js} +1 -1
  180. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/{detection-fd3e8817d8e6dee4.js → detection-49509414a15e8393.js} +1 -1
  181. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/discovery/{[resourceUrn]-146624cf59792bf7.js → [resourceUrn]-1a1bb80b586d0c0f.js} +1 -1
  182. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/{discovery-9695cc9c85592ec5.js → discovery-49de61df1e8e7fba.js} +1 -1
  183. fides/ui-build/static/admin/_next/static/chunks/pages/datamap-c2719f5cff20c0f8.js +1 -0
  184. fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]/[collectionName]/{[...subfieldNames]-5f88280db168083e.js → [...subfieldNames]-415015aebab60436.js} +1 -1
  185. fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]/{[collectionName]-bfbcf19c28c794ae.js → [collectionName]-5accb09715b5122d.js} +1 -1
  186. fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]-aebecca1d8ec5f98.js +1 -0
  187. fides/ui-build/static/admin/_next/static/chunks/pages/dataset/new-9551a82ddec9f909.js +1 -0
  188. fides/ui-build/static/admin/_next/static/chunks/pages/dataset-72f8fe47beef0f09.js +1 -0
  189. fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/[id]-3a8aa3f633528e88.js +1 -0
  190. fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/new-87512616f35ec6da.js +1 -0
  191. fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection-2f1bf4eac7aa55fd.js +1 -0
  192. fides/ui-build/static/admin/_next/static/chunks/pages/{fides-js-docs-1f4335dca5c09860.js → fides-js-docs-5235760b3e508d7d.js} +1 -1
  193. fides/ui-build/static/admin/_next/static/chunks/pages/{index-1343fa525a206571.js → index-8d67cd2872cb682a.js} +1 -1
  194. fides/ui-build/static/admin/_next/static/chunks/pages/integrations/[id]-7a631df29cd0e31a.js +1 -0
  195. fides/ui-build/static/admin/_next/static/chunks/pages/integrations-ea3bc43cdaf273de.js +1 -0
  196. fides/ui-build/static/admin/_next/static/chunks/pages/new-privacy-requests-5d8632bba1b81cd4.js +1 -0
  197. fides/ui-build/static/admin/_next/static/chunks/pages/notifications/digests/{[id]-63b3be660fb12c0f.js → [id]-92e01822ecde8fb8.js} +1 -1
  198. fides/ui-build/static/admin/_next/static/chunks/pages/notifications/digests/{new-d3b577962dd33266.js → new-1256cf6d3f6794e0.js} +1 -1
  199. fides/ui-build/static/admin/_next/static/chunks/pages/notifications/digests-0daac00911d27617.js +1 -0
  200. fides/ui-build/static/admin/_next/static/chunks/pages/notifications/providers/{[key]-720cde29f81db47f.js → [key]-2d976fe5e8ba0a3a.js} +1 -1
  201. fides/ui-build/static/admin/_next/static/chunks/pages/notifications/providers/{new-3668866076b53016.js → new-7766ba497b863740.js} +1 -1
  202. fides/ui-build/static/admin/_next/static/chunks/pages/notifications/providers-f2880d2ed4734270.js +1 -0
  203. fides/ui-build/static/admin/_next/static/chunks/pages/notifications/templates/{[id]-8063dceb32310c85.js → [id]-669f585c3458faff.js} +1 -1
  204. fides/ui-build/static/admin/_next/static/chunks/pages/notifications/templates/{add-template-4931c70bee62232f.js → add-template-c79e7724e4bc3899.js} +1 -1
  205. fides/ui-build/static/admin/_next/static/chunks/pages/notifications/templates-891654e8dc13965c.js +1 -0
  206. fides/ui-build/static/admin/_next/static/chunks/pages/{notifications-93af719dab3bd053.js → notifications-40c8148244c5d347.js} +1 -1
  207. fides/ui-build/static/admin/_next/static/chunks/pages/poc/ant-components-1e86f3e28bd23ed6.js +1 -0
  208. fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/AntForm-9b7bd8c38f02c091.js +1 -0
  209. fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikAntFormItem-b18a53a940cf9e19.js +1 -0
  210. fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikControlled-6d028d7450e77578.js +1 -0
  211. fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikField-8399083ee2cd8cc2.js +1 -0
  212. fides/ui-build/static/admin/_next/static/chunks/pages/poc/forms-0a910125cdb2b3b8.js +1 -0
  213. fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/[id]-acc90b6f7fe915cb.js +1 -0
  214. fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure/storage-bbc42026f2685438.js +1 -0
  215. fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/{configure-fa82cffba448ccd8.js → configure-c08ca6ad21c99799.js} +1 -1
  216. fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests-77c2db582f8823bc.js +1 -0
  217. fides/ui-build/static/admin/_next/static/chunks/pages/properties/{[id]-bc1c289647e52c48.js → [id]-74ccea4868408e3d.js} +1 -1
  218. fides/ui-build/static/admin/_next/static/chunks/pages/properties/{add-property-cbfaa23d96f5ed0b.js → add-property-7d9f09bfe9d44dfc.js} +1 -1
  219. fides/ui-build/static/admin/_next/static/chunks/pages/{properties-a15a3fd0ed88f39c.js → properties-cd77bc30672bb1fa.js} +1 -1
  220. fides/ui-build/static/admin/_next/static/chunks/pages/reporting/datamap-cc3bd9540132d5ed.js +1 -0
  221. fides/ui-build/static/admin/_next/static/chunks/pages/sandbox/privacy-notices-7ce7d720107ab4b5.js +1 -0
  222. fides/ui-build/static/admin/_next/static/chunks/pages/settings/consent/[configuration_id]/{[purpose_id]-19de0024418a4924.js → [purpose_id]-ae789892343c24f5.js} +1 -1
  223. fides/ui-build/static/admin/_next/static/chunks/pages/settings/consent-13ee1b331ced0846.js +1 -0
  224. fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields/[id]-ee4e43692336a330.js +1 -0
  225. fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields/new-ca51d794abfcbf25.js +1 -0
  226. fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields-ecd1dc5db8e81409.js +1 -0
  227. fides/ui-build/static/admin/_next/static/chunks/pages/settings/{domain-records-3b87002753b23ca5.js → domain-records-df06f7e2f668c540.js} +1 -1
  228. fides/ui-build/static/admin/_next/static/chunks/pages/settings/{domains-aacd9d0ad47082d4.js → domains-da0c77bd510c6c51.js} +1 -1
  229. fides/ui-build/static/admin/_next/static/chunks/pages/settings/{email-templates-3cdd0b39901190ba.js → email-templates-950b0c115bf673d8.js} +1 -1
  230. fides/ui-build/static/admin/_next/static/chunks/pages/settings/{locations-61076eedbfd137b9.js → locations-7e36cb4756973a9d.js} +1 -1
  231. fides/ui-build/static/admin/_next/static/chunks/pages/settings/{organization-b07b11d6002f8c8c.js → organization-a0e5ed486d24ccf3.js} +1 -1
  232. fides/ui-build/static/admin/_next/static/chunks/pages/settings/privacy-requests-3cdebafb6870d3ad.js +1 -0
  233. fides/ui-build/static/admin/_next/static/chunks/pages/settings/{regulations-b7c0d3b1b754e70f.js → regulations-159aad34f1021320.js} +1 -1
  234. fides/ui-build/static/admin/_next/static/chunks/pages/systems/configure/[id]/test-datasets-dbd1a64090ad0946.js +1 -0
  235. fides/ui-build/static/admin/_next/static/chunks/pages/systems/configure/{[id]-59c89489fa32a4cb.js → [id]-7d042497a57a3788.js} +1 -1
  236. fides/ui-build/static/admin/_next/static/chunks/pages/systems-21f1172e73dfc9f0.js +1 -0
  237. fides/ui-build/static/admin/_next/static/chunks/pages/taxonomy-e553161e6338ee48.js +1 -0
  238. fides/ui-build/static/admin/_next/static/chunks/pages/user-management/{new-7dce2916cc589c54.js → new-efc4af017723e57a.js} +1 -1
  239. fides/ui-build/static/admin/_next/static/chunks/pages/user-management/profile/{[id]-5d5a68e555d18693.js → [id]-b152319d67372ee4.js} +1 -1
  240. fides/ui-build/static/admin/_next/static/chunks/pages/user-management-dba8692491f7935e.js +1 -0
  241. fides/ui-build/static/admin/_next/static/chunks/webpack-09ca52bc7beb0b43.js +1 -0
  242. fides/ui-build/static/admin/_next/static/css/3d66bb57ddcb0978.css +1 -0
  243. fides/ui-build/static/admin/_next/static/css/a1e4be9466578ef1.css +1 -0
  244. fides/ui-build/static/admin/_next/static/l2vgGUHB04Fi4oEVlVMrc/_buildManifest.js +1 -0
  245. fides/ui-build/static/admin/add-systems/manual.html +1 -1
  246. fides/ui-build/static/admin/add-systems/multiple.html +1 -1
  247. fides/ui-build/static/admin/add-systems.html +1 -1
  248. fides/ui-build/static/admin/consent/configure/add-vendors.html +1 -1
  249. fides/ui-build/static/admin/consent/configure.html +1 -1
  250. fides/ui-build/static/admin/consent/privacy-experience/[id].html +1 -1
  251. fides/ui-build/static/admin/consent/privacy-experience/new.html +1 -1
  252. fides/ui-build/static/admin/consent/privacy-experience.html +1 -1
  253. fides/ui-build/static/admin/consent/privacy-notices/[id].html +1 -1
  254. fides/ui-build/static/admin/consent/privacy-notices/new.html +1 -1
  255. fides/ui-build/static/admin/consent/privacy-notices.html +1 -1
  256. fides/ui-build/static/admin/consent/properties.html +1 -1
  257. fides/ui-build/static/admin/consent/reporting.html +1 -1
  258. fides/ui-build/static/admin/consent.html +1 -1
  259. fides/ui-build/static/admin/data-catalog/[systemId]/projects/[projectUrn]/[resourceUrn].html +1 -1
  260. fides/ui-build/static/admin/data-catalog/[systemId]/projects/[projectUrn].html +1 -1
  261. fides/ui-build/static/admin/data-catalog/[systemId]/projects.html +1 -1
  262. fides/ui-build/static/admin/data-catalog/[systemId]/resources/[resourceUrn].html +1 -1
  263. fides/ui-build/static/admin/data-catalog/[systemId]/resources.html +1 -1
  264. fides/ui-build/static/admin/data-catalog.html +1 -1
  265. fides/ui-build/static/admin/data-discovery/action-center/datastore/[monitorId].html +1 -1
  266. fides/ui-build/static/admin/data-discovery/action-center/datastore.html +1 -1
  267. fides/ui-build/static/admin/data-discovery/action-center/infrastructure/[monitorId].html +1 -0
  268. fides/ui-build/static/admin/data-discovery/action-center/infrastructure.html +1 -0
  269. fides/ui-build/static/admin/data-discovery/action-center/website/[monitorId]/[systemId].html +1 -1
  270. fides/ui-build/static/admin/data-discovery/action-center/website/[monitorId].html +1 -1
  271. fides/ui-build/static/admin/data-discovery/action-center/website.html +1 -1
  272. fides/ui-build/static/admin/data-discovery/action-center.html +1 -1
  273. fides/ui-build/static/admin/data-discovery/activity.html +1 -1
  274. fides/ui-build/static/admin/data-discovery/detection/[resourceUrn].html +1 -1
  275. fides/ui-build/static/admin/data-discovery/detection.html +1 -1
  276. fides/ui-build/static/admin/data-discovery/discovery/[resourceUrn].html +1 -1
  277. fides/ui-build/static/admin/data-discovery/discovery.html +1 -1
  278. fides/ui-build/static/admin/datamap.html +1 -1
  279. fides/ui-build/static/admin/dataset/[datasetId]/[collectionName]/[...subfieldNames].html +1 -1
  280. fides/ui-build/static/admin/dataset/[datasetId]/[collectionName].html +1 -1
  281. fides/ui-build/static/admin/dataset/[datasetId].html +1 -1
  282. fides/ui-build/static/admin/dataset/new.html +1 -1
  283. fides/ui-build/static/admin/dataset.html +1 -1
  284. fides/ui-build/static/admin/datastore-connection/[id].html +1 -1
  285. fides/ui-build/static/admin/datastore-connection/new.html +1 -1
  286. fides/ui-build/static/admin/datastore-connection.html +1 -1
  287. fides/ui-build/static/admin/index.html +1 -1
  288. fides/ui-build/static/admin/integrations/[id].html +1 -1
  289. fides/ui-build/static/admin/integrations.html +1 -1
  290. fides/ui-build/static/admin/lib/fides-ext-gpp.js +1 -1
  291. fides/ui-build/static/admin/lib/fides-headless.js +1 -1
  292. fides/ui-build/static/admin/lib/fides-preview.js +1 -1
  293. fides/ui-build/static/admin/lib/fides-tcf.js +2 -2
  294. fides/ui-build/static/admin/lib/fides.js +2 -2
  295. fides/ui-build/static/admin/login/[provider].html +1 -1
  296. fides/ui-build/static/admin/login.html +1 -1
  297. fides/ui-build/static/admin/new-privacy-requests.html +1 -1
  298. fides/ui-build/static/admin/notifications/digests/[id].html +1 -1
  299. fides/ui-build/static/admin/notifications/digests/new.html +1 -1
  300. fides/ui-build/static/admin/notifications/digests.html +1 -1
  301. fides/ui-build/static/admin/notifications/providers/[key].html +1 -1
  302. fides/ui-build/static/admin/notifications/providers/new.html +1 -1
  303. fides/ui-build/static/admin/notifications/providers.html +1 -1
  304. fides/ui-build/static/admin/notifications/templates/[id].html +1 -1
  305. fides/ui-build/static/admin/notifications/templates/add-template.html +1 -1
  306. fides/ui-build/static/admin/notifications/templates.html +1 -1
  307. fides/ui-build/static/admin/notifications.html +1 -1
  308. fides/ui-build/static/admin/poc/ant-components.html +1 -1
  309. fides/ui-build/static/admin/poc/form-experiments/AntForm.html +1 -1
  310. fides/ui-build/static/admin/poc/form-experiments/FormikAntFormItem.html +1 -1
  311. fides/ui-build/static/admin/poc/form-experiments/FormikControlled.html +1 -1
  312. fides/ui-build/static/admin/poc/form-experiments/FormikField.html +1 -1
  313. fides/ui-build/static/admin/poc/form-experiments/FormikSpreadField.html +1 -1
  314. fides/ui-build/static/admin/poc/forms.html +1 -1
  315. fides/ui-build/static/admin/privacy-requests/[id].html +1 -1
  316. fides/ui-build/static/admin/privacy-requests/configure/storage.html +1 -1
  317. fides/ui-build/static/admin/privacy-requests/configure.html +1 -1
  318. fides/ui-build/static/admin/privacy-requests.html +1 -1
  319. fides/ui-build/static/admin/properties/[id].html +1 -1
  320. fides/ui-build/static/admin/properties/add-property.html +1 -1
  321. fides/ui-build/static/admin/properties.html +1 -1
  322. fides/ui-build/static/admin/reporting/datamap.html +1 -1
  323. fides/ui-build/static/admin/sandbox/privacy-notices.html +1 -1
  324. fides/ui-build/static/admin/settings/about/alpha.html +1 -1
  325. fides/ui-build/static/admin/settings/about.html +1 -1
  326. fides/ui-build/static/admin/settings/consent/[configuration_id]/[purpose_id].html +1 -1
  327. fides/ui-build/static/admin/settings/consent.html +1 -1
  328. fides/ui-build/static/admin/settings/custom-fields/[id].html +1 -1
  329. fides/ui-build/static/admin/settings/custom-fields/new.html +1 -1
  330. fides/ui-build/static/admin/settings/custom-fields.html +1 -1
  331. fides/ui-build/static/admin/settings/domain-records.html +1 -1
  332. fides/ui-build/static/admin/settings/domains.html +1 -1
  333. fides/ui-build/static/admin/settings/email-templates.html +1 -1
  334. fides/ui-build/static/admin/settings/locations.html +1 -1
  335. fides/ui-build/static/admin/settings/organization.html +1 -1
  336. fides/ui-build/static/admin/settings/privacy-requests.html +1 -1
  337. fides/ui-build/static/admin/settings/regulations.html +1 -1
  338. fides/ui-build/static/admin/systems/configure/[id]/test-datasets.html +1 -1
  339. fides/ui-build/static/admin/systems/configure/[id].html +1 -1
  340. fides/ui-build/static/admin/systems.html +1 -1
  341. fides/ui-build/static/admin/taxonomy.html +1 -1
  342. fides/ui-build/static/admin/user-management/new.html +1 -1
  343. fides/ui-build/static/admin/user-management/profile/[id].html +1 -1
  344. fides/ui-build/static/admin/user-management.html +1 -1
  345. fides/api/service/privacy_request/dsr_package/templates/welcome.html +0 -66
  346. fides/ui-build/static/admin/_next/static/chunks/1099-31f9d973bc287df8.js +0 -1
  347. fides/ui-build/static/admin/_next/static/chunks/1316-2606e19807c08aa5.js +0 -1
  348. fides/ui-build/static/admin/_next/static/chunks/1437-8b1f6c8797c68bfd.js +0 -1
  349. fides/ui-build/static/admin/_next/static/chunks/1467-8808ec8836e033f9.js +0 -1
  350. fides/ui-build/static/admin/_next/static/chunks/155-f6302d32cba4cab6.js +0 -1
  351. fides/ui-build/static/admin/_next/static/chunks/1817-2d5cf537a2992c79.js +0 -1
  352. fides/ui-build/static/admin/_next/static/chunks/2121.1de2fa060eae34aa.js +0 -1
  353. fides/ui-build/static/admin/_next/static/chunks/2921-34a43f2f8f5e5e69.js +0 -1
  354. fides/ui-build/static/admin/_next/static/chunks/2962-342ad1b4ab402ded.js +0 -1
  355. fides/ui-build/static/admin/_next/static/chunks/3377-988ac2f3a2e8d5d4.js +0 -1
  356. fides/ui-build/static/admin/_next/static/chunks/3446-f40c352c43ac950c.js +0 -1
  357. fides/ui-build/static/admin/_next/static/chunks/346-aa3b88efb85f2e28.js +0 -1
  358. fides/ui-build/static/admin/_next/static/chunks/3696-6f90e41a53d22920.js +0 -1
  359. fides/ui-build/static/admin/_next/static/chunks/3700-f695f2f6b8251971.js +0 -1
  360. fides/ui-build/static/admin/_next/static/chunks/3772-9f1713f9d5f97a10.js +0 -1
  361. fides/ui-build/static/admin/_next/static/chunks/3873-d18e47b327445db5.js +0 -1
  362. fides/ui-build/static/admin/_next/static/chunks/3923-f0a85dc5c3684fa0.js +0 -1
  363. fides/ui-build/static/admin/_next/static/chunks/4496-4ff19366c597ec16.js +0 -1
  364. fides/ui-build/static/admin/_next/static/chunks/4817-1f3e6ea38625d8d5.js +0 -1
  365. fides/ui-build/static/admin/_next/static/chunks/5163-e682273cd76a7d07.js +0 -1
  366. fides/ui-build/static/admin/_next/static/chunks/5258-62d6bc19add60aa6.js +0 -1
  367. fides/ui-build/static/admin/_next/static/chunks/5279-bd6cccabdd6ca447.js +0 -1
  368. fides/ui-build/static/admin/_next/static/chunks/549-28537a6de666944b.js +0 -1
  369. fides/ui-build/static/admin/_next/static/chunks/5619-9b50cec521203989.js +0 -1
  370. fides/ui-build/static/admin/_next/static/chunks/5643-3459282d296a3c59.js +0 -1
  371. fides/ui-build/static/admin/_next/static/chunks/6277-3759894435cb8569.js +0 -1
  372. fides/ui-build/static/admin/_next/static/chunks/6315-e2fb5ea77179a871.js +0 -1
  373. fides/ui-build/static/admin/_next/static/chunks/6344-ca66a6e10d128179.js +0 -1
  374. fides/ui-build/static/admin/_next/static/chunks/6419-11d67f7fd4e2f247.js +0 -1
  375. fides/ui-build/static/admin/_next/static/chunks/6954-84789a4e4fb04eb9.js +0 -1
  376. fides/ui-build/static/admin/_next/static/chunks/699-8ca44b0de9fa20f0.js +0 -1
  377. fides/ui-build/static/admin/_next/static/chunks/7059-2bb7c38578549703.js +0 -1
  378. fides/ui-build/static/admin/_next/static/chunks/7202.3febe9e89640c712.js +0 -1
  379. fides/ui-build/static/admin/_next/static/chunks/7476-a02d970ea4d3f7d0.js +0 -1
  380. fides/ui-build/static/admin/_next/static/chunks/7488-cf92601852e3c509.js +0 -1
  381. fides/ui-build/static/admin/_next/static/chunks/7630-a11610c2b31ab2ca.js +0 -1
  382. fides/ui-build/static/admin/_next/static/chunks/7773-9ae233109bc64ec2.js +0 -1
  383. fides/ui-build/static/admin/_next/static/chunks/796-e36d610066135f8c.js +0 -1
  384. fides/ui-build/static/admin/_next/static/chunks/8011-75af8b480fa114e6.js +0 -1
  385. fides/ui-build/static/admin/_next/static/chunks/8373-22b4d20e8cc06b3a.js +0 -1
  386. fides/ui-build/static/admin/_next/static/chunks/8765-f622a35b40a7ec63.js +0 -1
  387. fides/ui-build/static/admin/_next/static/chunks/9037-453224ba3ee65b13.js +0 -1
  388. fides/ui-build/static/admin/_next/static/chunks/9046-d9c6498368b993d1.js +0 -1
  389. fides/ui-build/static/admin/_next/static/chunks/9187-7438242f0d380bb0.js +0 -1
  390. fides/ui-build/static/admin/_next/static/chunks/9278-08cc704317fe535e.js +0 -1
  391. fides/ui-build/static/admin/_next/static/chunks/9330-f753636a31c4ea04.js +0 -1
  392. fides/ui-build/static/admin/_next/static/chunks/9682-d1a3afa1394f8304.js +0 -1
  393. fides/ui-build/static/admin/_next/static/chunks/9729-fcf6ff4e3534e4a8.js +0 -1
  394. fides/ui-build/static/admin/_next/static/chunks/9899-d6437facac926264.js +0 -1
  395. fides/ui-build/static/admin/_next/static/chunks/9965-25621dd507e0cfd6.js +0 -1
  396. fides/ui-build/static/admin/_next/static/chunks/pages/consent/configure-9af75caefc74eaca.js +0 -1
  397. fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices-6528eb24165aceb6.js +0 -1
  398. fides/ui-build/static/admin/_next/static/chunks/pages/consent/reporting-11f1683aa15e1a62.js +0 -1
  399. fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects/[projectUrn]/[resourceUrn]-32bd7a7c990e5bf6.js +0 -1
  400. fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects/[projectUrn]-d60761c20382b259.js +0 -1
  401. fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects-07e7d38ce34e1e6c.js +0 -1
  402. fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/resources/[resourceUrn]-b07a0707f8c2ec0d.js +0 -1
  403. fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/resources-aed94957009eb3fd.js +0 -1
  404. fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog-127c114dd8f102ed.js +0 -1
  405. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/datastore/[monitorId]-5aa7a9fa96160de8.js +0 -1
  406. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/website/[monitorId]/[systemId]-899bf30dde8b3292.js +0 -1
  407. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/website/[monitorId]-73085f50abb775c0.js +0 -1
  408. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center-823d0dd77e66585b.js +0 -1
  409. fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/activity-24a82e07a0008516.js +0 -1
  410. fides/ui-build/static/admin/_next/static/chunks/pages/datamap-3b100c44ea9e3988.js +0 -1
  411. fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]-6fbe2b584a509226.js +0 -1
  412. fides/ui-build/static/admin/_next/static/chunks/pages/dataset/new-3d1e48f4b95d7f6b.js +0 -1
  413. fides/ui-build/static/admin/_next/static/chunks/pages/dataset-d3c6ecf7f29bea6e.js +0 -1
  414. fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/[id]-0a4aa42be2da0255.js +0 -1
  415. fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/new-14313e441a13192c.js +0 -1
  416. fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection-f139d1ce26404f30.js +0 -1
  417. fides/ui-build/static/admin/_next/static/chunks/pages/integrations/[id]-b2d3d28b10a758e6.js +0 -1
  418. fides/ui-build/static/admin/_next/static/chunks/pages/integrations-a733e5d7c3ce9bb8.js +0 -1
  419. fides/ui-build/static/admin/_next/static/chunks/pages/new-privacy-requests-df0c95e408c54c7e.js +0 -1
  420. fides/ui-build/static/admin/_next/static/chunks/pages/notifications/digests-aed9afd988a48acf.js +0 -1
  421. fides/ui-build/static/admin/_next/static/chunks/pages/notifications/providers-36a0ac36062abd02.js +0 -1
  422. fides/ui-build/static/admin/_next/static/chunks/pages/notifications/templates-a14c876b49422597.js +0 -1
  423. fides/ui-build/static/admin/_next/static/chunks/pages/poc/ant-components-9cfb469de7b4aeab.js +0 -1
  424. fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/AntForm-e715cc654fb6a5cd.js +0 -1
  425. fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikAntFormItem-72ae299bcb6adae6.js +0 -1
  426. fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikControlled-2337f8c81a766eb0.js +0 -1
  427. fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikField-0af454f55494f6fa.js +0 -1
  428. fides/ui-build/static/admin/_next/static/chunks/pages/poc/forms-d1b90ffa996fbd89.js +0 -1
  429. fides/ui-build/static/admin/_next/static/chunks/pages/poc/table-migration-19724b9e0581b96d.js +0 -1
  430. fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/[id]-cdd3754289a28317.js +0 -1
  431. fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure/storage-cc41ae605f2b55ae.js +0 -1
  432. fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests-6e4c535b6d614596.js +0 -1
  433. fides/ui-build/static/admin/_next/static/chunks/pages/reporting/datamap-632b3ee563d070f2.js +0 -1
  434. fides/ui-build/static/admin/_next/static/chunks/pages/sandbox/privacy-notices-afe921f6e2a526fb.js +0 -1
  435. fides/ui-build/static/admin/_next/static/chunks/pages/settings/consent-5b6807dced8d03c5.js +0 -1
  436. fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields/[id]-8634aae3259def37.js +0 -1
  437. fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields/new-2d9dcca17965dc57.js +0 -1
  438. fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields-7dce52bfc1b2652c.js +0 -1
  439. fides/ui-build/static/admin/_next/static/chunks/pages/settings/privacy-requests-084a2b4431d35322.js +0 -1
  440. fides/ui-build/static/admin/_next/static/chunks/pages/systems/configure/[id]/test-datasets-b72d36243a0a545c.js +0 -1
  441. fides/ui-build/static/admin/_next/static/chunks/pages/systems-cfaa37a0df83674b.js +0 -1
  442. fides/ui-build/static/admin/_next/static/chunks/pages/taxonomy-56a5434969cbe9ba.js +0 -1
  443. fides/ui-build/static/admin/_next/static/chunks/pages/user-management-e6a211d8a0401086.js +0 -1
  444. fides/ui-build/static/admin/_next/static/chunks/webpack-c2c11809187b9f84.js +0 -1
  445. fides/ui-build/static/admin/_next/static/css/d41a048a166d50e4.css +0 -1
  446. fides/ui-build/static/admin/_next/static/css/d78390d6134d8328.css +0 -1
  447. fides/ui-build/static/admin/_next/static/wCNFtmYQhEDMaMPeBB4BM/_buildManifest.js +0 -1
  448. fides/ui-build/static/admin/poc/table-migration.html +0 -1
  449. {ethyca_fides-2.73.2b0.dist-info → ethyca_fides-2.76.0rc2.dist-info}/WHEEL +0 -0
  450. {ethyca_fides-2.73.2b0.dist-info → ethyca_fides-2.76.0rc2.dist-info}/entry_points.txt +0 -0
  451. {ethyca_fides-2.73.2b0.dist-info → ethyca_fides-2.76.0rc2.dist-info}/licenses/LICENSE +0 -0
  452. {ethyca_fides-2.73.2b0.dist-info → ethyca_fides-2.76.0rc2.dist-info}/top_level.txt +0 -0
  453. /fides/ui-build/static/admin/_next/static/{wCNFtmYQhEDMaMPeBB4BM → 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(y,Ze){typeof exports=="object"&&typeof module<"u"?Ze(exports):(y=typeof globalThis<"u"?globalThis:y||self,Ze(y.Fides={}))})(this,function(y){"use strict";var Ze=Object.defineProperty,mr=(e,t,i)=>t in e?Ze(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,At=(e,t,i)=>mr(e,typeof t!="symbol"?t+"":t,i);class Tt{constructor(t,i,o){At(this,"consentPreference"),At(this,"notice"),At(this,"noticeHistoryId"),this.notice=t,this.consentPreference=i,this.noticeHistoryId=o}}y.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={}))})(y.TCMobileDataVals||(y.TCMobileDataVals={}));var wi=(e=>(e.GPP_US_NATIONAL="gpp_us_national",e.GPP_US_STATE="gpp_us_state",e))(wi||{}),ki=(e=>(e.FRONTEND="frontend",e.SYSTEM_WIDE="system_wide",e.NOT_APPLICABLE="not_applicable",e))(ki||{}),q=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.NOTICE_ONLY="notice_only",e))(q||{}),St=(e=>(e.COOKIE="Cookie",e.BROWSER_REQUEST="Browser Request",e.I_FRAME="iFrame",e.JAVASCRIPT_TAG="Javascript tag",e.IMAGE="Image",e))(St||{}),Z=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.ACKNOWLEDGE="acknowledge",e.NOT_APPLICABLE="not_applicable",e.TCF="tcf",e))(Z||{}),Pe=(e=>(e.OMIT="omit",e.INCLUDE="include",e))(Pe||{}),ge=(e=>(e.BOOLEAN="boolean",e.CONSENT_MECHANISM="consent_mechanism",e))(ge||{}),he=(e=>(e.THROW="throw",e.WARN="warn",e.IGNORE="ignore",e))(he||{}),G=(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))(G||{}),Ei=(e=>(e.ALWAYS_ENABLED="always_enabled",e.ENABLED_WHERE_REQUIRED="enabled_where_required",e.ALWAYS_DISABLED="always_disabled",e))(Ei||{}),Oi=(e=>(e.PURPOSES="/tcf/purposes",e.FEATURES="/tcf/features",e.VENDORS="/tcf/vendors",e))(Oi||{}),xe=(e=>(e.OPTIONS="options",e.EXPERIENCE_TRANSLATION="language",e))(xe||{}),oe=(e=>(e.PRIMARY="primary",e.SECONDARY="secondary",e.TERTIARY="tertiary",e))(oe||{}),Lt=(e=>(e.ACKNOWLEDGE="acknowledge",e.OPT_IN_OPT_OUT="opt_in_opt_out",e.OPT_IN_ONLY="opt_in_only",e))(Lt||{}),Ci=(e=>(e.REJECT_ALL="reject_all",e.REJECT_CONSENT_ONLY="reject_consent_only",e))(Ci||{}),$=(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))($||{}),Pi=(e=>(e.privacy_center="privacy_center",e.overlay="overlay",e.api="api",e))(Pi||{}),se=(e=>(e.NONE="none",e.APPLIED="applied",e.OVERRIDDEN="overridden",e))(se||{}),Re=(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))(Re||{}),It=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Xe={exports:{}};/*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */Xe.exports,function(e,t){(function(i){var o=t,n=e&&e.exports==o&&e,r=typeof It=="object"&&It;(r.global===r||r.window===r)&&(i=r);var s=function(g){this.message=g};s.prototype=new Error,s.prototype.name="InvalidCharacterError";var l=function(g){throw new s(g)},a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",c=/[\t\n\f\r ]/g,u=function(g){g=String(g).replace(c,"");var p=g.length;p%4==0&&(g=g.replace(/==?$/,""),p=g.length),(p%4==1||/[^+a-zA-Z0-9/]/.test(g))&&l("Invalid character: the string to be decoded is not correctly encoded.");for(var h=0,b,m,k="",O=-1;++O<p;)m=a.indexOf(g.charAt(O)),b=h%4?b*64+m:m,h++%4&&(k+=String.fromCharCode(255&b>>(-2*h&6)));return k},d=function(g){g=String(g),/[^\0-\xFF]/.test(g)&&l("The string to be encoded contains characters outside of the Latin1 range.");for(var p=g.length%3,h="",b=-1,m,k,O,w,x=g.length-p;++b<x;)m=g.charCodeAt(b)<<16,k=g.charCodeAt(++b)<<8,O=g.charCodeAt(++b),w=m+k+O,h+=a.charAt(w>>18&63)+a.charAt(w>>12&63)+a.charAt(w>>6&63)+a.charAt(w&63);return p==2?(m=g.charCodeAt(b)<<8,k=g.charCodeAt(++b),w=m+k,h+=a.charAt(w>>10)+a.charAt(w>>4&63)+a.charAt(w<<2&63)+"="):p==1&&(w=g.charCodeAt(b),h+=a.charAt(w>>2)+a.charAt(w<<4&63)+"=="),h},_={encode:d,decode:u,version:"1.0.0"};if(o&&!o.nodeType)if(n)n.exports=_;else for(var v in _)_.hasOwnProperty(v)&&(o[v]=_[v]);else i.base64=_})(It)}(Xe,Xe.exports);var xi=Xe.exports;/*! js-cookie v3.0.5 | MIT */function Je(e){for(var t=1;t<arguments.length;t++){var i=arguments[t];for(var o in i)e[o]=i[o]}return e}var wr={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 $t(e,t){function i(n,r,s){if(!(typeof document>"u")){s=Je({},t,s),typeof s.expires=="number"&&(s.expires=new Date(Date.now()+s.expires*864e5)),s.expires&&(s.expires=s.expires.toUTCString()),n=encodeURIComponent(n).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var l="";for(var a in s)s[a]&&(l+="; "+a,s[a]!==!0&&(l+="="+s[a].split(";")[0]));return document.cookie=n+"="+e.write(r,n)+l}}function o(n){if(!(typeof document>"u"||arguments.length&&!n)){for(var r=document.cookie?document.cookie.split("; "):[],s={},l=0;l<r.length;l++){var a=r[l].split("="),c=a.slice(1).join("=");try{var u=decodeURIComponent(a[0]);if(s[u]=e.read(c,u),n===u)break}catch{}}return n?s[n]:s}}return Object.create({set:i,get:o,remove:function(n,r){i(n,"",Je({},r,{expires:-1}))},withAttributes:function(n){return $t(this.converter,Je({},this.attributes,n))},withConverter:function(n){return $t(Je({},this.converter,n),this.attributes)}},{attributes:{value:Object.freeze(t)},converter:{value:Object.freeze(e)}})}var kr=$t(wr,{path:"/"});let Qe;const Er=new Uint8Array(16);function Or(){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(Er)}const H=[];for(let e=0;e<256;++e)H.push((e+256).toString(16).slice(1));function Cr(e,t=0){return H[e[t+0]]+H[e[t+1]]+H[e[t+2]]+H[e[t+3]]+"-"+H[e[t+4]]+H[e[t+5]]+"-"+H[e[t+6]]+H[e[t+7]]+"-"+H[e[t+8]]+H[e[t+9]]+"-"+H[e[t+10]]+H[e[t+11]]+H[e[t+12]]+H[e[t+13]]+H[e[t+14]]+H[e[t+15]]}var Ni={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function Ai(e,t,i){if(Ni.randomUUID&&!e)return Ni.randomUUID();e=e||{};const o=e.random||(e.rng||Or)();return o[6]=o[6]&15|64,o[8]=o[8]&63|128,Cr(o)}const et=(e,t)=>!!Object.keys(t).includes(e.notice_key),le=e=>!e||e===Z.OPT_OUT?!1:e===Z.OPT_IN?!0:e===Z.ACKNOWLEDGE,ze=(e,t)=>e?t===q.NOTICE_ONLY?Z.ACKNOWLEDGE:Z.OPT_IN:Z.OPT_OUT,Me=e=>typeof e=="string"?le(e):e,Ft=e=>e?e.split(",").map(t=>t.trim()).filter(Boolean):[],Ti=(e,t)=>e===void 0?!1:typeof e=="boolean"?e:t.globalPrivacyControl===!0?e.globalPrivacyControl:e.value,Si=(e,t)=>e.consent_mechanism===q.NOTICE_ONLY?!0:t&&et(e,t)?typeof t[e.notice_key]=="string"?le(t[e.notice_key]):t[e.notice_key]:le(e.default_preference);var jt=(e=>(e.CONSENT="Consent",e.LEGITIMATE_INTERESTS="Legitimate interests",e))(jt||{});const Pr=",",xr=[{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"}],Nr=[{cookieKey:"system_consent_preferences",experienceKey:"tcf_system_consents"},{cookieKey:"system_legitimate_interests_preferences",experienceKey:"tcf_system_legitimate_interests"}];xr.filter(({experienceKey:e})=>e!=="tcf_features"&&e!=="tcf_special_purposes").map(e=>e.experienceKey),jt.CONSENT.toString(),jt.LEGITIMATE_INTERESTS.toString();var Ar=Object.defineProperty,Tr=Object.defineProperties,Sr=Object.getOwnPropertyDescriptors,Li=Object.getOwnPropertySymbols,Lr=Object.prototype.hasOwnProperty,Ir=Object.prototype.propertyIsEnumerable,Ii=(e,t,i)=>t in e?Ar(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,be=(e,t)=>{for(var i in t||(t={}))Lr.call(t,i)&&Ii(e,i,t[i]);if(Li)for(var i of Li(t))Ir.call(t,i)&&Ii(e,i,t[i]);return e},Ne=(e,t)=>Tr(e,Sr(t)),$r=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const Dt="fides_consent",$i=365,tt=kr.withConverter({read(e){return decodeURIComponent(e)},write(e){return encodeURIComponent(e)}}),Rt=e=>e?Object.values(e).some(t=>t!==void 0):!1,Fi=()=>Ai(),Fr=Fi(),ji=e=>{var t;return!!!((t=e.fides_meta)!=null&&t.updatedAt)},Di=e=>{const t=new Date;return{consent:e||{},identity:{fides_user_device_id:Fr||Fi()},fides_meta:{version:"0.9.0",createdAt:t.toISOString(),updatedAt:""},tcf_consent:{},non_applicable_notice_keys:[]}},it=e=>tt.get(e),Ae=()=>{const e=it(Dt);if(e)try{return JSON.parse(e)}catch{try{return JSON.parse(xi.decode(e))}catch{return}}},Ri=(e,t=!1)=>{const i=Di(e);if(typeof document>"u")return i;if(t)return document.cookie="fides_consent=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT",i;let o=Ae();if(o?.consent){const{consent:n}=o;Object.entries(n).forEach(([r,s])=>{n[r]=Me(s)})}if(!o)return i;try{"consent"in o&&"fides_meta"in o||(o=Ne(be({},i),{consent:o}));const n=be(be({},e),o.consent);return o.consent=n,o}catch(n){return console.error("Unable to read consent cookie: invalid JSON.",n),i}},zi=(e,t=!1)=>{if(typeof document>"u")return;const o=new Date().toISOString();e.fides_meta.updatedAt=o;let n=JSON.stringify(e);t&&(n=xi.encode(n));const r=window.location.hostname.split(".");let s="";for(let l=1;l<=r.length;l+=1)if(s=r.slice(-l).join("."),tt.set(Dt,n,{path:"/",domain:s,expires:$i})){const c=Ae();if(c&&c.fides_meta.updatedAt===e.fides_meta.updatedAt)break}},zt=({experience:e,cookie:t})=>{var i;if(!e.privacy_notices)return e;const o=(i=e.privacy_notices)==null?void 0:i.map(r=>{var s,l;const a=(s=t.non_applicable_notice_keys)==null?void 0:s.includes(r.notice_key),c=(l=e.non_applicable_privacy_notices)==null?void 0:l.includes(r.notice_key);if(a&&!c)return Ne(be({},r),{current_preference:void 0});const u=Object.keys(t.consent).includes(r.notice_key)?ze(!!t.consent[r.notice_key],r.consent_mechanism):void 0;return Ne(be({},r),{current_preference:u})});return Ne(be({},e),{privacy_notices:o})},jr=e=>{const t={};return Nr.forEach(({cookieKey:i})=>{var o;const n=(o=e[i])!=null?o:[];t[i]=Object.fromEntries(n.map(r=>[r.id,le(r.preference)]))}),t},Mi=(e,t)=>{const i={};return e?.options.forEach(({cookieKeys:o,default:n})=>{if(n===void 0)return;const r=Ti(n,t);o.forEach(s=>{const l=i[s];if(l===void 0){i[s]=r;return}i[s]=l&&r})}),i},Ui=(e,t=!0,i=!0)=>{const{hostname:o}=window.location;e.forEach(n=>{var r;const s=t?o:n.domain;tt.remove(n.name,{path:(r=n.path)!=null?r:"/",domain:s}),i&&tt.remove(n.name,{domain:`.${o}`})})},Bi=e=>{const t=new Map(e.map(({notice:i,consentPreference:o})=>[i.notice_key,le(o)]));return Object.fromEntries(t)},Vi=(e,t)=>$r(void 0,null,function*(){var i;const o=(i=window.Fides)==null?void 0:i.experience,n=o?.non_applicable_privacy_notices||[];return Ne(be({},e),{consent:Bi(t),non_applicable_notice_keys:n})}),Dr=e=>{const t={};return e.privacy_notices&&e.privacy_notices.forEach(i=>{i.current_preference?t[i.notice_key]=le(i.current_preference):i.default_preference&&(t[i.notice_key]=le(i.default_preference))}),t},Gi=({cookie:e,experience:t})=>{const i=Dr(t);return Ne(be({},e),{consent:i,non_applicable_notice_keys:t.non_applicable_privacy_notices||e.non_applicable_notice_keys||[]})};var Rr=Object.defineProperty,zr=(e,t,i)=>t in e?Rr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Hi=(e,t,i)=>zr(e,typeof t!="symbol"?t+"":t,i);class Mr{constructor(){Hi(this,"cookieName","OptanonConsent"),Hi(this,"migrationMethod",$.EXTERNAL_PROVIDER)}getConsentCookie(){return it(this.cookieName)}convertToFidesConsent(t,i){if(i.otFidesMapping)try{const n=decodeURIComponent(i.otFidesMapping).replace(/^'|'$/g,""),r=JSON.parse(n),s=this.parseCookieValue(t,r);return s}catch{return}}parseCookieValue(t,i){const o={},n=t.match(/groups=([^&]*)/);return!n||!n[1]||n[1].split(",").forEach(l=>{const[a,c]=l.split(":");i[a]&&i[a].forEach(u=>{const d=c==="1";o[u]===void 0&&(o[u]=d)})}),o}}var Ki=(e=>(e.ONETRUST="onetrust",e))(Ki||{});const Mt=new Map;function Ur(e,t){Mt.set(e,t)}function Br(e){e.otFidesMapping&&Ur(Ki.ONETRUST,new Mr)}function Yi(e){let t,i;if(Array.from(Mt).some(([n,r])=>{const s=r.getConsentCookie();if(!s)return!1;const l=r.convertToFidesConsent(s,e);return l?(t=l,i=n,!0):!1}),!i)return{consent:void 0,method:void 0};const o=Mt.get(i);return{consent:t,method:o.migrationMethod}}const Vr=e=>{typeof window<"u"?window.fidesDebugger||(window.fidesDebugger=e?console.log:()=>{}):globalThis.fidesDebugger=()=>{}},X="en",ot="Manage preferences",nt=/^([A-Za-z]{2,3})(?:(?:[_-]([A-Za-z0-9]{2,4}))?$|(?:(?:[_-]\w+)+))/,Gr=/^(?:([a-z]{2})(-[a-z0-9]{1,3})?|(eea))$/i,Hr=[{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:nt},{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:Ft},{overrideName:"fidesDisabledSystems",overrideType:"array",overrideKey:"fides_disabled_systems",validationRegex:/(.*)/,transform:Ft},{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)$/}],Kr=[{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:nt}],Yr="fides-overlay-wrapper",Wr="fides-i18n-icon",Ut=["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 qr=Object.defineProperty,Zr=Object.defineProperties,Xr=Object.getOwnPropertyDescriptors,Wi=Object.getOwnPropertySymbols,Jr=Object.prototype.hasOwnProperty,Qr=Object.prototype.propertyIsEnumerable,qi=(e,t,i)=>t in e?qr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,rt=(e,t)=>{for(var i in t||(t={}))Jr.call(t,i)&&qi(e,i,t[i]);if(Wi)for(var i of Wi(t))Qr.call(t,i)&&qi(e,i,t[i]);return e},ea=(e,t)=>Zr(e,Xr(t));const Te=e=>!e||typeof e!="object"?!1:Object.keys(e).length===0||"id"in e,ta=e=>!!(e&&e.every(t=>t.default_preference===Z.OPT_IN)),at=e=>{if(e){if(e.location&&Gr.test(e.location))return e.location.replace("-","_").toLowerCase();if(e.country&&e.region)return`${e.country.toLowerCase()}_${e.region.toLowerCase()}`}},Zi=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},Xi=e=>{switch(e){case xe.OPTIONS:return Hr;case xe.EXPERIENCE_TRANSLATION:return Kr;default:return null}},Ji=e=>{if(!Te(e))return!1;const t=e.experience_config;return!(!t||!(t.component===G.MODAL||t.component===G.BANNER_AND_MODAL||t.component===G.TCF_OVERLAY||t.component===G.HEADLESS)||t.component===G.BANNER_AND_MODAL&&!(e.privacy_notices&&e.privacy_notices.length>0))},st=e=>e.fidesConsentOverride===$.ACCEPT||e.fidesConsentOverride===$.REJECT,ia=e=>{var t;return(t=e.default_preference)!=null?t:Z.OPT_OUT},lt=(e,t,i,o)=>{var n,r,s,l,a,c,u;return o?.fidesDisableBanner||!Te(e)||o.fidesModalDisplay==="immediate"||((n=e.experience_config)==null?void 0:n.component)===G.TCF_OVERLAY&&e.vendor_count===0?!1:((r=e.experience_config)==null?void 0:r.component)===G.TCF_OVERLAY&&t?o&&st(o)?!1:(s=e.meta)!=null&&s.version_hash?e.meta.version_hash!==t.tcf_version_hash:!0:((l=e.experience_config)==null?void 0:l.component)===G.MODAL||((a=e.experience_config)==null?void 0:a.component)===G.HEADLESS||!((c=e?.privacy_notices)!=null&&c.length)?!1:i?o&&st(o)?!1:t?.fides_meta.consentMethod===$.GPC?!0:!((u=e.privacy_notices)==null?void 0:u.every(_=>et(_,i))):!0},Qi=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},eo=({value:e,notice:t,consentContext:i})=>!i.globalPrivacyControl||!t.has_gpc_flag||t.consent_mechanism===q.NOTICE_ONLY?se.NONE:e?se.OVERRIDDEN:se.APPLIED,Bt=()=>{},oa=(e,t)=>e.map(i=>{var o;const n=ze(t.includes(i.notice.notice_key),i.notice.consent_mechanism);return new Tt(i.notice,n,(o=i.bestTranslation)==null?void 0:o.privacy_notice_history_id)}),to=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})}},ct=e=>{if(!e)return{};try{const t=atob(e),i=JSON.parse(t);return Object.fromEntries(Object.entries(i).map(([o,n])=>[o,!!n]))}catch(t){throw new Error("Failed to decode Notice Consent string:",{cause:t})}},na=({consent:e,nonApplicableNotices:t,flagType:i,mode:o=Pe.OMIT})=>{if(!t?.length)return e;const n=rt({},e);return o===Pe.INCLUDE?t.forEach(r=>{n[r]=i===ge.CONSENT_MECHANISM?Z.NOT_APPLICABLE:!0}):t.forEach(r=>{delete n[r]}),n},ra=({consent:e,flagType:t=ge.BOOLEAN,consentMechanisms:i})=>{const o={};if(t!==ge.CONSENT_MECHANISM)return Object.fromEntries(Object.entries(e).map(([r,s])=>[r,Me(s)]));const n=Object.values(e).some(r=>typeof r=="boolean");if(n&&!i)throw new Error("Cannot transform boolean consent values to consent mechanisms without consent mechanisms map");return n?(Object.keys(e).forEach(r=>{const s=e[r];if(typeof s=="string")o[r]=s;else{const l=i[r];o[r]=ze(s,l)}}),o):rt({},e)},Ue=(e,t,i=[],o,n,r)=>{var s,l,a;const c=rt({},e),u=(s=window.Fides)==null?void 0:s.options,d=(l=n??u?.fidesConsentNonApplicableFlagMode)!=null?l:Pe.OMIT,_=(a=o??u?.fidesConsentFlagType)!=null?a:ge.BOOLEAN,v={};Object.assign(v,na({consent:{},nonApplicableNotices:t??[],flagType:_,mode:d}));const g=i.reduce((h,b)=>ea(rt({},h),{[b.notice_key]:b.consent_mechanism}),{}),p={};return Object.entries(c).forEach(([h,b])=>{r?.includes(h)&&!t?.includes(h)||(p[h]=b)}),Object.assign(v,ra({consent:p,consentMechanisms:g,flagType:_})),v},aa=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.]*$/))},Vt=(e,t,i)=>new Proxy(e,{get(o,n){if(o[n.toString()]===void 0){const r=t.fidesConsentFlagType===ge.CONSENT_MECHANISM;return!i&&n.toString()==="essential"?r?q.NOTICE_ONLY:!0:r?q.OPT_OUT:!1}return o[n.toString()]}});var sa=Object.defineProperty,la=Object.defineProperties,ca=Object.getOwnPropertyDescriptors,io=Object.getOwnPropertySymbols,da=Object.prototype.hasOwnProperty,ua=Object.prototype.propertyIsEnumerable,oo=(e,t,i)=>t in e?sa(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Be=(e,t)=>{for(var i in t||(t={}))da.call(t,i)&&oo(e,i,t[i]);if(io)for(var i of io(t))ua.call(t,i)&&oo(e,i,t[i]);return e},fa=(e,t)=>la(e,ca(t)),we=(e=>(e.FIDES="fides",e.EXTERNAL="external",e))(we||{}),Q=(e=>(e.TOGGLE="toggle",e.BUTTON="button",e.LINK="link",e))(Q||{});const ce=(e,t,i)=>{var o,n,r,s,l,a,c,u;const d=t?Be({},t):void 0;if(typeof window<"u"&&typeof CustomEvent<"u"){const _=Be({consentMethod:d?.fides_meta.consentMethod},i);(o=i?.trigger)!=null&&o.origin||(_.trigger=Be(Be({},_.trigger),{origin:"fides"}));const v=(n=performance?.mark)==null?void 0:n.call(performance,e),g=v?.startTime,p=d;p&&d?.consent&&(p.consent=Ue(d.consent,(s=(r=window.Fides)==null?void 0:r.experience)==null?void 0:s.non_applicable_privacy_notices,(a=(l=window.Fides)==null?void 0:l.experience)==null?void 0:a.privacy_notices,void 0,void 0,d.non_applicable_notice_keys));const h=new CustomEvent(e,{detail:fa(Be({},p),{debug:!!((u=(c=window.Fides)==null?void 0:c.options)!=null&&u.debug),extraDetails:_,timestamp:g}),bubbles:!0});window.dispatchEvent(h)}},no=(e,t)=>{const i=o=>t(o.detail);return window.addEventListener(e,i),()=>{window.removeEventListener(e,i)}},ro=(e,t)=>{var i,o;ce("FidesConsentLoaded",e,t),((o=(i=window.Fides)==null?void 0:i.options)==null?void 0:o.fidesInitializedEventMode)==="multiple"&&ce("FidesInitialized",e,t)},ao=(e,t)=>{var i,o;ce("FidesReady",e,t);const n=(o=(i=window.Fides)==null?void 0:i.options)==null?void 0:o.fidesInitializedEventMode;(n==="multiple"||n==="once")&&ce("FidesInitialized",e,t)},Gt=e=>{if(!e)return{tc:"",ac:"",gpp:"",nc:""};const[t="",i="",o="",n=""]=e.split(Pr);return t?{tc:t,ac:i,gpp:o,nc:n}:{tc:"",ac:"",gpp:o,nc:n}},pa=()=>typeof window.blueConicClient<"u"&&typeof window.blueConicClient.event<"u"&&typeof window.blueConicClient.event.subscribe<"u",dt=()=>{var e,t,i;if(!pa()||!((e=window.blueConicClient)!=null&&e.profile))return;const o=(i=(t=window.blueConicClient)==null?void 0:t.profile)==null?void 0:i.getProfile(),{consent:n}=window.Fides,r=n!==void 0&&Object.entries(n).length>0,s=Ut.some(l=>n[l]);!r||s?(o.setConsentedObjectives(["iab_purpose_1","iab_purpose_2","iab_purpose_3","iab_purpose_4"]),o.setRefusedObjectives([])):(o.setConsentedObjectives(["iab_purpose_1"]),o.setRefusedObjectives(["iab_purpose_2","iab_purpose_3","iab_purpose_4"])),window.blueConicClient.profile.updateProfile()},va=({approach:e="onetrust"}={approach:"onetrust"})=>{if(e!=="onetrust")throw new Error("Unsupported approach");window.addEventListener("FidesReady",dt),window.addEventListener("FidesUpdated",dt),window.addEventListener("onBlueConicLoaded",dt),dt()},so=(e,t)=>{var i,o,n,r,s,l,a,c,u,d,_,v,g,p,h,b;const m=(i=window.dataLayer)!=null?i:[];window.dataLayer=m;const{detail:k,type:O}=e,{consent:w,extraDetails:x,fides_string:U,timestamp:P}=k;let A=w;const T=(s=(r=t?.flag_type)!=null?r:(n=(o=window.Fides)==null?void 0:o.options)==null?void 0:n.fidesConsentFlagType)!=null?s:ge.BOOLEAN,L=(u=(c=t?.non_applicable_flag_mode)!=null?c:(a=(l=window.Fides)==null?void 0:l.options)==null?void 0:a.fidesConsentNonApplicableFlagMode)!=null?u:Pe.OMIT,I=(v=(_=(d=window.Fides)==null?void 0:d.experience)==null?void 0:_.privacy_notices)!=null?v:[],B=(p=(g=window.Fides)==null?void 0:g.experience)==null?void 0:p.non_applicable_privacy_notices;A=Ue(w,B,I,T,L,(b=(h=window.Fides)==null?void 0:h.cookie)==null?void 0:b.non_applicable_notice_keys);const Y={consent:A,extraDetails:x,fides_string:U,timestamp:P};m.push({event:O,Fides:Y})},_a=e=>{var t,i;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,s=>so(s,e))}),(t=window.Fides)!=null&&t.initialized){const{consent:r,fides_meta:s,identity:l,tcf_consent:a}=window.Fides,c=(i=performance?.getEntriesByName("FidesInitialized")[0])==null?void 0:i.startTime;so({type:"FidesInitialized",detail:{consent:r,fides_meta:s,identity:l,tcf_consent:a,timestamp:c,extraDetails:{consentMethod:s?.consentMethod}}},e)}},ga=()=>{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},ha=e=>{const t=ga();t("consent",e.consent?"grant":"revoke"),e.dataUse?t("dataProcessingOptions",[]):t("dataProcessingOptions",["LDU"],1,1e3)},ba={marketing:Ut,sale_of_data:Ut,analytics:["analytics"],preferences:["functional"]};function ya(e,t){var i;const o=Object.fromEntries(Object.entries(e).map(([r,s])=>[r,Me(s)])),n={};return Object.entries(ba).forEach(([r,s])=>{const l=s.some(c=>o[c]===!0),a=s.some(c=>o[c]===!1);l?n[r]=!0:a&&(n[r]=!1)}),n.sale_of_data===void 0&&(n.sale_of_data=(i=t?.sale_of_data_default)!=null?i:!1),n}const ut=(e,t)=>{window.Shopify.customerPrivacy.setTrackingConsent(ya(e,t),()=>{})},lo=e=>{var t,i;(t=window.Shopify)!=null&&t.customerPrivacy||console.error("Fides could not access Shopify's customerPrivacy API"),window.addEventListener("FidesReady",o=>ut(o.detail.consent,e)),window.addEventListener("FidesUpdating",o=>ut(o.detail.consent,e)),window.addEventListener("FidesUpdated",o=>ut(o.detail.consent,e)),(i=window.Fides)!=null&&i.initialized&&window.Fides.cookie&&ut(window.Fides.cookie.consent,e)},ma=e=>{let t,i;const o=()=>{clearTimeout(t),clearTimeout(i)},n=()=>{if(window.Shopify){if(o(),window.Shopify.customerPrivacy){lo(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");lo(e)});return}i=setTimeout(n,200)};t=setTimeout(()=>{throw o(),Error("Fides.shopify was called but Shopify is not present in the page after 3 seconds.")},3e3),n()};var wa={"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"},ka={"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"},Ea={"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"},Oa={"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"},Ca={"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"},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":"Global privatlivskontrol registreret","static.other.cookies":"Cookies","static.other.back":"Tilbage","static.other.vendors":"Forhandlere","static.other.retention":"Opbevaring","static.other.description":"Beskrivelse"},xa={"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"},Na={"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"},Aa={"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"},Ta={"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"},Sa={"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"},La={"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"},Ia={"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"},$a={"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"},Fa={"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"},ja={"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"},Da={"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"},Ra={"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"},za={"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"},Ma={"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"},Ua={"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"},Ba={"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"},Va={"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"},Ga={"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"},Ha={"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"},Ka={"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"},Ya={"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"},Wa={"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"},qa={"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"},Za={"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"},Xa={"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"},Ja={"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"},Qa={"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"},es={"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"},ts={"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"},is={"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"},os={"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"},ns={"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"},rs={"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"},as={"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"},ss={"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 Ht={ar:wa,bg:ka,bs:Ea,ca:Oa,cs:Ca,da:Pa,de:xa,el:Na,en:Aa,es:Ta,"es-MX":Sa,et:La,eu:Ia,fi:$a,fr:Fa,"fr-CA":ja,gl:Da,"hi-IN":Ra,hr:za,hu:Ma,it:Ua,ja:Ba,lt:Va,lv:Ga,mt:Ha,nl:Ka,no:Ya,pl:Wa,"pt-BR":qa,"pt-PT":Za,ro:Xa,ru:Ja,sk:Qa,sl:es,"sr-Cyrl":ts,"sr-Latn":is,sv:os,tr:ns,uk:rs,zh:as,"zh-Hant":ss},ls=[{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 cs=Object.defineProperty,co=Object.getOwnPropertySymbols,ds=Object.prototype.hasOwnProperty,us=Object.prototype.propertyIsEnumerable,uo=(e,t,i)=>t in e?cs(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,ne=(e,t)=>{for(var i in t||(t={}))ds.call(t,i)&&uo(e,i,t[i]);if(co)for(var i of co(t))us.call(t,i)&&uo(e,i,t[i]);return e};function re(e,t){return e.toLowerCase().replaceAll("_","-")===t.toLowerCase().replaceAll("_","-")}function fs(e,t){const i={},o=["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(n=>{const r=n.language;let s=!1;t?.override_language&&(s=re(t.override_language,r));const l={};o.forEach(a=>{let c=null;t&&(s||a==="privacy_policy_url")&&(c=a in t?t[a]:null);const _=n[a];typeof _=="string"&&(l[`exp.${a}`]=c||_)}),i[r]=ne(ne({},l),i[r])});else{const n=X,r={};o.forEach(s=>{const l=e[s];typeof l=="string"&&(r[`exp.${s}`]=l)}),i[n]=ne(ne({},r),i[n])}return i}function Kt(e){var t;if((t=e?.experience_config)!=null&&t.translations){const{translations:i}=e.experience_config,o=i.find(n=>n.is_default);return o?.language}}function fo(e,t){const i={};return t.forEach(o=>{const n=Object.keys(e).find(r=>re(r,o));if(n){const r=e[n],s={};["purposes","specialPurposes","features","specialFeatures","stacks","dataCategories"].forEach(a=>{const c=r[a]||{};Object.keys(c).forEach(u=>{const d=c[u],_=`exp.tcf.${a}.${u}`;s[`${_}.name`]=d.name,s[`${_}.description`]=d.description,d.illustrations&&d.illustrations.length>0&&d.illustrations.forEach((v,g)=>{s[`${_}.illustrations.${g}`]=v})})}),i[o]=ne(ne({},s),i[o])}}),i}function po(e){return Object.keys(Ht).forEach(t=>{e.load(t,Ht[t])}),Object.keys(Ht)}function vo(e,t,i){var o;const n={},r=(o=t.available_locales)!=null&&o.length?t.available_locales:[X];if(t?.experience_config){const s=t.experience_config,l=fs(s,i);Object.keys(l).forEach(a=>{n[a]=ne(ne({},l[a]),n[a])})}r.forEach(s=>{e.load(s,n[s])})}function _o(e,t){if(!t.gvl)return;const{locale:i}=e,o={};o[i]=t.gvl;const n=fo(o,[i]);e.load(i,n[i])}function go(e,t,i){const o=fo(t,i);i.forEach(n=>{e.load(n,o[n])})}function ho(e){return e.locale}function bo(e,t,i=X){const o=e?.language;return t||o||i}function yo(e,t,i=X){const o=e.match(nt);if(o){const[n,r]=o,s=t.find(a=>re(a,n));if(s)return s;const l=t.find(a=>re(a,r));if(l)return l}return i}function ke(e,t){return e.t(t)!==""&&e.t(t)!==t}function Yt(e,t,i){if(!i||!i.translations)return null;if(e){const n=i.translations.find(r=>re(r.language,e));if(n)return n}const o=i.translations.find(n=>re(n.language,t));return o||i.translations[0]||null}function ft(e,t,i){if(!i||!i.translations)return null;if(e){const n=i.translations.find(r=>re(r.language,e));if(n)return n}const o=i.translations.find(n=>re(n.language,t));return o||i.translations[0]||null}function mo(e,t,i,o,n){var r,s,l,a,c;po(e);const u=(r=i.available_locales)!=null&&r.length?i.available_locales:[X];vo(e,i,n);const d=ls.filter(b=>u.includes(b.locale)),_=d.findIndex(b=>re(b.locale,e.getDefaultLocale()));_>0&&d.unshift(d.splice(_,1)[0]),e.setAvailableLanguages(d);const v=Kt(i)||X;e.setDefaultLocale(v);let g=v;((s=i.experience_config)==null?void 0:s.auto_detect_language)===!1||(g=bo(t,o?.fidesLocale,v));const p=yo(g,u||[],e.getDefaultLocale());if(!!((a=(l=i.experience_config)==null?void 0:l.translations)!=null&&a.find(b=>b.language===p)))e.activate(p);else{const b=ft(p,v,i.experience_config);b?.language,e.activate(b?.language||p)}((c=i.experience_config)==null?void 0:c.component)===G.TCF_OVERLAY&&i.gvl&&_o(e,i)}function Wt(){let e=[],t=X,i=X;const o={};return{setAvailableLanguages(n){e=n},get availableLanguages(){return e},activate:n=>{i=n},getDefaultLocale:()=>t,setDefaultLocale:n=>{t=n},get locale(){return i},load:(n,r)=>{o[n]=ne(ne({},o[n]),r)},t:n=>{if(typeof n>"u")throw new TypeError("Unexpected type for descriptor or id!");let r;if(typeof n=="string")r=n;else if(typeof n=="object"&&n.id)r=n.id;else return"";return i&&i in o&&r&&r in o[i]&&o[i][r]?o[i][r]:r}}}const wo=(e,t,i)=>{var o;let n=ot;if(!e)t.t("exp.modal_link_label")!=="exp.modal_link_label"&&(n=t.t("exp.modal_link_label"));else{const r=t.getDefaultLocale(),s=(o=i?.experience_config)==null?void 0:o.translations.find(l=>l.language===r);s?.modal_link_label&&(n=s.modal_link_label)}return n},ps=Wt();function vs(e){return Array.from(e).length}var _s=Object.defineProperty,gs=Object.defineProperties,hs=Object.getOwnPropertyDescriptors,ko=Object.getOwnPropertySymbols,bs=Object.prototype.hasOwnProperty,ys=Object.prototype.propertyIsEnumerable,Eo=(e,t,i)=>t in e?_s(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Se=(e,t)=>{for(var i in t||(t={}))bs.call(t,i)&&Eo(e,i,t[i]);if(ko)for(var i of ko(t))ys.call(t,i)&&Eo(e,i,t[i]);return e},qt=(e,t)=>gs(e,hs(t)),pt=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())}),Oo=(e=>(e.PRIVACY_EXPERIENCE="/privacy-experience",e.PRIVACY_PREFERENCES="/privacy-preferences",e.GVL_TRANSLATIONS="/privacy-experience/gvl/translations",e.NOTICES_SERVED="/notices-served",e))(Oo||{});function Co(){return{}}const Po=e=>pt(void 0,[e],function*({userLocationString:t,userLanguageString:i,fidesApiUrl:o,apiOptions:n,propertyId:r,requestMinimalTCF:s,missingExperienceHandler:l=Co,excludeNoticeAssetsBySystems:a}){var c,u,d;if(n?.getPrivacyExperienceFn)try{return yield n.getPrivacyExperienceFn(t,null)}catch(b){return l(b)}const _=[["Unescape-Safestr","true"],["Accept-Encoding","gzip, deflate"]];i&&_.push(["Accept-Language",i]);const v={method:"GET",mode:"cors",headers:_};let g;a&&(g=(Array.isArray(a)?[...a]:a.split(",").map(m=>m.trim()).filter(Boolean)).sort((m,k)=>m.localeCompare(k)).join(","));let p=Se(Se(Se({show_disabled:"false",region:t,component:G.OVERLAY,has_config:"true",systems_applicable:"true",exclude_gvl_languages:"true",include_meta:"true",include_gvl:"true",include_non_applicable_notices:"true"},s&&{minimal_tcf:"true"}),r&&{property_id:r}),g&&{exclude_notice_assets_by_systems:g});p=new URLSearchParams(p);let h;try{if(h=yield fetch(`${o}/privacy-experience?${p}`,v),!h.ok)throw new Error("Error fetching experience from Fides API")}catch(b){return l(b)}try{const b=yield h.json();if(((c=b.items)==null?void 0:c.length)<1)return{};const m=b.items&&b.items[0],k=(d=(u=m.experience_config)==null?void 0:u.translations)==null?void 0:d[0].language;return m}catch(b){return l(b)}}),xo=(e,t)=>pt(void 0,null,function*(){const i=new URLSearchParams;t?.forEach(s=>{i.append("language",s)});const o={method:"GET",mode:"cors"};let n;try{n=yield fetch(`${e}/privacy-experience/gvl/translations${vs(i)>0?"?":""}${i.toString()}`,o)}catch{return{}}return n.ok?yield n.json():{}}),No={method:"PATCH",mode:"cors",headers:{"Content-Type":"application/json"}},Ao="Fides.js",To=(e,t,i,o,n)=>pt(void 0,null,function*(){var r;if((r=i.apiOptions)!=null&&r.savePreferencesFn){try{yield i.apiOptions.savePreferencesFn(e,o.consent,o.fides_string,n)}catch(a){return Promise.reject(a)}return Promise.resolve()}const s=qt(Se({},No),{body:JSON.stringify(qt(Se({},t),{source:Ao}))});return(yield fetch(`${i.fidesApiUrl}/privacy-preferences`,s)).ok,Promise.resolve()}),So=e=>pt(void 0,[e],function*({request:t,options:i}){var o;if((o=i.apiOptions)!=null&&o.patchNoticesServedFn)try{return yield i.apiOptions.patchNoticesServedFn(t)}catch{return null}const n=qt(Se({},No),{body:JSON.stringify(t)});try{const r=yield fetch(`${i.fidesApiUrl}/notices-served`,n);return r.ok?yield r.json():null}catch{return null}});var ms=Object.defineProperty,ws=(e,t,i)=>t in e?ms(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,ks=(e,t,i)=>ws(e,t+"",i);class Es{constructor(){ks(this,"servedNoticeHistoryId",null)}getServedNoticeHistoryId(){return this.servedNoticeHistoryId||(this.servedNoticeHistoryId=Ai()),this.servedNoticeHistoryId}reset(){this.servedNoticeHistoryId=null}hasLifecycleId(){return this.servedNoticeHistoryId!==null}}const Lo=new Es;var Os=Object.defineProperty,Cs=Object.defineProperties,Ps=Object.getOwnPropertyDescriptors,Io=Object.getOwnPropertySymbols,xs=Object.prototype.hasOwnProperty,Ns=Object.prototype.propertyIsEnumerable,$o=(e,t,i)=>t in e?Os(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,de=(e,t)=>{for(var i in t||(t={}))xs.call(t,i)&&$o(e,i,t[i]);if(Io)for(var i of Io(t))Ns.call(t,i)&&$o(e,i,t[i]);return e},vt=(e,t)=>Cs(e,Ps(t)),Zt=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const As=[$.SCRIPT,$.GPC,$.EXTERNAL_PROVIDER];function Ts(e,t,i,o,n,r,s,l,a){return Zt(this,null,function*(){const c=(r||[]).map(d=>({preference:d.consentPreference,privacy_notice_history_id:d.noticeHistoryId||""})),u=de({browser_identity:t.identity,preferences:c,privacy_experience_config_history_id:n,user_geography:l,method:o,served_notice_history_id:a,property_id:i.property_id},s??[]);yield To(o,u,e,t,i)})}const Ss=e=>Zt(void 0,[e],function*({consentPreferencesToSave:t,privacyExperienceConfigHistoryId:i,experience:o,consentMethod:n,options:r,userLocationString:s,cookie:l,eventExtraDetails:a,servedNoticeHistoryId:c,tcf:u,updateCookie:d}){var _,v,g,p,h,b,m,k,O;if(!d&&t&&(d=A=>Vi(A,t)),!d&&!t)throw new Error("updateCookie is required");const w=vt(de({},a?.trigger),{origin:((_=a?.trigger)==null?void 0:_.origin)||(As.includes(n)?we.EXTERNAL:we.FIDES)}),x=yield d(l);Object.assign(l,x),Object.assign(l.fides_meta,{consentMethod:n}),ce("FidesUpdating",l,vt(de({},a),{trigger:w}));const U=Ue(l.consent,(g=(v=window.Fides)==null?void 0:v.experience)==null?void 0:g.non_applicable_privacy_notices,(h=(p=window.Fides)==null?void 0:p.experience)==null?void 0:h.privacy_notices,void 0,void 0,l.non_applicable_notice_keys),P=!!((m=(b=window.Fides)==null?void 0:b.experience)!=null&&m.non_applicable_privacy_notices)||!!((O=(k=window.Fides)==null?void 0:k.experience)!=null&&O.privacy_notices);if(window.Fides.consent=Vt(U,r,P),window.Fides.fides_string=l.fides_string,window.Fides.tcf_consent=l.tcf_consent,zi(vt(de({},l),{consent:U}),r.base64Cookie),window.Fides.saved_consent=l.consent,!r.fidesDisableSaveApi)try{yield Ts(r,l,o,n,i,t,u,s,c)}catch{}t&&t.filter(A=>A.consentPreference===Z.OPT_OUT).forEach(A=>{var T,L,I;(T=A.notice)!=null&&T.cookies&&Ui(A.notice.cookies,(L=o.experience_config)==null?void 0:L.cookie_deletion_based_on_host_domain,(I=o.experience_config)==null?void 0:I.auto_subdomain_cookie_deletion)}),ce("FidesUpdated",l,vt(de({},a),{trigger:w}))}),Fo=(e,t,i,o)=>Object.entries(i).reduce((n,[r,s])=>{if(n)return n;const l=t.find(d=>d===r);if(l&&!s&&o!==$.EXTERNAL_PROVIDER)return new Error(`Provided notice key '${r}' is not applicable to the current experience.`);const a=e.find(d=>d.notice_key===r);if(!l&&!a)return new Error(`'${r}' is not a valid notice key`);const u=a?.consent_mechanism===q.NOTICE_ONLY;return u&&s!==!0&&s!==Z.ACKNOWLEDGE&&o!==$.EXTERNAL_PROVIDER?new Error(`Invalid consent value for notice-only notice key: '${r}'. Must be \`true\` or "acknowledge"`):!u&&typeof s!="boolean"&&s!==Z.OPT_IN&&s!==Z.OPT_OUT?new Error(`Invalid consent value for notice key: '${r}'. Must be a boolean or "opt_in" or "opt_out"`):null},null),Xt=(e,t)=>Zt(void 0,null,function*(){var i;const{experience:o,cookie:n,config:r,locale:s}=e;if(!o)throw new Error("Experience must be initialized before updating consent");if(!r)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(he).includes(t.validation))throw new Error(`Validation must be one of: ${Object.values(he).join(", ")} (default is ${he.THROW})`);const{noticeConsent:l,fidesString:a,validation:c=he.THROW,consentMethod:u=$.SCRIPT,eventExtraDetails:d={trigger:{origin:we.EXTERNAL}},tcf:_,updateCookie:v}=t,{experience_config:g,privacy_notices:p,non_applicable_privacy_notices:h}=o,b=Kt(o)||X,m=P=>{if(c===he.THROW)throw new Error(P);c===he.WARN&&console.warn(P)};let k=n.consent||{};if(a)try{const P=Gt(a);if(P.nc){const A=ct(P.nc);k=de(de({},n.consent),A);const T=Fo(p||[],h||[],k,u);T&&m(T.message)}}catch(P){const A=P instanceof Error?P.message:String(P);m(`Invalid fidesString provided: ${A}`)}else if(l){const P=Fo(p||[],h||[],l,u);P&&m(P.message),k=de(de({},n.consent),l)}const O=[];Object.entries(k).forEach(([P,A])=>{const T=p?.find(L=>L.notice_key===P);if(T){const L=Yt(s,b,T),I=L?.privacy_notice_history_id;let B;if(typeof A=="boolean"?B=ze(A,T.consent_mechanism):B=A,I){const Y=new Tt(T,B,I);O.push(Y)}}});let w;if((i=g?.translations)!=null&&i.length){const P=ft(s,b,g);w=P?.privacy_experience_config_history_id}const x=at(r.geolocation),U=Lo.getServedNoticeHistoryId();return Ss({consentPreferencesToSave:O,privacyExperienceConfigHistoryId:w,experience:o,consentMethod:u,options:r.options,userLocationString:x,cookie:n,eventExtraDetails:d,servedNoticeHistoryId:U,tcf:_,updateCookie:v})}),Jt=e=>{throw new Error(e)},_t=e=>{typeof window<"u"&&(window.Fides=e)},jo=({cookie:e,experience:t})=>{let i=t;return Rt(e.consent)&&(i=zt({experience:t,cookie:e})),i},Do=({tcfEnabled:e=!1})=>({consent:{},experience:void 0,geolocation:{},locale:X,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:no,blueconic:va,gtm:_a,meta:ha,shopify:ma,showModal:Bt,getModalLinkLabel:()=>ot,encodeNoticeConsentString:to,decodeNoticeConsentString:ct,reinitialize(){return typeof this.init!="function"?Promise.reject(new Error("Fides.init method is not available")):((!this.config||!this.initialized)&&Jt("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:lt(this.experience,this.cookie,this.saved_consent,this.options)},updateConsent(t){const{consent:i,fidesString:o,validation:n}=t;return Xt(this,{noticeConsent:i,fidesString:o,validation:n})}});var Ls=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const Ro=(e,t)=>Ls(void 0,null,function*(){if(!e||!t)return null;const o=yield fetch(t,{mode:"cors"});if(!o.ok)return null;try{return yield o.json()}catch{return null}}),Is=()=>{var e,t,i,o,n,r;if((e=window.Fides)!=null&&e.options.tcfEnabled&&!((t=window.Fides)!=null&&t.options.gppEnabled)&&!((n=(o=(i=window.Fides)==null?void 0:i.experience)==null?void 0:o.privacy_notices)!=null&&n.length))return!1;if(typeof((r=window.navigator)==null?void 0:r.globalPrivacyControl)=="boolean")return window.navigator.globalPrivacyControl;const l=new URL(window.location.href).searchParams.get("globalPrivacyControl");if(l==="true")return!0;if(l==="false")return!1},Le=()=>typeof window>"u"?{}:{globalPrivacyControl:Is()};var $s=Object.defineProperty,zo=Object.getOwnPropertySymbols,Fs=Object.prototype.hasOwnProperty,js=Object.prototype.propertyIsEnumerable,Mo=(e,t,i)=>t in e?$s(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Ds=(e,t)=>{for(var i in t||(t={}))Fs.call(t,i)&&Mo(e,i,t[i]);if(zo)for(var i of zo(t))js.call(t,i)&&Mo(e,i,t[i]);return e},Rs=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const zs=e=>Rs(void 0,null,function*(){var t;const{experience:i,saved_consent:o,options:n}=e;if(!i||!i.experience_config||!((t=i.privacy_notices)!=null&&t.length))return!1;const r=Le(),{nc:s}=Gt(n.fidesString||"");r.globalPrivacyControl;const{consent:l,method:a}=Yi(n),c=!!l&&!!a&&!Ae();if(!r.globalPrivacyControl&&!s&&!c)return!1;let u=!1,d=!1,_=!1;const v=i.privacy_notices.reduce((g,p)=>{const h=Ds({},g),b=le(p.default_preference);h[p.notice_key]=b,o[p.notice_key]&&(h[p.notice_key]=o[p.notice_key]);const m=et(p,o),k=p.consent_mechanism===q.NOTICE_ONLY;if(c&&l){const O=l[p.notice_key];if(O!==void 0)return _=!0,h[p.notice_key]=O,h}if(k)return h;if(s){const w=ct(s)[p.notice_key];if(w!==void 0)return d=!0,h[p.notice_key]=w,h}return r.globalPrivacyControl&&!m&&p.has_gpc_flag&&(u=!0,h[p.notice_key]=!1),h},{});if(u||d||_){let g=$.SCRIPT;return _&&a?g=a:d?g=$.SCRIPT:u&&(g=$.GPC),yield Xt(e,{noticeConsent:v,consentMethod:g}),!0}return!1}),Ms=()=>{document.body.classList.add("fides-no-scroll")},Uo=()=>{document.body.classList.remove("fides-no-scroll")},Us=e=>new DOMParser().parseFromString(e,"text/html").body.textContent||"",Bo=e=>{let t=0,i=200;return new Promise(o=>{const n=r=>{const s=setTimeout(()=>{const l=document.getElementById(e);l?(clearInterval(s),o(l)):(t+=1,t>=5&&i<1e3&&(i+=200),n(i))},r)};n(i)})};var Bs=Object.defineProperty,Vs=Object.defineProperties,Gs=Object.getOwnPropertyDescriptors,Vo=Object.getOwnPropertySymbols,Hs=Object.prototype.hasOwnProperty,Ks=Object.prototype.propertyIsEnumerable,Go=(e,t,i)=>t in e?Bs(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Qt=(e,t)=>{for(var i in t||(t={}))Hs.call(t,i)&&Go(e,i,t[i]);if(Vo)for(var i of Vo(t))Ks.call(t,i)&&Go(e,i,t[i]);return e},Ys=(e,t)=>Vs(e,Gs(t)),Ho=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const Ws=(e,t)=>Ho(void 0,null,function*(){const i=at(e);return i||at(yield Ro(t.isGeolocationEnabled,t.geolocationApiUrl))}),Ko=(e,t)=>{const i={};if(typeof window<"u"){const o=new URLSearchParams(window.location.search),n=t.options.customOptionsPath&&t.options.customOptionsPath.split("."),r=n&&n.length>=0?Qi(n):window.fides_overrides,s=Xi(e);s?.forEach(({overrideName:l,overrideType:a,overrideKey:c,validationRegex:u,transform:d})=>{const _=o.get(c),v=r?r[c]:void 0,g=it(c),p=_||v||g;p&&u.test(p.toString())&&(d?i[l]=d(p.toString()):i[l]=a==="string"?p:JSON.parse(p.toString()))})}return i},qs=({consent:e,options:t})=>{const i=Le(),o=Mi(e,i);return Ri(o,t.fidesClearCookie)},Zs=({cookie:e,savedConsent:t,experience:i,geolocation:o,options:n,updateExperienceFromCookieConsent:r})=>{let s=i;return Te(i)&&(s=r({experience:i,cookie:e,debug:n.debug})),{consent:e.consent,fides_meta:e.fides_meta,identity:e.identity,experience:s,tcf_consent:e.tcf_consent,fides_string:e.fides_string,saved_consent:t,geolocation:o,options:n,initialized:!0}},Xs=e=>Ho(void 0,[e],function*({fides:t,initOverlay:i,renderOverlay:o,updateExperience:n,overrides:r}){var s,l,a,c,u,d,_,v,g;const{config:p}=t;if(!p)throw new Error("Fides config should be initialized");const{options:h,geolocation:b}=p;let m=!0,k,O=()=>ot;if(!t.cookie)throw new Error("Fides cookie should be initialized");if(m=h.isOverlayEnabled,m){Zi(h)||(m=!1),k=yield Ws(b,h);let B=!1;if(k?Te(t.experience)||(B=!0,t.experience=yield Po({userLocationString:k,fidesApiUrl:h.fidesApiUrl,apiOptions:h.apiOptions,requestMinimalTCF:!1,propertyId:(s=t.config)==null?void 0:s.propertyId,excludeNoticeAssetsBySystems:h.fidesDisabledSystems||void 0})):m=!1,m&&Te(t.experience)&&Ji(t.experience)){if(B){const V=n({cookie:t.cookie,experience:t.experience});t.experience=Qt(Qt({},t.experience),V)}(l=t.config)!=null&&l.propertyId&&(t.experience.property_id=t.config.propertyId);const Y=Gi({cookie:t.cookie,experience:t.experience});t.cookie=Y;const z=Wt();if(mo(z,window?.navigator,t.experience,h,r?.experienceTranslationOverrides),t.locale=z.locale||X,O=V=>wo(!!V?.disableLocalization,z,t.experience),((a=t.experience.experience_config)==null?void 0:a.component)===G.HEADLESS){const V=h.modalLinkId||"fides-modal-link";!t.experience||h.fidesEmbed||h.modalLinkId,Bo(V).then(J=>{document.body.classList.add("fides-overlay-modal-link-shown"),J.classList.add("fides-modal-link-shown")}),m=!1}if(i&&m){const V=Ys(Qt({},t),{cookie:t.cookie,config:p,options:h,experience:t.experience,fidesRegionString:k});i({initializedFides:V,i18n:z,renderOverlay:o}).catch(J=>{})}setTimeout(zs.bind(null,t))}}const{fides_meta:x,identity:U,fides_string:P,tcf_consent:A}=t.cookie,T=Ue(t.cookie.consent,(c=t.experience)==null?void 0:c.non_applicable_privacy_notices,(u=t.experience)==null?void 0:u.privacy_notices,(d=h.fidesConsentFlagType)!=null?d:void 0,(_=h.fidesConsentNonApplicableFlagMode)!=null?_:void 0,t.cookie.non_applicable_notice_keys),L=!!((v=t.experience)!=null&&v.non_applicable_privacy_notices)||!!((g=t.experience)!=null&&g.privacy_notices);return{consent:Vt(T,h,L),fides_meta:x,identity:U,fides_string:P,tcf_consent:A,experience:t.experience,geolocation:b,options:h,initialized:!0,getModalLinkLabel:O}});var gt,C,Yo,Ee,Wo,qo,ei,ti,ii,oi,Zo,Ve={},Xo=[],Js=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,ht=Array.isArray;function ye(e,t){for(var i in t)e[i]=t[i];return e}function Jo(e){var t=e.parentNode;t&&t.removeChild(e)}function ni(e,t,i){var o,n,r,s={};for(r in t)r=="key"?o=t[r]:r=="ref"?n=t[r]:s[r]=t[r];if(arguments.length>2&&(s.children=arguments.length>3?gt.call(arguments,2):i),typeof e=="function"&&e.defaultProps!=null)for(r in e.defaultProps)s[r]===void 0&&(s[r]=e.defaultProps[r]);return bt(e,s,o,n,null)}function bt(e,t,i,o,n){var r={type:e,props:t,key:i,ref:o,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:n??++Yo,__i:-1,__u:0};return n==null&&C.vnode!=null&&C.vnode(r),r}function ue(e){return e.children}function fe(e,t){this.props=e,this.context=t}function Oe(e,t){if(t==null)return e.__?Oe(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"?Oe(e):null}function Qo(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 Qo(e)}}function ri(e){(!e.__d&&(e.__d=!0)&&Ee.push(e)&&!yt.__r++||Wo!==C.debounceRendering)&&((Wo=C.debounceRendering)||qo)(yt)}function yt(){var e,t,i,o,n,r,s,l;for(Ee.sort(ei);e=Ee.shift();)e.__d&&(t=Ee.length,o=void 0,r=(n=(i=e).__v).__e,s=[],l=[],i.__P&&((o=ye({},n)).__v=n.__v+1,C.vnode&&C.vnode(o),ai(i.__P,o,n,i.__n,i.__P.namespaceURI,32&n.__u?[r]:null,s,r??Oe(n),!!(32&n.__u),l),o.__v=n.__v,o.__.__k[o.__i]=o,rn(s,o,l),o.__e!=r&&Qo(o)),Ee.length>t&&Ee.sort(ei));yt.__r=0}function en(e,t,i,o,n,r,s,l,a,c,u){var d,_,v,g,p,h=o&&o.__k||Xo,b=t.length;for(i.__d=a,Qs(i,t,h),a=i.__d,d=0;d<b;d++)(v=i.__k[d])!=null&&typeof v!="boolean"&&typeof v!="function"&&(_=v.__i===-1?Ve:h[v.__i]||Ve,v.__i=d,ai(e,v,_,n,r,s,l,a,c,u),g=v.__e,v.ref&&_.ref!=v.ref&&(_.ref&&si(_.ref,null,v),u.push(v.ref,v.__c||g,v)),p==null&&g!=null&&(p=g),65536&v.__u||_.__k===v.__k?(a&&typeof v.type=="string"&&!e.contains(a)&&(a=Oe(_)),a=tn(v,a,e)):typeof v.type=="function"&&v.__d!==void 0?a=v.__d:g&&(a=g.nextSibling),v.__d=void 0,v.__u&=-196609);i.__d=a,i.__e=p}function Qs(e,t,i){var o,n,r,s,l,a=t.length,c=i.length,u=c,d=0;for(e.__k=[],o=0;o<a;o++)s=o+d,(n=e.__k[o]=(n=t[o])==null||typeof n=="boolean"||typeof n=="function"?null:typeof n=="string"||typeof n=="number"||typeof n=="bigint"||n.constructor==String?bt(null,n,null,null,null):ht(n)?bt(ue,{children:n},null,null,null):n.constructor===void 0&&n.__b>0?bt(n.type,n.props,n.key,n.ref?n.ref:null,n.__v):n)!=null?(n.__=e,n.__b=e.__b+1,l=el(n,i,s,u),n.__i=l,r=null,l!==-1&&(u--,(r=i[l])&&(r.__u|=131072)),r==null||r.__v===null?(l==-1&&d--,typeof n.type!="function"&&(n.__u|=65536)):l!==s&&(l==s-1?d=l-s:l==s+1?d++:l>s?u>a-s?d+=l-s:d--:l<s&&d++,l!==o+d&&(n.__u|=65536))):(r=i[s])&&r.key==null&&r.__e&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=Oe(r)),li(r,r,!1),i[s]=null,u--);if(u)for(o=0;o<c;o++)(r=i[o])!=null&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=Oe(r)),li(r,r))}function tn(e,t,i){var o,n;if(typeof e.type=="function"){for(o=e.__k,n=0;o&&n<o.length;n++)o[n]&&(o[n].__=e,t=tn(o[n],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 mt(e,t){return t=t||[],e==null||typeof e=="boolean"||(ht(e)?e.some(function(i){mt(i,t)}):t.push(e)),t}function el(e,t,i,o){var n=e.key,r=e.type,s=i-1,l=i+1,a=t[i];if(a===null||a&&n==a.key&&r===a.type&&(131072&a.__u)==0)return i;if(o>(a!=null&&(131072&a.__u)==0?1:0))for(;s>=0||l<t.length;){if(s>=0){if((a=t[s])&&(131072&a.__u)==0&&n==a.key&&r===a.type)return s;s--}if(l<t.length){if((a=t[l])&&(131072&a.__u)==0&&n==a.key&&r===a.type)return l;l++}}return-1}function on(e,t,i){t[0]==="-"?e.setProperty(t,i??""):e[t]=i==null?"":typeof i!="number"||Js.test(t)?i:i+"px"}function wt(e,t,i,o,n){var r;e:if(t==="style")if(typeof i=="string")e.style.cssText=i;else{if(typeof o=="string"&&(e.style.cssText=o=""),o)for(t in o)i&&t in i||on(e.style,t,"");if(i)for(t in i)o&&i[t]===o[t]||on(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?o?i.u=o.u:(i.u=ti,e.addEventListener(t,r?oi:ii,r)):e.removeEventListener(t,r?oi:ii,r);else{if(n=="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 nn(e){return function(t){if(this.l){var i=this.l[t.type+e];if(t.t==null)t.t=ti++;else if(t.t<i.u)return;return i(C.event?C.event(t):t)}}}function ai(e,t,i,o,n,r,s,l,a,c){var u,d,_,v,g,p,h,b,m,k,O,w,x,U,P,A,T=t.type;if(t.constructor!==void 0)return null;128&i.__u&&(a=!!(32&i.__u),r=[l=t.__e=i.__e]),(u=C.__b)&&u(t);e:if(typeof T=="function")try{if(b=t.props,m="prototype"in T&&T.prototype.render,k=(u=T.contextType)&&o[u.__c],O=u?k?k.props.value:u.__:o,i.__c?h=(d=t.__c=i.__c).__=d.__E:(m?t.__c=d=new T(b,O):(t.__c=d=new fe(b,O),d.constructor=T,d.render=il),k&&k.sub(d),d.props=b,d.state||(d.state={}),d.context=O,d.__n=o,_=d.__d=!0,d.__h=[],d._sb=[]),m&&d.__s==null&&(d.__s=d.state),m&&T.getDerivedStateFromProps!=null&&(d.__s==d.state&&(d.__s=ye({},d.__s)),ye(d.__s,T.getDerivedStateFromProps(b,d.__s))),v=d.props,g=d.state,d.__v=t,_)m&&T.getDerivedStateFromProps==null&&d.componentWillMount!=null&&d.componentWillMount(),m&&d.componentDidMount!=null&&d.__h.push(d.componentDidMount);else{if(m&&T.getDerivedStateFromProps==null&&b!==v&&d.componentWillReceiveProps!=null&&d.componentWillReceiveProps(b,O),!d.__e&&(d.shouldComponentUpdate!=null&&d.shouldComponentUpdate(b,d.__s,O)===!1||t.__v===i.__v)){for(t.__v!==i.__v&&(d.props=b,d.state=d.__s,d.__d=!1),t.__e=i.__e,t.__k=i.__k,t.__k.forEach(function(L){L&&(L.__=t)}),w=0;w<d._sb.length;w++)d.__h.push(d._sb[w]);d._sb=[],d.__h.length&&s.push(d);break e}d.componentWillUpdate!=null&&d.componentWillUpdate(b,d.__s,O),m&&d.componentDidUpdate!=null&&d.__h.push(function(){d.componentDidUpdate(v,g,p)})}if(d.context=O,d.props=b,d.__P=e,d.__e=!1,x=C.__r,U=0,m){for(d.state=d.__s,d.__d=!1,x&&x(t),u=d.render(d.props,d.state,d.context),P=0;P<d._sb.length;P++)d.__h.push(d._sb[P]);d._sb=[]}else do d.__d=!1,x&&x(t),u=d.render(d.props,d.state,d.context),d.state=d.__s;while(d.__d&&++U<25);d.state=d.__s,d.getChildContext!=null&&(o=ye(ye({},o),d.getChildContext())),m&&!_&&d.getSnapshotBeforeUpdate!=null&&(p=d.getSnapshotBeforeUpdate(v,g)),en(e,ht(A=u!=null&&u.type===ue&&u.key==null?u.props.children:u)?A:[A],t,i,o,n,r,s,l,a,c),d.base=t.__e,t.__u&=-161,d.__h.length&&s.push(d),h&&(d.__E=d.__=null)}catch(L){t.__v=null,a||r!=null?(t.__e=l,t.__u|=a?160:32,r[r.indexOf(l)]=null):(t.__e=i.__e,t.__k=i.__k),C.__e(L,t,i)}else r==null&&t.__v===i.__v?(t.__k=i.__k,t.__e=i.__e):t.__e=tl(i.__e,t,i,o,n,r,s,a,c);(u=C.diffed)&&u(t)}function rn(e,t,i){t.__d=void 0;for(var o=0;o<i.length;o++)si(i[o],i[++o],i[++o]);C.__c&&C.__c(t,e),e.some(function(n){try{e=n.__h,n.__h=[],e.some(function(r){r.call(n)})}catch(r){C.__e(r,n.__v)}})}function tl(e,t,i,o,n,r,s,l,a){var c,u,d,_,v,g,p,h=i.props,b=t.props,m=t.type;if(m==="svg"?n="http://www.w3.org/2000/svg":m==="math"?n="http://www.w3.org/1998/Math/MathML":n||(n="http://www.w3.org/1999/xhtml"),r!=null){for(c=0;c<r.length;c++)if((v=r[c])&&"setAttribute"in v==!!m&&(m?v.localName===m:v.nodeType===3)){e=v,r[c]=null;break}}if(e==null){if(m===null)return document.createTextNode(b);e=document.createElementNS(n,m,b.is&&b),r=null,l=!1}if(m===null)h===b||l&&e.data===b||(e.data=b);else{if(r=r&&gt.call(e.childNodes),h=i.props||Ve,!l&&r!=null)for(h={},c=0;c<e.attributes.length;c++)h[(v=e.attributes[c]).name]=v.value;for(c in h)if(v=h[c],c!="children"){if(c=="dangerouslySetInnerHTML")d=v;else if(c!=="key"&&!(c in b)){if(c=="value"&&"defaultValue"in b||c=="checked"&&"defaultChecked"in b)continue;wt(e,c,null,v,n)}}for(c in b)v=b[c],c=="children"?_=v:c=="dangerouslySetInnerHTML"?u=v:c=="value"?g=v:c=="checked"?p=v:c==="key"||l&&typeof v!="function"||h[c]===v||wt(e,c,v,h[c],n);if(u)l||d&&(u.__html===d.__html||u.__html===e.innerHTML)||(e.innerHTML=u.__html),t.__k=[];else if(d&&(e.innerHTML=""),en(e,ht(_)?_:[_],t,i,o,m==="foreignObject"?"http://www.w3.org/1999/xhtml":n,r,s,r?r[0]:i.__k&&Oe(i,0),l,a),r!=null)for(c=r.length;c--;)r[c]!=null&&Jo(r[c]);l||(c="value",g!==void 0&&(g!==e[c]||m==="progress"&&!g||m==="option"&&g!==h[c])&&wt(e,c,g,h[c],n),c="checked",p!==void 0&&p!==e[c]&&wt(e,c,p,h[c],n))}return e}function si(e,t,i){try{typeof e=="function"?e(t):e.current=t}catch(o){C.__e(o,i)}}function li(e,t,i){var o,n;if(C.unmount&&C.unmount(e),(o=e.ref)&&(o.current&&o.current!==e.__e||si(o,null,t)),(o=e.__c)!=null){if(o.componentWillUnmount)try{o.componentWillUnmount()}catch(r){C.__e(r,t)}o.base=o.__P=null}if(o=e.__k)for(n=0;n<o.length;n++)o[n]&&li(o[n],t,i||typeof e.type!="function");i||e.__e==null||Jo(e.__e),e.__c=e.__=e.__e=e.__d=void 0}function il(e,t,i){return this.constructor(e,i)}function an(e,t,i){var o,n,r,s;C.__&&C.__(e,t),n=(o=!1)?null:t.__k,r=[],s=[],ai(t,e=t.__k=ni(ue,null,[e]),n||Ve,Ve,t.namespaceURI,n?null:t.firstChild?gt.call(t.childNodes):null,r,n?n.__e:t.firstChild,o,s),rn(r,e,s)}function Ie(e,t){var i={__c:t="__cC"+Zo++,__:e,Consumer:function(o,n){return o.children(n)},Provider:function(o){var n,r;return this.getChildContext||(n=[],(r={})[t]=this,this.getChildContext=function(){return r},this.componentWillUnmount=function(){n=null},this.shouldComponentUpdate=function(s){this.props.value!==s.value&&n.some(function(l){l.__e=!0,ri(l)})},this.sub=function(s){n.push(s);var l=s.componentWillUnmount;s.componentWillUnmount=function(){n&&n.splice(n.indexOf(s),1),l&&l.call(s)}}),o.children}};return i.Provider.__=i.Consumer.contextType=i}gt=Xo.slice,C={__e:function(e,t,i,o){for(var n,r,s;t=t.__;)if((n=t.__c)&&!n.__)try{if((r=n.constructor)&&r.getDerivedStateFromError!=null&&(n.setState(r.getDerivedStateFromError(e)),s=n.__d),n.componentDidCatch!=null&&(n.componentDidCatch(e,o||{}),s=n.__d),s)return n.__E=n}catch(l){e=l}throw e}},Yo=0,fe.prototype.setState=function(e,t){var i;i=this.__s!=null&&this.__s!==this.state?this.__s:this.__s=ye({},this.state),typeof e=="function"&&(e=e(ye({},i),this.props)),e&&ye(i,e),e!=null&&this.__v&&(t&&this._sb.push(t),ri(this))},fe.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),ri(this))},fe.prototype.render=ue,Ee=[],qo=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,ei=function(e,t){return e.__v.__b-t.__v.__b},yt.__r=0,ti=0,ii=nn(!1),oi=nn(!0),Zo=0;const ol=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),o=parseInt(t[2],16),n=parseInt(t[3],16);i/=255,o/=255,n/=255;const r=Math.max(i,o,n),s=Math.min(i,o,n);let l,a;const c=(r+s)/2;if(r===s)l=a=0;else{const u=r-s;switch(a=c>.5?u/(2-r-s):u/(r+s),r){case i:l=(o-n)/u+(o<n?6:0);break;case o:l=(n-i)/u+2;break;case n:l=(i-o)/u+4;break}l/=6}return{h:l,s:a,l:c}}catch{return null}},nl=(e,t=!1)=>{let i="";const o=Math.round(e.h*360),n=Math.round(e.s*100),r=Math.round(e.l*100);return i=`${o},${n}%,${r}%`,i=t?i:`hsl(${i})`,i};var sn=(e=>(e.HEX="hex",e.HSL="hsl",e))(sn||{});const rl=(e,t,i)=>{const o=t==="hex"?ol(e):e;return o&&o.l?(o.l<.25?o.l=o.l+.1:o.l<.5?o.l=o.l+.08:o.l<.75?o.l=o.l+.06:o.l<.9?o.l=o.l+.04:o.l=.9,nl(o)):e};var kt=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const ln="fides-embed-container",al="fides-overlay";let Et;const cn=e=>kt(void 0,[e],function*({initializedFides:t,i18n:i,renderOverlay:o}){const{options:n,experience:r}=t,s=()=>kt(void 0,null,function*(){var l,a,c;try{if(Et&&(an(null,Et),Et=void 0),n.fidesPrimaryColor){document.documentElement.style.setProperty("--fides-overlay-primary-color",n.fidesPrimaryColor);const d=rl(n.fidesPrimaryColor,sn.HEX,1);document.documentElement.style.setProperty("--fides-overlay-primary-button-background-hover-color",d)}let u;if(n.fidesEmbed)u=document.getElementById(ln),u||(yield kt(void 0,null,function*(){return new Promise(_=>{let v=0,g=200;const p=setInterval(()=>{u=document.getElementById(ln),u?(clearInterval(p),_()):(v+=1,v>=5&&g<1e3&&(g+=200))},g)})}));else{const d=n.overlayParentId||al;u=document.getElementById(d),u||(u=document.createElement("div"),u.id=d,u.className="fides-overlay",document.body.prepend(u))}return u?(o&&(((l=r.experience_config)==null?void 0:l.component)===G.MODAL||((a=r.experience_config)==null?void 0:a.component)===G.BANNER_AND_MODAL||((c=r.experience_config)==null?void 0:c.component)===G.TCF_OVERLAY)&&(o({initializedFides:t,i18n:i},u),Et=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",()=>kt(void 0,null,function*(){document.readyState==="interactive"&&s()})):s(),Promise.resolve()});var Ce,F,ci,dn,Ge=0,un=[],M=C,fn=M.__b,pn=M.__r,vn=M.diffed,_n=M.__c,gn=M.unmount,hn=M.__;function He(e,t){M.__h&&M.__h(F,e,Ge||t),Ge=0;var i=F.__H||(F.__H={__:[],__h:[]});return e>=i.__.length&&i.__.push({}),i.__[e]}function K(e){return Ge=1,sl(yn,e)}function sl(e,t,i){var o=He(Ce++,2);if(o.t=e,!o.__c&&(o.__=[i?i(t):yn(void 0,t),function(l){var a=o.__N?o.__N[0]:o.__[0],c=o.t(a,l);a!==c&&(o.__N=[c,o.__[1]],o.__c.setState({}))}],o.__c=F,!F.u)){var n=function(l,a,c){if(!o.__c.__H)return!0;var u=o.__c.__H.__.filter(function(_){return!!_.__c});if(u.every(function(_){return!_.__N}))return!r||r.call(this,l,a,c);var d=!1;return u.forEach(function(_){if(_.__N){var v=_.__[0];_.__=_.__N,_.__N=void 0,v!==_.__[0]&&(d=!0)}}),!(!d&&o.__c.props===l)&&(!r||r.call(this,l,a,c))};F.u=!0;var r=F.shouldComponentUpdate,s=F.componentWillUpdate;F.componentWillUpdate=function(l,a,c){if(this.__e){var u=r;r=void 0,n(l,a,c),r=u}s&&s.call(this,l,a,c)},F.shouldComponentUpdate=n}return o.__N||o.__}function j(e,t){var i=He(Ce++,3);!M.__s&&ui(i.__H,t)&&(i.__=e,i.i=t,F.__H.__h.push(i))}function ll(e,t){var i=He(Ce++,4);!M.__s&&ui(i.__H,t)&&(i.__=e,i.i=t,F.__h.push(i))}function $e(e){return Ge=5,pe(function(){return{current:e}},[])}function pe(e,t){var i=He(Ce++,7);return ui(i.__H,t)&&(i.__=e(),i.__H=t,i.__h=e),i.__}function S(e,t){return Ge=8,pe(function(){return e},t)}function Fe(e){var t=F.context[e.__c],i=He(Ce++,9);return i.c=e,t?(i.__==null&&(i.__=!0,t.sub(F)),t.props.value):e.__}function cl(){for(var e;e=un.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(Ot),e.__H.__h.forEach(di),e.__H.__h=[]}catch(t){e.__H.__h=[],M.__e(t,e.__v)}}M.__b=function(e){F=null,fn&&fn(e)},M.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),hn&&hn(e,t)},M.__r=function(e){pn&&pn(e),Ce=0;var t=(F=e.__c).__H;t&&(ci===F?(t.__h=[],F.__h=[],t.__.forEach(function(i){i.__N&&(i.__=i.__N),i.i=i.__N=void 0})):(t.__h.forEach(Ot),t.__h.forEach(di),t.__h=[],Ce=0)),ci=F},M.diffed=function(e){vn&&vn(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(un.push(t)!==1&&dn===M.requestAnimationFrame||((dn=M.requestAnimationFrame)||dl)(cl)),t.__H.__.forEach(function(i){i.i&&(i.__H=i.i),i.i=void 0})),ci=F=null},M.__c=function(e,t){t.some(function(i){try{i.__h.forEach(Ot),i.__h=i.__h.filter(function(o){return!o.__||di(o)})}catch(o){t.some(function(n){n.__h&&(n.__h=[])}),t=[],M.__e(o,i.__v)}}),_n&&_n(e,t)},M.unmount=function(e){gn&&gn(e);var t,i=e.__c;i&&i.__H&&(i.__H.__.forEach(function(o){try{Ot(o)}catch(n){t=n}}),i.__H=void 0,t&&M.__e(t,i.__v))};var bn=typeof requestAnimationFrame=="function";function dl(e){var t,i=function(){clearTimeout(o),bn&&cancelAnimationFrame(t),setTimeout(e)},o=setTimeout(i,100);bn&&(t=requestAnimationFrame(i))}function Ot(e){var t=F,i=e.__c;typeof i=="function"&&(e.__c=void 0,i()),F=t}function di(e){var t=F;e.__c=e.__(),F=t}function ui(e,t){return!e||e.length!==t.length||t.some(function(i,o){return i!==e[o]})}function yn(e,t){return typeof t=="function"?t(e):t}function ul(e,t){for(var i in t)e[i]=t[i];return e}function mn(e,t){for(var i in e)if(i!=="__source"&&!(i in t))return!0;for(var o in t)if(o!=="__source"&&e[o]!==t[o])return!0;return!1}function wn(e,t){this.props=e,this.context=t}(wn.prototype=new fe).isPureReactComponent=!0,wn.prototype.shouldComponentUpdate=function(e,t){return mn(this.props,e)||mn(this.state,t)};var kn=C.__b;C.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),kn&&kn(e)};var fl=C.__e;C.__e=function(e,t,i,o){if(e.then){for(var n,r=t;r=r.__;)if((n=r.__c)&&n.__c)return t.__e==null&&(t.__e=i.__e,t.__k=i.__k),n.__c(e,t)}fl(e,t,i,o)};var En=C.unmount;function On(e,t,i){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(o){typeof o.__c=="function"&&o.__c()}),e.__c.__H=null),(e=ul({},e)).__c!=null&&(e.__c.__P===i&&(e.__c.__P=t),e.__c=null),e.__k=e.__k&&e.__k.map(function(o){return On(o,t,i)})),e}function Cn(e,t,i){return e&&i&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(o){return Cn(o,t,i)}),e.__c&&e.__c.__P===t&&(e.__e&&i.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=i)),e}function fi(){this.__u=0,this.t=null,this.__b=null}function Pn(e){var t=e.__.__c;return t&&t.__a&&t.__a(e)}function Ct(){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),En&&En(e)},(fi.prototype=new fe).__c=function(e,t){var i=t.__c,o=this;o.t==null&&(o.t=[]),o.t.push(i);var n=Pn(o.__v),r=!1,s=function(){r||(r=!0,i.__R=null,n?n(l):l())};i.__R=s;var l=function(){if(!--o.__u){if(o.state.__a){var a=o.state.__a;o.__v.__k[0]=Cn(a,a.__c.__P,a.__c.__O)}var c;for(o.setState({__a:o.__b=null});c=o.t.pop();)c.forceUpdate()}};o.__u++||32&t.__u||o.setState({__a:o.__b=o.__v.__k[0]}),e.then(s,s)},fi.prototype.componentWillUnmount=function(){this.t=[]},fi.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var i=document.createElement("div"),o=this.__v.__k[0].__c;this.__v.__k[0]=On(this.__b,i,o.__O=o.__P)}this.__b=null}var n=t.__a&&ni(ue,null,e.fallback);return n&&(n.__u&=-33),[ni(ue,null,t.__a?null:e.children),n]};var xn=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]}};(Ct.prototype=new fe).__a=function(e){var t=this,i=Pn(t.__v),o=t.o.get(e);return o[0]++,function(n){var r=function(){t.props.revealOrder?(o.push(n),xn(t,e,o)):n()};i?i(r):r()}},Ct.prototype.render=function(e){this.u=null,this.o=new Map;var t=mt(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},Ct.prototype.componentDidUpdate=Ct.prototype.componentDidMount=function(){var e=this;this.o.forEach(function(t,i){xn(e,i,t)})};var pl=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.element")||60103,vl=/^(?: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]/,_l=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,gl=/[A-Z0-9]/g,hl=typeof document<"u",bl=function(e){return(typeof Symbol<"u"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};fe.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(fe.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})});var Nn=C.event;function yl(){}function ml(){return this.cancelBubble}function wl(){return this.defaultPrevented}C.event=function(e){return Nn&&(e=Nn(e)),e.persist=yl,e.isPropagationStopped=ml,e.isDefaultPrevented=wl,e.nativeEvent=e};var kl={enumerable:!1,configurable:!0,get:function(){return this.class}},An=C.vnode;C.vnode=function(e){typeof e.type=="string"&&function(t){var i=t.props,o=t.type,n={};for(var r in i){var s=i[r];if(!(r==="value"&&"defaultValue"in i&&s==null||hl&&r==="children"&&o==="noscript"||r==="class"||r==="className")){var l=r.toLowerCase();r==="defaultValue"&&"value"in i&&i.value==null?r="value":r==="download"&&s===!0?s="":l==="translate"&&s==="no"?s=!1:l==="ondoubleclick"?r="ondblclick":l!=="onchange"||o!=="input"&&o!=="textarea"||bl(i.type)?l==="onfocus"?r="onfocusin":l==="onblur"?r="onfocusout":_l.test(r)?r=l:o.indexOf("-")===-1&&vl.test(r)?r=r.replace(gl,"-$&").toLowerCase():s===null&&(s=void 0):l=r="oninput",l==="oninput"&&n[r=l]&&(r="oninputCapture"),n[r]=s}}o=="select"&&n.multiple&&Array.isArray(n.value)&&(n.value=mt(i.children).forEach(function(a){a.props.selected=n.value.indexOf(a.props.value)!=-1})),o=="select"&&n.defaultValue!=null&&(n.value=mt(i.children).forEach(function(a){a.props.selected=n.multiple?n.defaultValue.indexOf(a.props.value)!=-1:n.defaultValue==a.props.value})),i.class&&!i.className?(n.class=i.class,Object.defineProperty(n,"className",kl)):(i.className&&!i.class||i.class&&i.className)&&(n.class=n.className=i.className),t.props=n}(e),e.$$typeof=pl,An&&An(e)};var Tn=C.__r;C.__r=function(e){Tn&&Tn(e),e.__c};var Sn=C.diffed;C.diffed=function(e){Sn&&Sn(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)};var El=0;function f(e,t,i,o,n,r){t||(t={});var s,l,a=t;if("ref"in a)for(l in a={},t)l=="ref"?s=t[l]:a[l]=t[l];var c={type:e,props:a,key:i,ref:s,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:--El,__i:-1,__u:0,__source:n,__self:r};if(typeof e=="function"&&(s=e.defaultProps))for(l in s)a[l]===void 0&&(a[l]=s[l]);return C.vnode&&C.vnode(c),c}function Ol(e,t){t===void 0&&(t={});var i=t.insertAt;if(!(typeof document>"u")){var o=document.head||document.getElementsByTagName("head")[0],n=document.createElement("style");n.type="text/css",i==="top"&&o.firstChild?o.insertBefore(n,o.firstChild):o.appendChild(n),n.styleSheet?n.styleSheet.cssText=e:n.appendChild(document.createTextNode(e))}}var Cl=`: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
@@ -8,4 +8,4 @@ if(typeof Fides<"u"&&Fides.options?.fidesUnsupportedRepeatedScriptLoading!=="ena
8
8
  --fides-overlay-primary-color
9
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-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%}}`;Ol(Cl);const Ln=Ie(void 0),Pl=({children:e})=>{const[t,i]=K(""),o=S(s=>{i(""),setTimeout(()=>{i(s)},0)},[]),n=S(()=>{i("")},[]),r=pe(()=>({message:t,announce:o,clear:n}),[t,o,n]);return j(()=>{const s=()=>{o("Preferences updated")},l=()=>{n()};return window.addEventListener("FidesUIShown",l),window.addEventListener("FidesUpdated",s),()=>{window.removeEventListener("FidesUIShown",l),window.removeEventListener("FidesUpdated",s)}},[o,n]),f(Ln.Provider,{value:r,children:e})},In=()=>{const e=Fe(Ln);if(!e)throw new Error("useLiveRegion must be used within a LiveRegionProvider");return e},xl=3e3,Ke=(e=!1,t=xl)=>{const[i,o]=K(e),n=$e(null),{clear:r}=In(),s=S(()=>{n.current!==null&&(window.clearTimeout(n.current),n.current=null)},[]),l=S(()=>{s(),o(!1),r()},[s,r]),a=S(c=>{s(),o(!0);const u=c??t;n.current=window.setTimeout(()=>{o(!1),r(),n.current=null},u)},[s,t,r]);return j(()=>()=>s(),[s]),{isActive:i,activate:a,deactivate:l}},Nl=({id:e})=>{const[t,i]=K(!1),o=S(()=>i(!1),[]),n=S(()=>i(!0),[]),r=S(()=>{t?o():n()},[t,n,o]);return{isOpen:t,onOpen:n,onClose:o,onToggle:r,getButtonProps:()=>({"aria-expanded":t,"aria-controls":e,onClick:r}),getDisclosureProps:()=>({id:e,className:t?"fides-disclosure-visible":"fides-disclosure-hidden"})}},Al=(e,t)=>{const[i,o]=K(null);return j(()=>{if(t)return()=>{};Bo(e).then(n=>{o(n)})},[e,t]),i},Tl=()=>{const[e,t]=K(!1);return j(()=>{t(!0)},[]),e};var Sl=Object.defineProperty,$n=Object.getOwnPropertySymbols,Ll=Object.prototype.hasOwnProperty,Il=Object.prototype.propertyIsEnumerable,Fn=(e,t,i)=>t in e?Sl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,$l=(e,t)=>{for(var i in t||(t={}))Ll.call(t,i)&&Fn(e,i,t[i]);if($n)for(var i of $n(t))Il.call(t,i)&&Fn(e,i,t[i]);return e},Fl=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const jl=({options:e,privacyExperience:t,privacyExperienceConfigHistoryId:i,privacyNoticeHistoryIds:o,userGeography:n,acknowledgeMode:r,tcfNoticesServed:s})=>{const l=S(a=>Fl(void 0,null,function*(){var c;if(e.fidesDisableSaveApi||e.fidesDisableNoticesServedApi||!a.detail.extraDetails||a.detail.extraDetails.servingComponent===Re.BANNER&&!((c=t?.experience_config)!=null&&c.show_layer1_notices))return;const u=Lo.getServedNoticeHistoryId(),d=$l({served_notice_history_id:u,browser_identity:a.detail.identity,privacy_experience_config_history_id:i||"",user_geography:n,acknowledge_mode:r,privacy_notice_history_ids:o||[],serving_component:String(a.detail.extraDetails.servingComponent),property_id:t.property_id},s);So({request:d,options:e})}),[e,t,i,n,r,o,s]);j(()=>(window.addEventListener("FidesUIShown",l),()=>{window.removeEventListener("FidesUIShown",l)}),[l])},jn=Ie({}),Dl=({i18nInstance:e,children:t})=>{const[i,o]=K(),[n,r]=K(!1),s=S(a=>{e.activate(a),o(a)},[e,o]);j(()=>{const a=document.getElementById(Wr);n?a?.style.setProperty("animation-name","spin"):a?.style.removeProperty("animation-name")},[n]);const l=pe(()=>({i18n:e,currentLocale:i,setCurrentLocale:s,isLoading:n,setIsLoading:r}),[e,i,s,n]);return f(jn.Provider,{value:l,children:t})},ee=()=>{const e=Fe(jn);if(!e||Object.keys(e).length===0)throw new Error("useI18n must be used within a I18nProvider");return e};var Rl=Object.defineProperty,zl=Object.defineProperties,Ml=Object.getOwnPropertyDescriptors,Dn=Object.getOwnPropertySymbols,Ul=Object.prototype.hasOwnProperty,Bl=Object.prototype.propertyIsEnumerable,Rn=(e,t,i)=>t in e?Rl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,pi=(e,t)=>{for(var i in t||(t={}))Ul.call(t,i)&&Rn(e,i,t[i]);if(Dn)for(var i of Dn(t))Bl.call(t,i)&&Rn(e,i,t[i]);return e},Vl=(e,t)=>zl(e,Ml(t));const zn=Ie({}),Gl=({children:e})=>{const t=$e(),i=$e(),o=S(l=>{t.current=l},[]),n=S(l=>{i.current=l},[]),r=S((l,a,c)=>{var u;ce(l,a,Vl(pi({},c),{servingComponent:(u=c?.servingComponent)!=null?u:i.current,trigger:pi(pi({},c?.trigger),t.current)})),o(void 0)},[o]),s=pe(()=>({triggerRef:t,setTrigger:o,servingComponentRef:i,setServingComponent:n,dispatchFidesEventAndClearTrigger:r}),[o,r,n]);return f(zn.Provider,{value:s,children:e})},me=()=>{const e=Fe(zn);if(!e||Object.keys(e).length===0)throw new Error("useEvent must be used within a EventProvider");return e},Mn=Ie({}),Hl=({initializedFides:e,children:t})=>{const[i,o]=K(e),n=pe(()=>({fidesGlobal:i,setFidesGlobal:o}),[i,o]);return f(Mn.Provider,{value:n,children:t})},Un=()=>{const e=Fe(Mn);if(!e||Object.keys(e).length===0)throw new Error("useFidesGlobal must be used within a FidesGlobalProvider");return e},Bn=({onClick:e,ariaLabel:t,hidden:i=!1})=>f("button",{type:"button","aria-label":t,className:"fides-close-button",onClick:e,style:{visibility:i?"hidden":"visible"},children:f("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",children:f("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"})})}),Kl=Ie({}),vi="__VENDOR_COUNT_LINK__",Vn=(e,t)=>t?f("span",{dangerouslySetInnerHTML:{__html:e.trim()}}):Us(e).trim(),Gn=({description:e,onVendorPageClick:t,allowHTMLDescription:i=!1})=>{const[o,n]=K(),{setTrigger:r}=me();let s=0;const l=Fe(Kl);return l?.vendorCount&&(s=l.vendorCount),j(()=>{if(e)if(e.includes(vi)&&t){const a=e.split(vi);for(let u=1;u<a.length;u+=2)a.splice(u,0,f(ue,{children:[" ",f("button",{type:"button",className:"fides-link-button fides-vendor-count",onClick:()=>{t&&(r({type:Q.LINK,label:vi}),t())},children:s})," "]}));const c=a.map(u=>typeof u=="string"?Vn(u,i):u);n(c)}else n([Vn(e,i)])},[e,t]),e?f("div",{children:o}):null};var Yl=Object.defineProperty,Wl=Object.defineProperties,ql=Object.getOwnPropertyDescriptors,Pt=Object.getOwnPropertySymbols,Hn=Object.prototype.hasOwnProperty,Kn=Object.prototype.propertyIsEnumerable,Yn=(e,t,i)=>t in e?Yl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Zl=(e,t)=>{for(var i in t||(t={}))Hn.call(t,i)&&Yn(e,i,t[i]);if(Pt)for(var i of Pt(t))Kn.call(t,i)&&Yn(e,i,t[i]);return e},Xl=(e,t)=>Wl(e,ql(t)),Jl=(e,t)=>{var i={};for(var o in e)Hn.call(e,o)&&t.indexOf(o)<0&&(i[o]=e[o]);if(e!=null&&Pt)for(var o of Pt(e))t.indexOf(o)<0&&Kn.call(e,o)&&(i[o]=e[o]);return i};const Wn=e=>{var t=e,{status:i}=t,o=Jl(t,["status"]);const{i18n:n}=ee(),r=n.t("static.gpc"),s=i.valueOf();let l="";if(i===se.APPLIED)l=n.t("static.gpc.status.applied");else if(i===se.OVERRIDDEN)l=n.t("static.gpc.status.overridden");else if(i===se.NONE)return null;return f("span",Xl(Zl({className:"fides-gpc-label"},o),{children:[r," ",f("span",{className:`fides-gpc-badge fides-gpc-badge-${s}`,children:l})]}))};var Ql=Object.defineProperty,ec=Object.defineProperties,tc=Object.getOwnPropertyDescriptors,qn=Object.getOwnPropertySymbols,ic=Object.prototype.hasOwnProperty,oc=Object.prototype.propertyIsEnumerable,Zn=(e,t,i)=>t in e?Ql(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,_i=(e,t)=>{for(var i in t||(t={}))ic.call(t,i)&&Zn(e,i,t[i]);if(qn)for(var i of qn(t))oc.call(t,i)&&Zn(e,i,t[i]);return e},gi=(e,t)=>ec(e,tc(t));const nc=({attributes:e,dismissable:t,onOpen:i,onClose:o,bannerIsOpen:n,children:r,onVendorPageClick:s,renderButtonGroup:l,className:a,isEmbedded:c})=>{var u,d,_,v,g,p,h,b,m,k,O;const{container:w,dialog:x,title:U,closeButton:P}=e,{i18n:A}=ee(),T=Le().globalPrivacyControl,{setTrigger:L}=me();j(()=>{n&&i()},[n,i]);const I=ke(A,"exp.banner_title")?A.t("exp.banner_title"):A.t("exp.title"),B=ke(A,"exp.banner_description")?A.t("exp.banner_description"):A.t("exp.description"),Y=["fides-banner","fides-banner-bottom",!n&&"fides-banner-hidden",c&&"fides-embedded",a].filter(V=>typeof V=="string").join(" ");let z=[];return(_=(d=(u=window.Fides)==null?void 0:u.experience)==null?void 0:d.experience_config)!=null&&_.show_layer1_notices&&((g=(v=window.Fides)==null?void 0:v.experience)!=null&&g.privacy_notices)&&(z=(h=(p=window.Fides)==null?void 0:p.experience)==null?void 0:h.privacy_notices),f("div",gi(_i({className:Y},w),{id:`${w.id}-container`,children:f("div",{id:w.id,children:f("div",gi(_i({},x),{id:`${w.id}-inner`,children:[f(Bn,{ariaLabel:"Close banner",onClick:()=>{L({type:Q.BUTTON,label:"Close banner"}),P.onClick(),o()},hidden:((m=(b=window.Fides)==null?void 0:b.options)==null?void 0:m.preventDismissal)||!t}),f("div",{id:`${w.id}-inner-container`,children:[f("div",{className:"fides-banner__col",children:[f("div",{id:"fides-banner-heading",children:[f("div",gi(_i({},U),{className:"fides-banner-title",children:I})),T&&f(Wn,{status:se.APPLIED})]}),f("div",{id:`${w.id}-description`,className:"fides-banner-description fides-banner__content",children:[f(Gn,{description:B,onVendorPageClick:s,allowHTMLDescription:(O=(k=window.Fides)==null?void 0:k.options)==null?void 0:O.allowHTMLDescription}),!!z?.length&&f("div",{id:`${w.id}-notices`,className:"fides-banner-notices",children:z.map((V,J)=>f("span",{children:[f("strong",{children:V.name}),J<z.length-1&&", "]},V.id))})]})]}),r]}),l()]}))})}))},rc=e=>{const[t,i]=K(!1);return j(()=>{const o=window.matchMedia(e);i(o.matches);function n(r){i(r.matches)}return o.addEventListener?o.addEventListener("change",n):o.addListener(n),()=>{o.removeEventListener?o.removeEventListener("change",n):o.removeListener(n)}},[e]),t},ac=()=>f("svg",{xmlns:"http://www.w3.org/2000/svg",width:"31",height:"20",fill:"currentColor",className:"ethyca-logo",role:"img","aria-label":"Ethyca",children:f("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"})}),sc=()=>f("div",{className:"fides-brand",children:f("a",{href:"https://ethyca.com/",target:"_blank",rel:"noopener noreferrer",className:"fides-brand-link",children:["Powered by",f(ac,{})]})}),lc=()=>f("svg",{xmlns:"http://www.w3.org/2000/svg",id:"icon",fill:"currentColor",viewBox:"0 0 32 32",children:[f("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"}),f("path",{id:"inner-path",d:"m14 21.591-5-5L10.591 15 14 18.409 21.41 11l1.595 1.585z",fill:"none"}),f("path",{id:"_Transparent_Rectangle_",d:"M0 0h32v32H0z",fill:"none"})]}),cc=()=>f("div",{className:"fides-spinner"}),je=({buttonType:e,label:t,id:i,onClick:o,className:n="",disabled:r,loading:s,complete:l})=>{const{isActive:a,activate:c,deactivate:u}=Ke();return j(()=>{l?c():u()},[c,l,u]),f("button",{type:"button",id:i,className:`fides-banner-button fides-banner-button-${e.valueOf()} ${n}`,onClick:o,disabled:r||s,style:{cursor:r||s?"not-allowed":"pointer"},children:f("span",{style:{display:"flex",alignItems:"center",gap:"0.5em"},children:[t||"",s&&f(cc,{}),!s&&a&&f("span",{"aria-hidden":"true",style:{width:"1em",height:"1em"},children:f(lc,{})})]})})},dc=Ie({});var uc=Object.defineProperty,fc=Object.defineProperties,pc=Object.getOwnPropertyDescriptors,xt=Object.getOwnPropertySymbols,Xn=Object.prototype.hasOwnProperty,Jn=Object.prototype.propertyIsEnumerable,Qn=(e,t,i)=>t in e?uc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,vc=(e,t)=>{for(var i in t||(t={}))Xn.call(t,i)&&Qn(e,i,t[i]);if(xt)for(var i of xt(t))Jn.call(t,i)&&Qn(e,i,t[i]);return e},_c=(e,t)=>fc(e,pc(t)),gc=(e,t)=>{var i={};for(var o in e)Xn.call(e,o)&&t.indexOf(o)<0&&(i[o]=e[o]);if(e!=null&&xt)for(var o of xt(e))t.indexOf(o)<0&&Jn.call(e,o)&&(i[o]=e[o]);return i};const hc=e=>{var t=e,{isActive:i,className:o,children:n}=t,r=gc(t,["isActive","className","children"]);return f("button",_c(vc({type:"button",role:"menuitemradio","aria-checked":i},r),{className:`fides-banner-button fides-menu-item ${o||""}`,children:n}))};var bc=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const yc=({availableLocales:e,options:t,isTCF:i})=>{const[o,n]=K(!1),{i18n:r,currentLocale:s,setCurrentLocale:l,setIsLoading:a}=ee(),c=Fe(dc),u=$e(null),d=$e(null),_=()=>{n(!o)},v=p=>bc(void 0,null,function*(){var h;if(p!==r.locale)if(i){a(!0);const b=yield xo(t.fidesApiUrl,[p]);a(!1),b&&Object.keys(b).length?(c.setGvlTranslations(b[p]),go(r,b,e||[X]),l(p)):console.error(`Unable to load GVL translation for ${p}`)}else l(p);n(!1),(h=u.current)==null||h.focus()}),g=S(p=>{var h,b,m;if(!o)return;const k=((h=d.current)==null?void 0:h.querySelectorAll(".fides-menu-item"))||[],{key:O}=p;if(O==="Escape"||O==="Tab"){n(!1),(b=u.current)==null||b.focus();return}if(O==="ArrowUp"||O==="ArrowDown"){p.preventDefault();const w=Array.from(k).findIndex(U=>U===document.activeElement);let x=w;O==="ArrowDown"?x=w===k.length-1?0:w+1:O==="ArrowUp"&&(x=w===0?k.length-1:w-1),(m=k[x])==null||m.focus()}},[o]);return j(()=>(document.addEventListener("keydown",g),()=>{document.removeEventListener("keydown",g)}),[g]),j(()=>{var p,h;if(o){const b=(p=d.current)==null?void 0:p.querySelectorAll(".fides-menu-item");(h=b?.[0])==null||h.focus()}},[o]),j(()=>{const p=h=>{o&&d.current&&!d.current.contains(h.target)&&u.current&&!u.current.contains(h.target)&&n(!1)};return document.addEventListener("mousedown",p),()=>{document.removeEventListener("mousedown",p)}},[o]),f("div",{className:`fides-i18n-menu ${o?"fides-i18n-menu-open":""}`,ref:d,children:[f("div",{role:"menu",className:"fides-i18n-popover",id:"fides-i18n-popover",children:r.availableLanguages.map(p=>f(hc,{id:s===p.locale?"fidesActiveMenuItem":void 0,onClick:()=>v(p.locale),isActive:s===p.locale,title:p.label_en,"aria-label":p.label_en,tabIndex:-1,children:p.label_original},p.locale))}),f("button",{type:"button",className:"fides-i18n-button",onClick:_,ref:u,"aria-haspopup":"true","aria-expanded":o,"aria-controls":"fides-i18n-popover","aria-label":`Select language, current language is ${s}`,children:[f("svg",{xmlns:"http://www.w3.org/2000/svg",height:"100%",viewBox:"0 0 36 36",fill:"currentColor",id:"fides-i18n-icon",children:f("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"})}),s,f("svg",{className:"fides-i18n-caret",xmlns:"http://www.w3.org/2000/svg",height:"100%",fill:"currentColor",viewBox:"0 0 24 24",children:f("path",{d:"M12 13.172L16.95 8.22198L18.364 9.63598L12 16L5.63599 9.63598L7.04999 8.22198L12 13.172Z"})})]})]})},mc=()=>{const{i18n:e}=ee();if(!ke(e,"exp.privacy_policy_link_label")||!ke(e,"exp.privacy_policy_url"))return null;const t=e.t("exp.privacy_policy_link_label"),i=e.t("exp.privacy_policy_url");return f("div",{id:"fides-privacy-policy-link",style:{display:"flex",alignItems:"center",justifyContent:"center"},children:f("a",{href:i,rel:"noopener noreferrer",target:"_blank",className:"fides-privacy-policy",children:t})})},wc=({availableLocales:e=[X],onManagePreferencesClick:t,renderFirstButton:i,onAcceptAll:o,onRejectAll:n,hideOptInOut:r,hideRejectAll:s,options:l,isInModal:a,isTCF:c,isGVLLoading:u})=>{var d;const{i18n:_}=ee(),{setTrigger:v}=me(),g=rc("(max-width: 768px)"),{isActive:p,activate:h}=Ke(!1),{isActive:b,activate:m}=Ke(!1),k=((d=_.availableLanguages)==null?void 0:d.length)>1,O=ke(_,"exp.privacy_policy_link_label")&&ke(_,"exp.privacy_policy_url"),w=a&&l.showFidesBrandLink;return f("div",{id:"fides-button-group",children:[f("div",{className:a?"fides-modal-button-group fides-modal-primary-actions":"fides-banner-button-group fides-banner-primary-actions",children:[!!i&&i(),!r&&f(ue,{children:[c&&!!t&&f(je,{buttonType:oe.SECONDARY,label:_.t("exp.privacy_preferences_link_label"),onClick:()=>{v({type:Q.BUTTON,label:_.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),!s&&f(je,{buttonType:oe.PRIMARY,label:_.t("exp.reject_button_label"),onClick:()=>{v({type:Q.BUTTON,label:_.t("exp.reject_button_label")}),n(),m()},className:"fides-reject-all-button",id:"fides-reject-all-button",loading:u,complete:b}),f(je,{buttonType:oe.PRIMARY,label:_.t("exp.accept_button_label"),onClick:()=>{v({type:Q.BUTTON,label:_.t("exp.accept_button_label")}),o(),h()},className:"fides-accept-all-button",id:"fides-accept-all-button",loading:u,complete:p})]})]}),f("div",{className:`${a?"fides-modal-button-group fides-modal-secondary-actions":"fides-banner-button-group fides-banner-secondary-actions"}${k?" fides-button-group-i18n":""}${O?" fides-button-group-privacy-policy":""}${w?" fides-button-group-brand":""}`,children:[k&&f(yc,{availableLocales:e,options:l,isTCF:!!c}),!c&&!!t&&f(je,{buttonType:g?oe.SECONDARY:oe.TERTIARY,label:_.t("exp.privacy_preferences_link_label"),onClick:()=>{v({type:Q.BUTTON,label:_.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),O&&f(mc,{}),w&&f(sc,{})]})]})},er=({experience:e,onAcceptAll:t,onRejectAll:i,onSave:o,onManagePreferencesClick:n,enabledKeys:r,isInModal:s,isAcknowledge:l,hideOptInOut:a=!1,options:c})=>{const{isActive:u,activate:d}=Ke(!1),{isActive:_,activate:v}=Ke(!1),{i18n:g}=ee(),{setTrigger:p}=me();if(!e.experience_config||!e.privacy_notices)return null;const h=()=>{o($.ACKNOWLEDGE,r)},b=()=>{o($.SAVE,r)},m=()=>l?f(je,{buttonType:oe.PRIMARY,label:g.t("exp.acknowledge_button_label"),onClick:()=>{p({type:Q.BUTTON,label:g.t("exp.acknowledge_button_label")}),h(),d()},className:"fides-acknowledge-button",complete:u}):s?f(je,{buttonType:a?oe.PRIMARY:oe.SECONDARY,label:g.t("exp.save_button_label"),onClick:()=>{p({type:Q.BUTTON,label:g.t("exp.save_button_label")}),b(),v()},className:"fides-save-button",id:"fides-save-button",complete:_}):null;return f(wc,{availableLocales:e.available_locales,onManagePreferencesClick:n,onAcceptAll:t,onRejectAll:i,isInModal:s,renderFirstButton:m,hideOptInOut:a,options:c})};var kc=['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^="-"])'],Ec="Tab",Oc="Escape";function te(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()}te.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=Ye('[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=Ye("[data-a11y-dialog-hide]",this.$el).filter(function(t){return t.closest('[aria-modal="true"], [data-a11y-dialog]')===e}).concat(Ye('[data-a11y-dialog-hide="'+this._id+'"]')),this._closers.forEach(function(t){t.addEventListener("click",this._hide)}.bind(this)),this._fire("create"),this},te.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,tr(this.$el),document.body.addEventListener("focus",this._maintainFocus,!0),document.addEventListener("keydown",this._bindKeypress),this._fire("show",e),this},te.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},te.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},te.prototype.on=function(e,t){return typeof this._listeners[e]>"u"&&(this._listeners[e]=[]),this._listeners[e].push(t),this},te.prototype.off=function(e,t){var i=(this._listeners[e]||[]).indexOf(t);return i>-1&&this._listeners[e].splice(i,1),this},te.prototype._fire=function(e,t){var i=this._listeners[e]||[],o=new CustomEvent(e,{detail:t});this.$el.dispatchEvent(o),i.forEach(function(n){n(this.$el,t)}.bind(this))},te.prototype._bindKeypress=function(e){const t=document.activeElement;t&&t.closest('[aria-modal="true"]')!==this.$el||(this.shown&&e.key===Oc&&this.$el.getAttribute("role")!=="alertdialog"&&(e.preventDefault(),this.hide(e)),this.shown&&e.key===Ec&&xc(this.$el,e))},te.prototype._maintainFocus=function(e){this.shown&&!e.target.closest('[aria-modal="true"]')&&!e.target.closest("[data-a11y-dialog-ignore-focus-trap]")&&tr(this.$el)};function Cc(e){return Array.prototype.slice.call(e)}function Ye(e,t){return Cc((t||document).querySelectorAll(e))}function tr(e){var t=e.querySelector("[autofocus]")||e;t.focus()}function Pc(e){return Ye(kc.join(","),e).filter(function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)})}function xc(e,t){var i=Pc(e),o=i.indexOf(document.activeElement);t.shiftKey&&o===0?(i[i.length-1].focus(),t.preventDefault()):!t.shiftKey&&o===i.length-1&&(i[0].focus(),t.preventDefault())}function hi(){Ye("[data-a11y-dialog]").forEach(function(e){new te(e)})}typeof document<"u"&&(document.readyState==="loading"?document.addEventListener("DOMContentLoaded",hi):window.requestAnimationFrame?window.requestAnimationFrame(hi):window.setTimeout(hi,16));const Nc=()=>{const[e,t]=K(null),i=S(o=>{if(o!==null){const n=new te(o);t(n)}},[]);return{instance:e,container:i}},ir=({id:e,onClose:t,ariaHidden:i=!0})=>{const{instance:o,container:n}=Nc(),r=`${e}-title`,s=S(()=>{o&&o.hide(),t&&t()},[t,o]);return j(()=>()=>{o&&o.destroy()},[o]),{instance:o,attributes:{container:{id:e,ref:n,role:"alertdialog","aria-hidden":i,"aria-labelledby":r},dialog:{role:"document"},closeButton:{type:"button",onClick:s},title:{role:"heading","aria-level":2,id:r}}}},Ac=()=>f("svg",{xmlns:"http://www.w3.org/2000/svg",width:"18",height:"18",fill:"currentColor",children:f("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"})}),Tc=({title:e,description:t})=>f("div",{className:"fides-gpc-banner",children:[f("div",{className:"fides-gpc-warning",children:f(Ac,{})}),f("div",{children:[f("p",{className:"fides-gpc-header",children:e}),f("p",{children:t})]})]});var Sc=Object.defineProperty,Lc=Object.defineProperties,Ic=Object.getOwnPropertyDescriptors,or=Object.getOwnPropertySymbols,$c=Object.prototype.hasOwnProperty,Fc=Object.prototype.propertyIsEnumerable,nr=(e,t,i)=>t in e?Sc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,jc=(e,t)=>{for(var i in t||(t={}))$c.call(t,i)&&nr(e,i,t[i]);if(or)for(var i of or(t))Fc.call(t,i)&&nr(e,i,t[i]);return e},Dc=(e,t)=>Lc(e,Ic(t));const rr=({titleProps:e,className:t,renderModalFooter:i,children:o,onVendorPageClick:n,headerContent:r,isVendorAssetDisclosureView:s})=>{var l,a;const{title:c,description:u}=r,{i18n:d}=ee(),_=Le().globalPrivacyControl,v=d.t("static.gpc.title"),g=d.t("static.gpc.description");return f(ue,{children:[f("div",{id:"fides-consent-content",className:t,children:f("div",{className:"fides-modal-body",children:[f("div",Dc(jc({},e),{className:"fides-modal-title",children:c})),f("p",{className:"fides-modal-description",children:f(Gn,{onVendorPageClick:n,description:u,allowHTMLDescription:(a=(l=window.Fides)==null?void 0:l.options)==null?void 0:a.allowHTMLDescription})}),!s&&_&&f(Tc,{title:v,description:g}),o]})}),f("div",{className:"fides-modal-footer",children:i()})]})};var Rc=Object.defineProperty,zc=Object.defineProperties,Mc=Object.getOwnPropertyDescriptors,ar=Object.getOwnPropertySymbols,Uc=Object.prototype.hasOwnProperty,Bc=Object.prototype.propertyIsEnumerable,sr=(e,t,i)=>t in e?Rc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,lr=(e,t)=>{for(var i in t||(t={}))Uc.call(t,i)&&sr(e,i,t[i]);if(ar)for(var i of ar(t))Bc.call(t,i)&&sr(e,i,t[i]);return e},cr=(e,t)=>zc(e,Mc(t));const Vc=({attributes:e,children:t,dismissable:i,onVendorPageClick:o,renderModalFooter:n,headerContent:r,isVendorAssetDisclosureView:s})=>{const{container:l,dialog:a,title:c,closeButton:u}=e,{setTrigger:d}=me(),{fidesGlobal:_}=Un();return f("div",cr(lr({},l),{className:"fides-modal-container",children:[f("div",{className:"fides-modal-overlay"}),f("div",cr(lr({},a),{className:"fides-modal-content",children:[f("div",{className:"fides-modal-header",children:[f("div",{}),f(Bn,{ariaLabel:"Close modal",onClick:()=>{d({type:"button",label:"Close modal"}),u.onClick()},hidden:_?.options.preventDismissal||!i})]}),f(rr,{titleProps:c,renderModalFooter:n,onVendorPageClick:o,headerContent:r,isVendorAssetDisclosureView:s,children:t})]}))]}))},Gc=()=>{const{message:e}=In();return f("div",{role:"status","aria-live":"polite","aria-relevant":"additions",className:"fides-sr-only",id:"fides-overlay-live-region",children:e})},Hc=({options:e,experience:t,cookie:i,savedConsent:o,onOpen:n,onDismiss:r,renderBanner:s,renderModalContent:l,renderModalFooter:a,onVendorPageClick:c,isUiBlocking:u,headerContent:d,isVendorAssetDisclosureView:_,onModalHide:v})=>{const{setServingComponent:g,dispatchFidesEventAndClearTrigger:p}=me(),h=100,b=Tl(),m=e.modalLinkId||"fides-modal-link",k=!t||!!e.fidesEmbed||e.modalLinkId==="",O=Al(m,k),w=$e(null),[x,U]=K(null),{i18n:P}=ee(),A=P.t("exp.title"),T=P.t("exp.description"),L=d??{title:A,description:T};j(()=>{x===null&&U(!lt(t,i,o,e))},[x]);const[I,B]=K(e.fidesEmbed?lt(t,i,o,e):!1);j(()=>(u&&I?Ms():Uo(),()=>{Uo()}),[u,I]);const Y=S(({saved:ie=!1})=>{ie||r(),p("FidesModalClosed",i,{saved:ie}),g(void 0)},[p,i,r,g]),{instance:z,attributes:V}=ir({id:"fides-modal",onClose:()=>{Y({saved:!1}),v&&v()}});j(()=>{z&&z.on("show",()=>{document.documentElement.style.overflowY="hidden"}).on("hide",()=>{document.documentElement.style.overflowY=""})},[z]);const{attributes:J}=ir({id:"fides-banner",ariaHidden:!I&&!e.fidesEmbed,onClose:()=>{B(!1)}}),ve=S((ie=we.FIDES)=>{e.fidesEmbed?B(!1):z&&(B(!1),z.show(),n(ie))},[z,n,e]),De=S(()=>{z&&!e.fidesEmbed&&(z.hide(),Y({saved:!0}),v&&v())},[z,Y,e.fidesEmbed,v]);j(()=>{e.fidesEmbed&&!I&&n()},[e,n,I]),j(()=>{const ie=setTimeout(()=>{x||B(!0)},h);return()=>clearTimeout(ie)},[x,B]),j(()=>(t&&!e.fidesEmbed&&window.Fides&&(window.Fides.showModal=()=>{ve(we.EXTERNAL)}),()=>{window.Fides&&(window.Fides.showModal=Bt)}),[t,ve,e.fidesEmbed]),j(()=>{e.fidesModalDisplay==="immediate"&&ve()},[e.fidesModalDisplay,ve]),j(()=>{var ie;return document.body.classList.add("fides-overlay-modal-link-shown"),k||O&&(w.current=O,w.current.addEventListener("click",(ie=window.Fides)==null?void 0:ie.showModal),w.current.classList.add("fides-modal-link-shown")),()=>{var We;w.current&&w.current.removeEventListener("click",(We=window.Fides)==null?void 0:We.showModal)}},[O,k,m]);const yi=()=>{ve()};return!b||!t.experience_config?null:f("div",{id:Yr,tabIndex:-1,children:[!x&&I&&u&&f("div",{className:"fides-modal-overlay"}),e.fidesEmbed?I||!l||!a?null:f(rr,{titleProps:V.title,renderModalFooter:()=>a({onClose:De,isMobile:!1}),onVendorPageClick:c,headerContent:L,isVendorAssetDisclosureView:_,children:l()}):f(Vc,{attributes:V,dismissable:t.experience_config.dismissable,onVendorPageClick:c,headerContent:L,isVendorAssetDisclosureView:_,renderModalFooter:()=>a?a({onClose:De,isMobile:!1}):null,children:l&&l()}),!x&&s({attributes:J,isOpen:I,isEmbedded:e.fidesEmbed,onClose:()=>{B(!1)},onManagePreferencesClick:yi}),f(Gc,{})]})},Kc=({label:e,name:t,id:i,checked:o,onChange:n,disabled:r,onLabel:s,offLabel:l})=>{const{setTrigger:a}=me(),c=o?s:l;return f("div",{className:"fides-toggle",children:[f("input",{type:"checkbox",name:t,"aria-label":e,className:"fides-toggle-input",onChange:()=>{a({type:Q.TOGGLE,label:e,checked:!o}),n(i)},checked:o,role:"switch",disabled:r}),f("span",{className:"fides-toggle-display",children:c})]})};var Yc=Object.defineProperty,Wc=Object.defineProperties,qc=Object.getOwnPropertyDescriptors,dr=Object.getOwnPropertySymbols,Zc=Object.prototype.hasOwnProperty,Xc=Object.prototype.propertyIsEnumerable,ur=(e,t,i)=>t in e?Yc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,fr=(e,t)=>{for(var i in t||(t={}))Zc.call(t,i)&&ur(e,i,t[i]);if(dr)for(var i of dr(t))Xc.call(t,i)&&ur(e,i,t[i]);return e},pr=(e,t)=>Wc(e,qc(t));const vr=({noticeKey:e,title:t,checked:i,onToggle:o,children:n,badge:r,gpcBadge:s,disabled:l,onLabel:a,offLabel:c,isHeader:u,includeToggle:d=!0})=>{const{isOpen:_,getButtonProps:v,getDisclosureProps:g,onToggle:p}=Nl({id:e}),h=(k,O)=>{(k.code==="Space"||k.code==="Enter")&&(k.preventDefault(),O&&p())},b=n!=null,m=b?v():{};return f("div",{className:_&&b?"fides-notice-toggle fides-notice-toggle-expanded":"fides-notice-toggle",children:[f("div",{className:"fides-notice-toggle-title",children:[f("span",pr(fr({role:"button",tabIndex:0,onKeyDown:k=>h(k,b)},m),{className:u?"fides-notice-toggle-trigger fides-notice-toggle-header":"fides-notice-toggle-trigger",children:f("span",{className:"fides-flex-center fides-justify-space-between",children:t})})),f("span",{className:"fides-notice-toggle-controls",children:d?f(Kc,{label:t,name:e,id:e,checked:i,onChange:o,disabled:l,onLabel:a,offLabel:c}):null}),f("div",{className:"fides-badge-container",children:[s,r?f("span",{className:"fides-notice-badge",children:r}):null]})]},e),n?f("div",pr(fr({},g()),{children:n})):null]})},Jc=()=>f("hr",{className:"fides-divider"}),Qc=({noticeToggles:e,enabledNoticeKeys:t,onChange:i,renderDescription:o})=>{const{i18n:n}=ee(),r=a=>{const c={key:a,type:"notice"};t.indexOf(a)===-1?i([...t,a],c):i(t.filter(u=>u!==a),c)};let s,l;return ho(n)===X&&(s="On",l="Off"),f("div",{children:e.map((a,c)=>{const{noticeKey:u,title:d,description:_,checked:v,disabled:g,gpcStatus:p}=a,h=c===e.length-1;return f("div",{children:[f(vr,{noticeKey:u,title:d,checked:v,onToggle:r,gpcBadge:f(Wn,{status:p}),disabled:g,onLabel:s,offLabel:l,children:o?o(a):_}),h?null:f(Jc,{})]},u)})})},ed=({cookiesByNotice:e,onBack:t})=>{const{i18n:i}=ee();return f("div",{children:[f("button",{type:"button",className:"fides-link-button",onClick:t,"aria-label":"back",children:f("span",{className:"fides-flex-center fides-back-link",style:{marginBottom:"12px"},children:i.t("static.other.back")})}),e.length>=1?f("div",{style:{marginTop:"8px",marginBottom:"8px"},children:f("strong",{children:i.t("static.other.vendors")})}):null,f("div",{className:"fides-modal-notices",style:{marginTop:"12px"},children:(()=>{const o=new Map;return e.forEach(r=>{(r.cookies||[]).forEach(s=>{const l=s.system_name||"Other",a=o.get(l)||[];a.push(s),o.set(l,a)})}),Array.from(o.entries()).map(([r,s])=>{const l=s.some(a=>a.duration!=null&&a.duration!=="");return f("div",{children:f(vr,{noticeKey:`vendor-${r}`,title:r,checked:!1,onToggle:()=>{},includeToggle:!1,children:f("table",{className:"fides-vendor-details-table",children:[f("thead",{children:f("tr",{children:[f("th",{width:l?"80%":void 0,children:i.t("static.other.cookies")}),l?f("th",{width:"20%",style:{textAlign:"right"},children:i.t("static.other.retention")}):null]})}),f("tbody",{children:s.map(a=>f("tr",{children:[f("td",{style:{paddingBottom:"2px",paddingTop:"2px"},children:[f("div",{children:a.name}),a.description?f("div",{children:[i.t("static.other.description"),":"," ",a.description]}):null]}),l?f("td",{style:{textAlign:"right"},children:a.duration?a.duration:"-"}):null]},`${r}-${a.name}`))})]})})},`vendor-${r}`)})})()})]})};var td=Object.defineProperty,id=Object.defineProperties,od=Object.getOwnPropertyDescriptors,_r=Object.getOwnPropertySymbols,nd=Object.prototype.hasOwnProperty,rd=Object.prototype.propertyIsEnumerable,gr=(e,t,i)=>t in e?td(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,ad=(e,t)=>{for(var i in t||(t={}))nd.call(t,i)&&gr(e,i,t[i]);if(_r)for(var i of _r(t))rd.call(t,i)&&gr(e,i,t[i]);return e},sd=(e,t)=>id(e,od(t));const ld=()=>{var e,t,i;const{fidesGlobal:o,setFidesGlobal:n}=Un(),{fidesRegionString:r,cookie:s,options:l,saved_consent:a}=o,c=o.experience,{i18n:u,currentLocale:d,setCurrentLocale:_}=ee(),{triggerRef:v,setTrigger:g,servingComponentRef:p,setServingComponent:h,dispatchFidesEventAndClearTrigger:b}=me(),m=Ae(),k=S(E=>c.privacy_notices?c.privacy_notices.map(N=>Si(N,E)?N.notice_key:""):[],[c.privacy_notices]);j(()=>{!d&&u.locale&&_(u.locale)},[d,u.locale,_]);const O=pe(()=>{if(c.experience_config){const E=ft(d,u.getDefaultLocale(),c.experience_config);return E?.privacy_experience_config_history_id}},[c,d]),w=pe(()=>{var E;const D=((E=c.privacy_notices)!=null?E:[]).map(W=>{var qe,Nt;const mi=W.consent_mechanism===q.NOTICE_ONLY||((Nt=(qe=l.fidesDisabledNotices)==null?void 0:qe.includes(W.notice_key))!=null?Nt:!1)||W.disabled,Ed=Yt(d,u.getDefaultLocale(),W);return{notice:sd(ad({},W),{disabled:mi}),bestTranslation:Ed}}),R=D.filter(W=>W.notice.consent_mechanism===q.NOTICE_ONLY),_e=D.filter(W=>W.notice.consent_mechanism!==q.NOTICE_ONLY);return[...R,..._e]},[c.privacy_notices,d,l.fidesDisabledNotices]),[x,U]=K(k(s?.consent));ll(()=>{const E=N=>{const D=N,{consent:R}=D.detail;Object.entries(R).forEach(([_e,W])=>{R[_e]=Me(W)}),U(k(R)),window.removeEventListener("FidesUpdating",E)};return window.addEventListener("FidesUpdating",E),()=>{window.removeEventListener("FidesUpdating",E)}},[]);const P=w.every(E=>E.notice.consent_mechanism===q.NOTICE_ONLY),A=w.map(E=>{var N,D;const R=x.indexOf(E.notice.notice_key)!==-1,_e=Le(),W=eo({value:R,notice:E.notice,consentContext:_e});return{noticeKey:E.notice.notice_key,title:((N=E.bestTranslation)==null?void 0:N.title)||E.notice.name||"",description:(D=E.bestTranslation)==null?void 0:D.description,cookies:E.notice.cookies,checked:R,consentMechanism:E.notice.consent_mechanism,disabled:E.notice.disabled,gpcStatus:W}}),[T,L]=K(!1),[I,B]=K(null),Y=pe(()=>I?w.find(E=>E.notice.notice_key===I):null,[I,w]),z=w.map(E=>{var N;return{noticeKey:E.notice.notice_key,title:((N=E.bestTranslation)==null?void 0:N.title)||E.notice.name||"",cookies:E.notice.cookies||[]}}).filter(E=>E.cookies&&E.cookies.length>0),V=I?z.filter(E=>E.noticeKey===I):z;jl({privacyExperienceConfigHistoryId:O,privacyNoticeHistoryIds:w.reduce((E,N)=>{var D;const R=(D=N.bestTranslation)==null?void 0:D.privacy_notice_history_id;return R&&E.push(R),E},[]),options:l,userGeography:r,acknowledgeMode:P,privacyExperience:c});const J=S((E,N)=>{const D={};w.forEach(R=>{R.notice.consent_mechanism!==q.NOTICE_ONLY?D[R.notice.notice_key]=N.includes(R.notice.notice_key):D[R.notice.notice_key]=!0}),Xt(o,{noticeConsent:D,consentMethod:E,eventExtraDetails:{servingComponent:p.current,trigger:v.current}}).finally(()=>{window.Fides&&n(window.Fides),g(void 0)}),U(N)},[w,o,p,v,g,n]),ve=S(E=>{J(E?$.SCRIPT:$.ACCEPT,w.filter(N=>!N.notice.disabled||x.includes(N.notice.notice_key)).map(N=>N.notice.notice_key))},[x,J,w]),De=S(E=>{J(E?$.SCRIPT:$.REJECT,w.filter(N=>N.notice.consent_mechanism===q.NOTICE_ONLY||N.notice.disabled&&x.includes(N.notice.notice_key)).map(N=>N.notice.notice_key))},[x,J,w]);j(()=>{st(l)&&c.privacy_notices&&(l.fidesConsentOverride===$.ACCEPT?ve(!0):l.fidesConsentOverride===$.REJECT&&De(!0))},[c.privacy_notices,l.fidesConsentOverride]);const yi=S(()=>{h(Re.BANNER),b("FidesUIShown",s)},[s,b,h]),ie=S(E=>{h(Re.MODAL),b("FidesUIShown",s,{trigger:{origin:E}})},[s,b,h]),We=S(()=>{Rt(m?.consent)||J($.DISMISS,k(s?.consent))},[J,k,m?.consent,s?.consent]),wd=S((E,N)=>{const D={servingComponent:p.current,trigger:v.current,preference:N};U(E),b("FidesUIChanged",s,D)},[v,b,s,p]);if(!c.experience_config)return null;const yr=!!((e=c.experience_config)!=null&&e.dismissable),kd=w.length===1;return f(Hc,{options:l,experience:c,cookie:s,savedConsent:a,isUiBlocking:!yr,isVendorAssetDisclosureView:T,onModalHide:()=>{L(!1),B(null)},headerContent:T&&Y?{title:((t=Y.bestTranslation)==null?void 0:t.title)||Y.notice.name||"",description:((i=Y.bestTranslation)==null?void 0:i.description)||""}:void 0,onOpen:ie,onDismiss:We,renderBanner:({attributes:E,isEmbedded:N,isOpen:D,onClose:R,onManagePreferencesClick:_e})=>{var W;const qe=P||((W=c.experience_config)==null?void 0:W.layer1_button_options)===Lt.ACKNOWLEDGE;return f(nc,{attributes:E,bannerIsOpen:D,dismissable:yr,onOpen:yi,onClose:()=>{R(),We()},isEmbedded:N,renderButtonGroup:()=>f(er,{experience:c,onManagePreferencesClick:_e,enabledKeys:x,onAcceptAll:()=>{ve(),R()},onRejectAll:()=>{De(),R()},onSave:(Nt,mi)=>{J(Nt,mi),R()},isAcknowledge:qe,hideOptInOut:qe,options:l})})},renderModalContent:()=>f("div",{children:T?f(ed,{cookiesByNotice:V,onBack:()=>{L(!1),B(null)}}):f("div",{className:"fides-modal-notices",children:f(Qc,{noticeToggles:A,enabledNoticeKeys:x,onChange:wd,renderDescription:E=>{var N,D,R;const _e=(E.cookies||[]).length>0;return f("div",{children:[E.description,_e&&((D=(N=c.experience_config)==null?void 0:N.asset_disclosure_include_types)!=null&&D.includes(St.COOKIE))&&((R=c.experience_config)!=null&&R.allow_vendor_asset_disclosure)?f("div",{style:{marginTop:"12px"},children:f("button",{type:"button",className:"fides-link-button fides-vendors-disclosure-link",onClick:()=>{B(E.noticeKey),L(!0)},children:u.t("static.other.vendors")})}):null]})}})})}),renderModalFooter:({onClose:E})=>f(er,{experience:c,enabledKeys:x,onAcceptAll:()=>{ve(),E()},onRejectAll:()=>{De(),E()},onSave:(N,D)=>{J(N,D),E()},isInModal:!0,isAcknowledge:P,hideOptInOut:kd||P,options:l})})},cd=(e,t)=>{const{i18n:i,initializedFides:o}=e;an(f(Dl,{i18nInstance:i,children:f(Hl,{initializedFides:o,children:f(Gl,{children:f(Pl,{children:f(ld,{})})})})}),t)};var dd=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});function ud(e){return dd(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 fd=Object.defineProperty,pd=Object.defineProperties,vd=Object.getOwnPropertyDescriptors,hr=Object.getOwnPropertySymbols,_d=Object.prototype.hasOwnProperty,gd=Object.prototype.propertyIsEnumerable,br=(e,t,i)=>t in e?fd(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,ae=(e,t)=>{for(var i in t||(t={}))_d.call(t,i)&&br(e,i,t[i]);if(hr)for(var i of hr(t))gd.call(t,i)&&br(e,i,t[i]);return e},bi=(e,t)=>pd(e,vd(t)),hd=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});function bd(e){return hd(this,null,function*(){var t,i,o,n;let r=(t=e??this.config)!=null?t:Jt("Fides must be initialized with a configuration object");Vr(!!((i=r.options)!=null&&i.debug)),this.config=r,ce("FidesInitializing",void 0,{gppEnabled:this.config.options.gppEnabled||((n=(o=this.config.experience)==null?void 0:o.gpp_settings)==null?void 0:n.enabled),tcfEnabled:this.config.options.tcfEnabled});const s=Ko(xe.OPTIONS,r),l=Ko(xe.EXPERIENCE_TRANSLATION,r),a=yield ud(r);!s.fidesString&&a?.fides_string&&(s.fidesString=a.fides_string);const c={optionsOverrides:s,consentPrefsOverrides:a,experienceTranslationOverrides:l};Br(s);let u;if(!Ae()){const{consent:p,method:h}=Yi(s);p&&h&&(u=p)}r=bi(ae({},r),{options:ae(ae({},r.options),c.optionsOverrides)}),this.config=r,this.cookie=qs(r),this.cookie.consent=ae(ae({},this.cookie.consent),u),this.saved_consent=ae({},this.cookie.consent);const{fidesString:d}=r.options;if(d)try{const{nc:p}=Gt(d);this.decodeNoticeConsentString(p);const h={fides_string:d};this.cookie=ae(ae({},this.cookie),h)}catch{}if(this.experience=r.experience,!ji(this.cookie)||!!u){const p=Zs(bi(ae({},r),{cookie:this.cookie,savedConsent:this.saved_consent,updateExperienceFromCookieConsent:zt}));Object.assign(this,p),_t(this),this.experience=p.experience,ro(this.cookie,{shouldShowExperience:this.shouldShowExperience()})}const g=yield Xs({fides:this,initOverlay:cn,renderOverlay:cd,updateExperience:jo,overrides:c});Object.assign(this,g),_t(this),ao(this.cookie,{shouldShowExperience:this.shouldShowExperience()})})}const yd=Do({}),md=bi(ae({},yd),{init:bd});_t(md),y.AssetType=St,y.BannerEnabled=Ei,y.ButtonType=oe,y.CONSENT_COOKIE_MAX_AGE_DAYS=$i,y.CONSENT_COOKIE_NAME=Dt,y.ComponentType=G,y.ConsentFlagType=ge,y.ConsentMechanism=q,y.ConsentMethod=$,y.ConsentNonApplicableFlagMode=Pe,y.DEFAULT_LOCALE=X,y.DEFAULT_MODAL_LINK_LABEL=ot,y.EnforcementLevel=ki,y.FidesEndpointPaths=Oo,y.FidesEventOrigin=we,y.FidesEventTargetType=Q,y.FidesModalDefaultView=Oi,y.GpcStatus=se,y.LOCALE_REGEX=nt,y.Layer1ButtonOption=Lt,y.OverrideType=xe,y.PrivacyNoticeFramework=wi,y.REQUEST_SOURCE=Ao,y.RejectAllMechanism=Ci,y.RequestOrigin=Pi,y.SaveConsentPreference=Tt,y.ServingComponent=Re,y.UpdateConsentValidation=he,y.UserConsentPreference=Z,y.allNoticesAreDefaultOptIn=ta,y.applyOverridesToConsent=Ue,y.areLocalesEqual=re,y.buildCookieConsentFromConsentPreferences=Bi,y.consentCookieObjHasSomeConsentSet=Rt,y.constructFidesRegionString=at,y.createConsentPreferencesToSave=oa,y.createConsentProxy=Vt,y.createEmptyExperience=Co,y.decodeNoticeConsentString=ct,y.defaultShowModal=Bt,y.detectUserLocale=bo,y.dispatchConsentLoadedEvents=ro,y.dispatchFidesEvent=ce,y.dispatchReadyEvents=ao,y.encodeNoticeConsentString=to,y.experienceIsValid=Ji,y.extractDefaultLocaleFromExperience=Kt,y.fetchExperience=Po,y.fetchGvlTranslations=xo,y.getConsentContext=Le,y.getCookieByName=it,y.getCoreFides=Do,y.getCurrentLocale=ho,y.getFidesConsentCookie=Ae,y.getGeolocation=Ro,y.getGpcStatusFromNotice=eo,y.getOrMakeFidesCookie=Ri,y.getOverrideValidatorMapByType=Xi,y.getTcfDefaultPreference=ia,y.getWindowObjFromPath=Qi,y.i18n=ps,y.initOverlay=cn,y.initializeI18n=mo,y.isConsentOverride=st,y.isNewFidesCookie=ji,y.isPrivacyExperience=Te,y.isValidAcString=aa,y.loadGVLMessagesFromExperience=_o,y.loadMessagesFromExperience=vo,y.loadMessagesFromFiles=po,y.loadMessagesFromGVLTranslations=go,y.localizeModalLinkText=wo,y.makeConsentDefaultsLegacy=Mi,y.makeFidesCookie=Di,y.matchAvailableLocales=yo,y.messageExists=ke,y.noticeHasConsentInCookie=et,y.onFidesEvent=no,y.parseCommaSeparatedString=Ft,y.patchNoticesServed=So,y.patchUserPreference=To,y.processExternalConsentValue=Me,y.raise=Jt,y.removeCookiesFromBrowser=Ui,y.resolveConsentValue=Si,y.resolveLegacyConsentValue=Ti,y.saveFidesCookie=zi,y.selectBestExperienceConfigTranslation=ft,y.selectBestNoticeTranslation=Yt,y.setupI18n=Wt,y.shouldResurfaceBanner=lt,y.transformConsentToFidesUserPreference=ze,y.transformTcfPreferencesToCookieKeys=jr,y.transformUserPreferenceToBoolean=le,y.updateCookieFromExperience=Gi,y.updateCookieFromNoticePreferences=Vi,y.updateExperience=jo,y.updateExperienceFromCookieConsentNotices=zt,y.updateWindowFides=_t,y.validateOptions=Zi});
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});