Brizy – Page Builder - Version 2.2.10

Version Description

  • 2021-03-23 =
  • Fixed: Remove product_visibility taxonomy from template conditions
  • Fixed: Compile page in the admin panel if the page is created with Brizy
  • Fixed: Save focal point on post save
  • Fixed: Sorry, Brizy could not load the content on blog page
Download this release

Release Info

Developer themefusecom
Plugin Icon 128x128 Brizy – Page Builder
Version 2.2.10
Comparing to
See all releases

Code changes from version 2.2.9.1 to 2.2.10

README.md CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.6<br>
5
  Requires PHP: 5.6<br>
6
- Stable tag: 2.2.9.1<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -118,6 +118,12 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
118
 
119
  ## Changelog
120
 
 
 
 
 
 
 
121
  ### 2.2.9.1 - 2021-03-09
122
  * New: Form input file label is now editable
123
  * Improved: Sections with Membership enabled now have an indicator icon
@@ -160,14 +166,14 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
160
  * Fixed: WooCommerce Add to Cart CSS
161
 
162
  ### 2.2.8 - 2021-02-16
163
- New: Membership functionality
164
- New: Accordion content animation
165
- New: IconText icon link
166
- Improved: Publish toolbar CSS
167
- Fixed: Colorpicker minor issues
168
- Fixed: Drag & Drop for 'absolute' positioned elements
169
- Fixed: Timeline CSS
170
- Fixed: Embed CSS
171
 
172
  ### 2.2.7 - 2021-02-02
173
  * New: Added animation option for Accordion content
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.6<br>
5
  Requires PHP: 5.6<br>
6
+ Stable tag: 2.2.10<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
118
 
119
  ## Changelog
120
 
121
+ ### 2.2.10 - 2021-03-23
122
+ * Fixed: Remove product_visibility taxonomy from template conditions
123
+ * Fixed: Compile page in the admin panel if the page is created with Brizy
124
+ * Fixed: Save focal point on post save
125
+ * Fixed: Sorry, Brizy could not load the content on blog page
126
+
127
  ### 2.2.9.1 - 2021-03-09
128
  * New: Form input file label is now editable
129
  * Improved: Sections with Membership enabled now have an indicator icon
166
  * Fixed: WooCommerce Add to Cart CSS
167
 
168
  ### 2.2.8 - 2021-02-16
169
+ * New: Membership functionality
170
+ * New: Accordion content animation
171
+ * New: IconText icon link
172
+ * Improved: Publish toolbar CSS
173
+ * Fixed: Colorpicker minor issues
174
+ * Fixed: Drag & Drop for 'absolute' positioned elements
175
+ * Fixed: Timeline CSS
176
+ * Fixed: Embed CSS
177
 
178
  ### 2.2.7 - 2021-02-02
179
  * New: Added animation option for Accordion content
admin/main.php CHANGED
@@ -66,40 +66,11 @@ class Brizy_Admin_Main {
66
 
67
  add_filter( 'wp_import_posts', array( $this, 'handlePostsImport' ) );
68
 
69
- add_filter( 'save_post', array( $this, 'save_focal_point' ), 10, 2 );
70
 
71
  add_filter( 'admin_post_thumbnail_html', array( $this, 'addFocalPoint' ), 10, 3 );
72
- add_filter( 'content_edit_pre', array( $this, 'fixContentForPastBrizyPosts' ), 10, 2 );
73
  }
74
 
75
- /**
76
- * @param $content
77
- *
78
- * @return null|string|string[]
79
- * @throws Exception
80
- */
81
- public function fixContentForPastBrizyPosts( $content, $postId ) {
82
-
83
- $post = get_post( $postId );
84
-
85
- // do not fix anything for popups/blocksand templates
86
- if ( in_array( $post->post_type, [
87
- Brizy_Admin_Templates::CP_TEMPLATE,
88
- Brizy_Admin_Blocks_Main::CP_GLOBAL,
89
- Brizy_Admin_Blocks_Main::CP_SAVED,
90
- Brizy_Admin_Popups_Main::CP_POPUP
91
- ] ) ) {
92
- return $content;
93
- }
94
-
95
- if ( Brizy_Editor_Entity::isBrizyEnabled( $postId ) ) {
96
- return apply_filters( 'brizy_content', $content, Brizy_Editor_Project::get(), $post, 'body' );
97
- }
98
-
99
- return $content;
100
- }
101
-
102
-
103
  public function addFocalPoint( $content, $postId, $thumbId ) {
104
 
105
  if ( ! $thumbId ) {
@@ -199,25 +170,19 @@ class Brizy_Admin_Main {
199
 
200
  /**
201
  * @param $post_id
202
- * @param $post
203
  */
204
- public function save_focal_point( $post_id, $post ) {
205
- try {
206
-
207
- if ( isset( $_REQUEST['_thumbnail_focal_point_x'], $_REQUEST['_thumbnail_focal_point_y'] ) && $post_id ) {
208
- update_post_meta( $post_id, 'brizy_attachment_focal_point', array(
209
- 'x' => (int) $_REQUEST['_thumbnail_focal_point_x'],
210
- 'y' => (int) $_REQUEST['_thumbnail_focal_point_y']
211
- ) );
212
- } else {
213
- delete_post_meta( $post_id, 'brizy_attachment_focal_point' );
214
- }
215
-
216
- } catch ( Exception $e ) {
217
- Brizy_Logger::instance()->exception( $e );
218
 
 
219
  return;
220
  }
 
 
 
 
 
 
 
221
  }
222
 
223
  public function hide_editor() {
66
 
67
  add_filter( 'wp_import_posts', array( $this, 'handlePostsImport' ) );
68
 
69
+ add_filter( 'save_post', array( $this, 'save_focal_point' ) );
70
 
71
  add_filter( 'admin_post_thumbnail_html', array( $this, 'addFocalPoint' ), 10, 3 );
 
72
  }
73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  public function addFocalPoint( $content, $postId, $thumbId ) {
75
 
76
  if ( ! $thumbId ) {
170
 
171
  /**
172
  * @param $post_id
 
173
  */
174
+ public function save_focal_point( $post_id ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
175
 
176
+ if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || wp_is_post_revision( $post_id ) ) {
177
  return;
178
  }
179
+
180
+ if ( isset( $_REQUEST['_thumbnail_focal_point_x'], $_REQUEST['_thumbnail_focal_point_y'] ) && $post_id ) {
181
+ update_post_meta( $post_id, 'brizy_attachment_focal_point', [
182
+ 'x' => (int) $_REQUEST['_thumbnail_focal_point_x'],
183
+ 'y' => (int) $_REQUEST['_thumbnail_focal_point_y']
184
+ ] );
185
+ }
186
  }
187
 
188
  public function hide_editor() {
admin/panel-post-content.php ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php defined( 'ABSPATH' ) or die();
2
+
3
+ class Brizy_Admin_PanelPostContent {
4
+
5
+ public static function _init() {
6
+ static $instance;
7
+
8
+ if ( ! $instance ) {
9
+ $instance = new self();
10
+ }
11
+
12
+ return $instance;
13
+ }
14
+
15
+ protected function __construct() {
16
+ add_filter( 'wp_insert_post_data', [ $this, 'wp_insert_post_data' ], 10, 2 );
17
+ add_action( 'rest_request_before_callbacks', [ $this, 'rest_request_before_callbacks' ] );
18
+ add_filter( 'content_edit_pre', [ $this, 'content_edit_pre' ], 10, 2 );
19
+ }
20
+
21
+ public function wp_insert_post_data( $data, $postarr ) {
22
+
23
+ // Do not run when the page is updated from editor, only from wp dashboard
24
+ if ( wp_doing_ajax() ) {
25
+ return $data;
26
+ }
27
+
28
+ $data['post_content'] = $this->get_compiled_html( $postarr['ID'], $data['post_content'] );
29
+
30
+ return $data;
31
+ }
32
+
33
+ public function rest_request_before_callbacks( $response ){
34
+
35
+ $postsTypes = Brizy_Editor::get()->supported_post_types();
36
+
37
+ foreach( $postsTypes as $postType ) {
38
+ add_action( "rest_prepare_{$postType}", [ $this, 'reset_prepare_post' ] );
39
+ }
40
+
41
+ return $response;
42
+ }
43
+
44
+ public function reset_prepare_post( $response ) {
45
+
46
+ global $post;
47
+
48
+ if ( ! isset( $response->data['content']['raw'] ) ) {
49
+ return $response;
50
+ }
51
+
52
+ $response->data['content']['raw'] = $this->get_compiled_html( $post->ID, $response->data['content']['raw'] );
53
+
54
+ return $response;
55
+ }
56
+
57
+ /**
58
+ * @param $content
59
+ *
60
+ * @param $postId
61
+ *
62
+ * @return null|string|string[]
63
+ * @throws Exception
64
+ */
65
+ public function content_edit_pre( $content, $postId ) {
66
+
67
+ $post = get_post( $postId );
68
+
69
+ // do not fix anything for popups/blocksand templates
70
+ if ( in_array( $post->post_type, [
71
+ Brizy_Admin_Templates::CP_TEMPLATE,
72
+ Brizy_Admin_Blocks_Main::CP_GLOBAL,
73
+ Brizy_Admin_Blocks_Main::CP_SAVED,
74
+ Brizy_Admin_Popups_Main::CP_POPUP
75
+ ] ) ) {
76
+ return $content;
77
+ }
78
+
79
+ return $this->get_compiled_html( $postId, $content );
80
+ }
81
+
82
+ private function get_compiled_html( $postId, $content ) {
83
+
84
+ if ( ! Brizy_Editor_Entity::isBrizyEnabled( $postId ) ) {
85
+ return $content;
86
+ }
87
+
88
+ $editor = Brizy_Editor_Post::get( $postId );
89
+
90
+ if ( $editor->isCompiledWithCurrentVersion() && ! $editor->get_needs_compile() ) {
91
+ return $content;
92
+ }
93
+
94
+ try {
95
+ $editor->compile_page();
96
+ $editor->saveStorage();
97
+ $editor->savePost();
98
+ $project = Brizy_Editor_Project::get();
99
+ } catch ( Exception $e ) {
100
+ return $content;
101
+ }
102
+
103
+ return apply_filters( 'brizy_content', $editor->get_compiled_page()->get_body(), $project, $editor->getWpPost() );
104
+ }
105
+ }
admin/rules/api.php CHANGED
@@ -415,8 +415,11 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
415
  }
416
 
417
  $postTypeName = $wp_post_types[ $post_type ]->labels->name;
 
418
 
419
- $taxonomies = get_object_taxonomies( $post_type, 'objects' );
 
 
420
 
421
  $groups = array();
422
 
415
  }
416
 
417
  $postTypeName = $wp_post_types[ $post_type ]->labels->name;
418
+ $taxonomies = get_object_taxonomies( $post_type, 'objects' );
419
 
420
+ if ( isset( $taxonomies['product_visibility'] ) ) {
421
+ unset( $taxonomies['product_visibility'] );
422
+ }
423
 
424
  $groups = array();
425
 
admin/static/js/featured-image.js CHANGED
@@ -109,6 +109,10 @@ jQuery(document).ready(function ($) {
109
  el('a', {
110
  id: 'remove-post-thumbnail', href: "#", onClick: function (e) {
111
  origianalProps.onRemoveImage(e);
 
 
 
 
112
  wp.data.dispatch('core/editor').editPost({
113
  'brizy_attachment_focal_point': {
114
  x: 50,
109
  el('a', {
110
  id: 'remove-post-thumbnail', href: "#", onClick: function (e) {
111
  origianalProps.onRemoveImage(e);
112
+
113
+ Brizy_Admin_Data.page.focalPoint.x = 50;
114
+ Brizy_Admin_Data.page.focalPoint.y = 50;
115
+
116
  wp.data.dispatch('core/editor').editPost({
117
  'brizy_attachment_focal_point': {
118
  x: 50,
brizy.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
- * Version: 2.2.9.1
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -19,9 +19,9 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
19
 
20
  define( 'BRIZY_DEVELOPMENT', false );
21
  define( 'BRIZY_LOG', false );
22
- define( 'BRIZY_VERSION', '2.2.9.1' );
23
- define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '173-wp' );
24
- define( 'BRIZY_SYNC_VERSION', '173' );
25
  define( 'BRIZY_FILE', __FILE__ );
26
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
27
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 2.2.10
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
19
 
20
  define( 'BRIZY_DEVELOPMENT', false );
21
  define( 'BRIZY_LOG', false );
22
+ define( 'BRIZY_VERSION', '2.2.10' );
23
+ define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '176-wp' );
24
+ define( 'BRIZY_SYNC_VERSION', '176' );
25
  define( 'BRIZY_FILE', __FILE__ );
26
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
27
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
compatibilities/init.php CHANGED
@@ -47,10 +47,6 @@ class Brizy_Compatibilities_Init {
47
  new Brizy_Compatibilities_SeoPress();
48
  }
49
 
50
- if ( function_exists( 'rank_math' ) ) {
51
- new Brizy_Compatibilities_RankMathSEO();
52
- }
53
-
54
  if ( function_exists( 'WPNCEasyWP' ) ) {
55
  new Brizy_Compatibilities_NcEasywp();
56
  }
47
  new Brizy_Compatibilities_SeoPress();
48
  }
49
 
 
 
 
 
50
  if ( function_exists( 'WPNCEasyWP' ) ) {
51
  new Brizy_Compatibilities_NcEasywp();
52
  }
compatibilities/rank-math-seo.php DELETED
@@ -1,46 +0,0 @@
1
- <?php
2
-
3
- class Brizy_Compatibilities_RankMathSeo {
4
-
5
- public function __construct() {
6
- add_action( 'rest_api_init', [ $this, 'init_rest_api' ] );
7
- }
8
-
9
- /**
10
- * Load the REST API endpoints.
11
- */
12
- public function init_rest_api() {
13
- register_rest_route( 'rankmath/v1', '/briz_post_content', array(
14
- 'methods' => 'GET',
15
- [
16
- 'methods' => WP_REST_Server::ALLMETHODS,
17
- 'callback' => [ $this, 'get_post_content' ],
18
- 'args' => [
19
- 'postId' => [
20
- 'type' => 'string',
21
- 'required' => true,
22
- ]
23
- ],
24
- ]
25
- ) );
26
- }
27
-
28
- /**
29
- * @param WP_REST_Request $request
30
- *
31
- * @return mixed|void
32
- */
33
- public function get_post_content( WP_REST_Request $request ) {
34
- try {
35
- $post = Brizy_Editor_Post::get( $request->get_param( 'postId' ) );
36
- if ( Brizy_Editor_Entity::isBrizyEnabled( $post ) ) {
37
- return wp_send_json_success( [ 'content' => apply_filters( 'brizy_content', $post->get_compiled_page()->get_body(), Brizy_Editor_Project::get(), $post->getWpPost() ) ] );
38
- } else {
39
- wp_send_json_error( 'This post does not use Brizy.', 204 );
40
- }
41
- } catch ( Exception $e ) {
42
- Brizy_Logger::instance()->critical( 'Failed to process REST request', [ $e ] );
43
- wp_send_json_error( 'Failed to process the request', 500 );
44
- }
45
- }
46
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
compatibilities/yoast-seo.php CHANGED
@@ -3,7 +3,6 @@
3
  class Brizy_Compatibilities_YoastSeo {
4
 
5
  public function __construct() {
6
- add_filter( 'admin_init', array( $this, 'compile_post' ) );
7
  add_filter( 'wpseo_twitter_image', array( $this, 'wpseo_twitter_image' ) );
8
  }
9
 
@@ -39,29 +38,4 @@ class Brizy_Compatibilities_YoastSeo {
39
 
40
  return $img_url;
41
  }
42
-
43
- public function compile_post() {
44
- global $pagenow;
45
-
46
- if ( 'post.php' !== $pagenow ) {
47
- return;
48
- }
49
-
50
- try {
51
- if ( ! Brizy_Editor_Entity::isBrizyEnabled($_GET['post']) ) {
52
- return;
53
- }
54
-
55
- $post = Brizy_Editor_Post::get( $_GET['post'] );
56
- $needs_compile = ! $post->isCompiledWithCurrentVersion() || $post->get_needs_compile();
57
-
58
- if ( $needs_compile ) {
59
- $post->compile_page();
60
- $post->saveStorage();
61
- $post->savePost();
62
- }
63
-
64
- } catch ( Exception $e ) {
65
- }
66
- }
67
  }
3
  class Brizy_Compatibilities_YoastSeo {
4
 
5
  public function __construct() {
 
6
  add_filter( 'wpseo_twitter_image', array( $this, 'wpseo_twitter_image' ) );
7
  }
8
 
38
 
39
  return $img_url;
40
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  }
config.php CHANGED
@@ -47,6 +47,7 @@ class Brizy_Config {
47
  const CLOUD_LAYOUTS = '/api/layouts';
48
  const CLOUD_SCREENSHOT = '/screenshot/%s';
49
  const CLOUD_SCREENSHOTS = '/api/screenshots';
 
50
 
51
  static public function getCompilerUrls() {
52
  return new Brizy_Admin_UrlIterator(
47
  const CLOUD_LAYOUTS = '/api/layouts';
48
  const CLOUD_SCREENSHOT = '/screenshot/%s';
49
  const CLOUD_SCREENSHOTS = '/api/screenshots';
50
+ const WP_HTTP_TIMEOUT = 30;
51
 
52
  static public function getCompilerUrls() {
53
  return new Brizy_Admin_UrlIterator(
content/providers/abstract-provider.php CHANGED
@@ -22,11 +22,9 @@ abstract class Brizy_Content_Providers_AbstractProvider implements Brizy_Content
22
  */
23
  public function getAllPlaceholders() {
24
  $out = array();
25
-
26
  foreach ( $this->getGroupedPlaceholders() as $placeholders ) {
27
- $out = array_merge( $out, call_user_func_array( 'array_merge', $placeholders ) );
28
  }
29
-
30
  return $out;
31
  }
32
 
22
  */
23
  public function getAllPlaceholders() {
24
  $out = array();
 
25
  foreach ( $this->getGroupedPlaceholders() as $placeholders ) {
26
+ $out = array_merge( $out, call_user_func_array( 'array_merge', array_values($placeholders) ) );
27
  }
 
28
  return $out;
29
  }
30
 
editor.php CHANGED
@@ -132,6 +132,7 @@ class Brizy_Editor {
132
  $metaManager->addMonitor( new Brizy_Admin_Post_ProjectPostMonitor() );
133
 
134
  //Brizy_Editor_Asset_Cleaner::_init();
 
135
  Brizy_Admin_Templates::instance();
136
  Brizy_Admin_Popups_Main::_init();
137
  Brizy_Admin_FormEntries::_init();
132
  $metaManager->addMonitor( new Brizy_Admin_Post_ProjectPostMonitor() );
133
 
134
  //Brizy_Editor_Asset_Cleaner::_init();
135
+ Brizy_Admin_PanelPostContent::_init();
136
  Brizy_Admin_Templates::instance();
137
  Brizy_Admin_Popups_Main::_init();
138
  Brizy_Admin_FormEntries::_init();
editor/editor/editor.php CHANGED
@@ -292,6 +292,11 @@ class Brizy_Editor_Editor_Editor {
292
  if ( $rule ) {
293
 
294
  switch ( $rule->getAppliedFor() ) {
 
 
 
 
 
295
  case Brizy_Admin_Rule::POSTS :
296
  $args = array(
297
  'post_type' => $rule->getEntityType(),
292
  if ( $rule ) {
293
 
294
  switch ( $rule->getAppliedFor() ) {
295
+ case Brizy_Admin_Rule::WOO_SHOP_PAGE:
296
+ if ( function_exists( 'wc_get_page_id' ) && wc_get_page_id( 'shop' ) ) {
297
+ $wp_post = get_post( wc_get_page_id( 'shop' ) );
298
+ }
299
+ break;
300
  case Brizy_Admin_Rule::POSTS :
301
  $args = array(
302
  'post_type' => $rule->getEntityType(),
editor/http/client.php CHANGED
@@ -50,7 +50,7 @@ class Brizy_Editor_Http_Client {
50
  public function request( $url, $options = array(), $method = 'GET' ) {
51
 
52
  $options['method'] = $method;
53
- $options['timeout'] = 30;
54
  $options = $this->prepare_options( $options );
55
  $response = null;
56
 
50
  public function request( $url, $options = array(), $method = 'GET' ) {
51
 
52
  $options['method'] = $method;
53
+ $options['timeout'] = Brizy_Config::WP_HTTP_TIMEOUT;
54
  $options = $this->prepare_options( $options );
55
  $response = null;
56
 
jenkins/clean-files.sh CHANGED
@@ -21,6 +21,7 @@ find . -type f -name "*.dev.php" -delete
21
  rm -rf ./public/editor-src
22
  rm -rf ./.phpunit*
23
  rm -rf ./.env* .idea
 
24
  rm -rf ./bin ./tests *.dist *.xml *.lock *.json *.yml *.sh ./vendor/twig/twig/test
25
  rm -rf ./vendor/twig/twig/ext/twig ./vendor/twig/twig/doc
26
  rm -rf ./vendor/imagine/imagine/lib/Imagine/resources/Adobe/*.pdf
21
  rm -rf ./public/editor-src
22
  rm -rf ./.phpunit*
23
  rm -rf ./.env* .idea
24
+ rm -rf ./.github
25
  rm -rf ./bin ./tests *.dist *.xml *.lock *.json *.yml *.sh ./vendor/twig/twig/test
26
  rm -rf ./vendor/twig/twig/ext/twig ./vendor/twig/twig/doc
27
  rm -rf ./vendor/imagine/imagine/lib/Imagine/resources/Adobe/*.pdf
public/editor-build/173-wp/editor/js/editor.js DELETED
@@ -1 +0,0 @@
1
- !function(e){function t(t){for(var n,i,l=t[0],s=t[1],c=t[2],u=0,p=[];u<l.length;u++)i=l[u],Object.prototype.hasOwnProperty.call(a,i)&&a[i]&&p.push(a[i][0]),a[i]=0;for(n in s)Object.prototype.hasOwnProperty.call(s,n)&&(e[n]=s[n]);for(d&&d(t);p.length;)p.shift()();return r.push.apply(r,c||[]),o()}function o(){for(var e,t=0;t<r.length;t++){for(var o=r[t],n=!0,l=1;l<o.length;l++){var s=o[l];0!==a[s]&&(n=!1)}n&&(r.splice(t--,1),e=i(i.s=o[0]))}return e}var n={},a={0:0},r=[];function i(t){if(n[t])return n[t].exports;var o=n[t]={i:t,l:!1,exports:{}};return e[t].call(o.exports,o,o.exports,i),o.l=!0,o.exports}i.e=function(e){var t=[],o=a[e];if(0!==o)if(o)t.push(o[2]);else{var n=new Promise((function(t,n){o=a[e]=[t,n]}));t.push(o[2]=n);var r,l=document.createElement("script");l.charset="utf-8",l.timeout=120,i.nc&&l.setAttribute("nonce",i.nc),l.src=function(e){return i.p+""+({}[e]||e)+".js"}(e);var s=new Error;r=function(t){l.onerror=l.onload=null,clearTimeout(c);var o=a[e];if(0!==o){if(o){var n=t&&("load"===t.type?"missing":t.type),r=t&&t.target&&t.target.src;s.message="Loading chunk "+e+" failed.\n("+n+": "+r+")",s.name="ChunkLoadError",s.type=n,s.request=r,o[1](s)}a[e]=void 0}};var c=setTimeout((function(){r({type:"timeout",target:l})}),12e4);l.onerror=l.onload=r,document.head.appendChild(l)}return Promise.all(t)},i.m=e,i.c=n,i.d=function(e,t,o){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(i.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)i.d(o,n,function(t){return e[t]}.bind(null,n));return o},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i.oe=function(e){throw console.error(e),e};var l=window.webpackJsonp=window.webpackJsonp||[],s=l.push.bind(l);l.push=t,l=l.slice();for(var c=0;c<l.length;c++)t(l[c]);var d=s;r.push([553,1]),o()}([,function(e,t,o){"use strict";var n=o(209);o.d(t,"a",(function(){return n.a}))},,function(e,t,o){"use strict";o.r(t),o.d(t,"saveOnChanges",(function(){return c})),o.d(t,"defaultValueKey",(function(){return i.a})),o.d(t,"defaultValueValue",(function(){return i.b})),o.d(t,"deviceStateValueByKey",(function(){return i.c})),o.d(t,"makeKeyByStateDevice",(function(){return i.e})),o.d(t,"onChangeBgImage",(function(){return v})),o.d(t,"onChangeBgImageBgOpacity",(function(){return f})),o.d(t,"onChangeBgImageDependencies",(function(){return y})),o.d(t,"onChangeBgImageColumnAndRowSyncMobile",(function(){return O})),o.d(t,"onChangeBorderStyle2",(function(){return x})),o.d(t,"onChangeElementBorderStyleDependencies2",(function(){return j})),o.d(t,"onChangeContainerBorderStyleDependencies2",(function(){return B})),o.d(t,"onChangeBorderColorHexAndOpacity2",(function(){return P})),o.d(t,"onChangeBorderColorHexAndOpacityPalette2",(function(){return w})),o.d(t,"onChangeElementBorderColorHexAndOpacityDependencies2",(function(){return T})),o.d(t,"onChangeContainerBorderColorHexAndOpacityDependencies2",(function(){return z})),o.d(t,"onChangeBorderColorHexAndOpacityColumnAndRowSyncTablet2",(function(){return E})),o.d(t,"onChangeBorderColorHexAndOpacityColumnAndRowSyncMobile2",(function(){return k})),o.d(t,"onChangeBorderColorPalette2",(function(){return H})),o.d(t,"onChangeBorderColorPaletteOpacity2",(function(){return F})),o.d(t,"onChangeBorderWidthType2",(function(){return _})),o.d(t,"onChangeBorderWidthGrouped2",(function(){return R})),o.d(t,"onChangeBorderWidthGroupedDependencies2",(function(){return M})),o.d(t,"onChangeBorderWidthUngrouped2",(function(){return L})),o.d(t,"onChangeBorderWidthUngroupedDependencies2",(function(){return W})),o.d(t,"onChangeBorderRadiusGrouped",(function(){return D})),o.d(t,"onChangeBorderRadiusGroupedDependencies",(function(){return V})),o.d(t,"onChangeBorderRadiusUngrouped",(function(){return $})),o.d(t,"onChangeBorderRadiusUngroupedDependencies",(function(){return G})),o.d(t,"onChangeColorHexAndOpacity",(function(){return U})),o.d(t,"onChangeColorHexAndOpacityPalette",(function(){return K})),o.d(t,"onChangeColorPalette",(function(){return q})),o.d(t,"onChangeColorPaletteOpacity",(function(){return Y})),o.d(t,"onChangeBgColorType2",(function(){return Z})),o.d(t,"onChangeGradientRange2",(function(){return J})),o.d(t,"onChangeBgColorHexAndOpacity2",(function(){return Q})),o.d(t,"onChangeBgColorHexAndOpacityPalette2",(function(){return ee})),o.d(t,"onChangeBgColorHexAndOpacityDependencies2",(function(){return te})),o.d(t,"onChangeBgColorHexAndOpacityColumnAndRowSyncMobile2",(function(){return oe})),o.d(t,"onChangeBgColorPalette2",(function(){return ne})),o.d(t,"onChangeBgColorPaletteOpacity2",(function(){return ae})),o.d(t,"onChangeBoxShadowHexAndOpacity2",(function(){return se})),o.d(t,"onChangeBoxShadowHexAndOpacityPalette2",(function(){return ce})),o.d(t,"onChangeBoxShadowHexAndOpacityDependencies2",(function(){return de})),o.d(t,"onChangeBoxShadowPalette2",(function(){return ue})),o.d(t,"onChangeBoxShadowPaletteOpacity2",(function(){return pe})),o.d(t,"onChangeBoxShadowType2",(function(){return ie})),o.d(t,"onChangeBoxShadowTypeDependencies2",(function(){return le})),o.d(t,"onChangeBoxShadowFields2",(function(){return be})),o.d(t,"onChangeBoxShadowFieldsDependencies2",(function(){return me})),o.d(t,"onChangeBoxShadowOpacity2",(function(){return he})),o.d(t,"onChangePaddingGrouped",(function(){return fe})),o.d(t,"onChangePaddingUngrouped",(function(){return ye})),o.d(t,"onChangeMarginGrouped",(function(){return Ce})),o.d(t,"onChangeMarginUngrouped",(function(){return xe})),o.d(t,"onChangeElementSectionBoxShadowHexAndOpacityDependencies",(function(){return je})),o.d(t,"onChangeElementProgressBarBg2ColorHexAndOpacity",(function(){return Be})),o.d(t,"onChangeElementProgressBarBg2ColorHexAndOpacityPalette",(function(){return Pe})),o.d(t,"onChangeElementProgressBarBg2ColorHexAndOpacityDependencies",(function(){return we})),o.d(t,"onChangeElementProgressBarBg2ColorPalette",(function(){return Te})),o.d(t,"onChangeElementProgressBarBg2ColorPaletteOpacity",(function(){return ze})),o.d(t,"onChangeElementIconBorderColorHex2",(function(){return ke})),o.d(t,"onChangeElementIconBorderColorPalette2",(function(){return He})),o.d(t,"onChangeElementIconBorderColorFields2",(function(){return Fe})),o.d(t,"onChangeElementIconBorderHoverColorHex2",(function(){return _e})),o.d(t,"onChangeElementIconBorderHoverColorPalette2",(function(){return Re})),o.d(t,"onChangeElementIconBorderHoverColorFields2",(function(){return Me})),o.d(t,"onChangeElementButtonBorderColorHex2",(function(){return We})),o.d(t,"onChangeElementButtonBorderColorPalette2",(function(){return Ie})),o.d(t,"onChangeElementButtonBorderColorFields2",(function(){return Ne})),o.d(t,"onChangeElementButtonBorderHoverColorHex2",(function(){return Ae})),o.d(t,"onChangeElementButtonBorderHoverColorPalette2",(function(){return De})),o.d(t,"onChangeElementButtonBorderHoverColorFields2",(function(){return Ve})),o.d(t,"onChangeBgColorHexButton2",(function(){return $e})),o.d(t,"onChangeBgColorPaletteButton2",(function(){return Ge})),o.d(t,"onChangeBgColorFieldsButton2",(function(){return Ue})),o.d(t,"onChangeHoverBgColorHexButton2",(function(){return Ke})),o.d(t,"onChangeHoverBgColorPaletteButton2",(function(){return qe})),o.d(t,"onChangeHoverBgColorFieldsButton2",(function(){return Ye})),o.d(t,"onChangeColorHexButtonIcon2",(function(){return Xe})),o.d(t,"onChangeColorPaletteButtonIcon2",(function(){return Ze})),o.d(t,"onChangeColorFieldsButtonIcon2",(function(){return Je})),o.d(t,"onChangeHoverColorHexButtonIcon2",(function(){return Qe})),o.d(t,"onChangeHoverColorPaletteButtonIcon2",(function(){return et})),o.d(t,"onChangeHoverColorFieldsButtonIcon2",(function(){return tt})),o.d(t,"onChangeMenuColorHex2",(function(){return ot})),o.d(t,"onChangeMenuColorPalette2",(function(){return nt})),o.d(t,"onChangeMenuColorFields2",(function(){return at})),o.d(t,"onChangeMenuHoverColorHex2",(function(){return rt})),o.d(t,"onChangeMenuHoverColorPalette2",(function(){return it})),o.d(t,"onChangeMenuHoverColorFields2",(function(){return lt})),o.d(t,"onChangeActiveColorHexSubMenu2",(function(){return $t})),o.d(t,"onChangeActiveColorPaletteSubMenu2",(function(){return Gt})),o.d(t,"onChangeActiveColorFieldsSubMenu2",(function(){return Ut})),o.d(t,"onChangeBgActiveColorHexSubMenu2",(function(){return Kt})),o.d(t,"onChangeBgActiveColorPaletteSubMenu2",(function(){return qt})),o.d(t,"onChangeBgActiveColorFieldsSubMenu2",(function(){return Yt})),o.d(t,"onChangeColorHexMMenu2",(function(){return st})),o.d(t,"onChangeColorPaletteMMenu2",(function(){return ct})),o.d(t,"onChangeColorFieldsMMenu2",(function(){return dt})),o.d(t,"onChangeHoverColorHexMMenu2",(function(){return ut})),o.d(t,"onChangeHoverColorPaletteMMenu2",(function(){return pt})),o.d(t,"onChangeHoverColorFieldsMMenu2",(function(){return bt})),o.d(t,"onChangeColorHexSubMenu2",(function(){return mt})),o.d(t,"onChangeColorPaletteSubMenu2",(function(){return ht})),o.d(t,"onChangeColorFieldsSubMenu2",(function(){return gt})),o.d(t,"onChangeHoverColorHexSubMenu2",(function(){return vt})),o.d(t,"onChangeHoverColorPaletteSubMenu2",(function(){return ft})),o.d(t,"onChangeHoverColorFieldsSubMenu2",(function(){return yt})),o.d(t,"onChangeColorHexIconMenu2",(function(){return Ot})),o.d(t,"onChangeColorPaletteIconMenu2",(function(){return St})),o.d(t,"onChangeColorFieldsIconMenu2",(function(){return Ct})),o.d(t,"onChangeTabletColorHexIconMMenu2",(function(){return xt})),o.d(t,"onChangeTabletColorPaletteIconMMenu2",(function(){return jt})),o.d(t,"onChangeTabletColorFieldsIconMMenu2",(function(){return Bt})),o.d(t,"onChangeMobileColorHexIconMMenu2",(function(){return Pt})),o.d(t,"onChangeMobileColorPaletteIconMMenu2",(function(){return wt})),o.d(t,"onChangeMobileColorFieldsIconMMenu2",(function(){return Tt})),o.d(t,"onChangeActiveColorHexMMenu2",(function(){return Xt})),o.d(t,"onChangeActiveColorPaletteMMenu2",(function(){return Zt})),o.d(t,"onChangeActiveColorFieldsMMenu2",(function(){return Jt})),o.d(t,"onChangeBgColorHexMMenu2",(function(){return zt})),o.d(t,"onChangeBgColorPaletteMMenu2",(function(){return Et})),o.d(t,"onChangeBgColorFieldsMMenu2",(function(){return kt})),o.d(t,"onChangeBgColorHexSubMenu2",(function(){return Ht})),o.d(t,"onChangeBgColorPaletteSubMenu2",(function(){return Ft})),o.d(t,"onChangeBgColorFieldsSubMenu2",(function(){return _t})),o.d(t,"onChangeBgHoverColorHexSubMenu2",(function(){return Rt})),o.d(t,"onChangeBgHoverColorPaletteSubMenu2",(function(){return Mt})),o.d(t,"onChangeBgHoverColorFieldsSubMenu2",(function(){return Lt})),o.d(t,"onChangeBorderColorHexMMenu2",(function(){return Wt})),o.d(t,"onChangeBorderColorPaletteMMenu2",(function(){return It})),o.d(t,"onChangeBorderColorFieldsMMenu2",(function(){return Nt})),o.d(t,"onChangeBorderColorHexSubMenu2",(function(){return At})),o.d(t,"onChangeBorderColorPaletteSubMenu2",(function(){return Dt})),o.d(t,"onChangeBorderColorFieldsSubMenu2",(function(){return Vt})),o.d(t,"onChangeTypography",(function(){return oo})),o.d(t,"onChangeTypographyTablet",(function(){return no})),o.d(t,"onChangeTypographyMobile",(function(){return ao})),o.d(t,"tabletSyncOnChange",(function(){return i.g})),o.d(t,"mobileSyncOnChange",(function(){return i.f})),o.d(t,"keySyncOnChange",(function(){return i.d})),o.d(t,"validateKeyByProperty",(function(){return i.h})),o.d(t,"onChangeTypography2",(function(){return so}));var n={};o.r(n),o.d(n,"saveOnChanges",(function(){return c})),o.d(n,"defaultValueKey",(function(){return i.a})),o.d(n,"defaultValueValue",(function(){return i.b})),o.d(n,"deviceStateValueByKey",(function(){return i.c})),o.d(n,"makeKeyByStateDevice",(function(){return i.e})),o.d(n,"onChangeBgImage",(function(){return v})),o.d(n,"onChangeBgImageBgOpacity",(function(){return f})),o.d(n,"onChangeBgImageDependencies",(function(){return y})),o.d(n,"onChangeBgImageColumnAndRowSyncMobile",(function(){return O})),o.d(n,"onChangeBorderStyle2",(function(){return x})),o.d(n,"onChangeElementBorderStyleDependencies2",(function(){return j})),o.d(n,"onChangeContainerBorderStyleDependencies2",(function(){return B})),o.d(n,"onChangeBorderColorHexAndOpacity2",(function(){return P})),o.d(n,"onChangeBorderColorHexAndOpacityPalette2",(function(){return w})),o.d(n,"onChangeElementBorderColorHexAndOpacityDependencies2",(function(){return T})),o.d(n,"onChangeContainerBorderColorHexAndOpacityDependencies2",(function(){return z})),o.d(n,"onChangeBorderColorHexAndOpacityColumnAndRowSyncTablet2",(function(){return E})),o.d(n,"onChangeBorderColorHexAndOpacityColumnAndRowSyncMobile2",(function(){return k})),o.d(n,"onChangeBorderColorPalette2",(function(){return H})),o.d(n,"onChangeBorderColorPaletteOpacity2",(function(){return F})),o.d(n,"onChangeBorderWidthType2",(function(){return _})),o.d(n,"onChangeBorderWidthGrouped2",(function(){return R})),o.d(n,"onChangeBorderWidthGroupedDependencies2",(function(){return M})),o.d(n,"onChangeBorderWidthUngrouped2",(function(){return L})),o.d(n,"onChangeBorderWidthUngroupedDependencies2",(function(){return W})),o.d(n,"onChangeBorderRadiusGrouped",(function(){return D})),o.d(n,"onChangeBorderRadiusGroupedDependencies",(function(){return V})),o.d(n,"onChangeBorderRadiusUngrouped",(function(){return $})),o.d(n,"onChangeBorderRadiusUngroupedDependencies",(function(){return G})),o.d(n,"onChangeColorHexAndOpacity",(function(){return U})),o.d(n,"onChangeColorHexAndOpacityPalette",(function(){return K})),o.d(n,"onChangeColorPalette",(function(){return q})),o.d(n,"onChangeColorPaletteOpacity",(function(){return Y})),o.d(n,"onChangeBgColorType2",(function(){return Z})),o.d(n,"onChangeGradientRange2",(function(){return J})),o.d(n,"onChangeBgColorHexAndOpacity2",(function(){return Q})),o.d(n,"onChangeBgColorHexAndOpacityPalette2",(function(){return ee})),o.d(n,"onChangeBgColorHexAndOpacityDependencies2",(function(){return te})),o.d(n,"onChangeBgColorHexAndOpacityColumnAndRowSyncMobile2",(function(){return oe})),o.d(n,"onChangeBgColorPalette2",(function(){return ne})),o.d(n,"onChangeBgColorPaletteOpacity2",(function(){return ae})),o.d(n,"onChangeBoxShadowHexAndOpacity2",(function(){return se})),o.d(n,"onChangeBoxShadowHexAndOpacityPalette2",(function(){return ce})),o.d(n,"onChangeBoxShadowHexAndOpacityDependencies2",(function(){return de})),o.d(n,"onChangeBoxShadowPalette2",(function(){return ue})),o.d(n,"onChangeBoxShadowPaletteOpacity2",(function(){return pe})),o.d(n,"onChangeBoxShadowType2",(function(){return ie})),o.d(n,"onChangeBoxShadowTypeDependencies2",(function(){return le})),o.d(n,"onChangeBoxShadowFields2",(function(){return be})),o.d(n,"onChangeBoxShadowFieldsDependencies2",(function(){return me})),o.d(n,"onChangeBoxShadowOpacity2",(function(){return he})),o.d(n,"onChangePaddingGrouped",(function(){return fe})),o.d(n,"onChangePaddingUngrouped",(function(){return ye})),o.d(n,"onChangeMarginGrouped",(function(){return Ce})),o.d(n,"onChangeMarginUngrouped",(function(){return xe})),o.d(n,"onChangeElementSectionBoxShadowHexAndOpacityDependencies",(function(){return je})),o.d(n,"onChangeElementProgressBarBg2ColorHexAndOpacity",(function(){return Be})),o.d(n,"onChangeElementProgressBarBg2ColorHexAndOpacityPalette",(function(){return Pe})),o.d(n,"onChangeElementProgressBarBg2ColorHexAndOpacityDependencies",(function(){return we})),o.d(n,"onChangeElementProgressBarBg2ColorPalette",(function(){return Te})),o.d(n,"onChangeElementProgressBarBg2ColorPaletteOpacity",(function(){return ze})),o.d(n,"onChangeElementIconBorderColorHex2",(function(){return ke})),o.d(n,"onChangeElementIconBorderColorPalette2",(function(){return He})),o.d(n,"onChangeElementIconBorderColorFields2",(function(){return Fe})),o.d(n,"onChangeElementIconBorderHoverColorHex2",(function(){return _e})),o.d(n,"onChangeElementIconBorderHoverColorPalette2",(function(){return Re})),o.d(n,"onChangeElementIconBorderHoverColorFields2",(function(){return Me})),o.d(n,"onChangeElementButtonBorderColorHex2",(function(){return We})),o.d(n,"onChangeElementButtonBorderColorPalette2",(function(){return Ie})),o.d(n,"onChangeElementButtonBorderColorFields2",(function(){return Ne})),o.d(n,"onChangeElementButtonBorderHoverColorHex2",(function(){return Ae})),o.d(n,"onChangeElementButtonBorderHoverColorPalette2",(function(){return De})),o.d(n,"onChangeElementButtonBorderHoverColorFields2",(function(){return Ve})),o.d(n,"onChangeBgColorHexButton2",(function(){return $e})),o.d(n,"onChangeBgColorPaletteButton2",(function(){return Ge})),o.d(n,"onChangeBgColorFieldsButton2",(function(){return Ue})),o.d(n,"onChangeHoverBgColorHexButton2",(function(){return Ke})),o.d(n,"onChangeHoverBgColorPaletteButton2",(function(){return qe})),o.d(n,"onChangeHoverBgColorFieldsButton2",(function(){return Ye})),o.d(n,"onChangeColorHexButtonIcon2",(function(){return Xe})),o.d(n,"onChangeColorPaletteButtonIcon2",(function(){return Ze})),o.d(n,"onChangeColorFieldsButtonIcon2",(function(){return Je})),o.d(n,"onChangeHoverColorHexButtonIcon2",(function(){return Qe})),o.d(n,"onChangeHoverColorPaletteButtonIcon2",(function(){return et})),o.d(n,"onChangeHoverColorFieldsButtonIcon2",(function(){return tt})),o.d(n,"onChangeMenuColorHex2",(function(){return ot})),o.d(n,"onChangeMenuColorPalette2",(function(){return nt})),o.d(n,"onChangeMenuColorFields2",(function(){return at})),o.d(n,"onChangeMenuHoverColorHex2",(function(){return rt})),o.d(n,"onChangeMenuHoverColorPalette2",(function(){return it})),o.d(n,"onChangeMenuHoverColorFields2",(function(){return lt})),o.d(n,"onChangeActiveColorHexSubMenu2",(function(){return $t})),o.d(n,"onChangeActiveColorPaletteSubMenu2",(function(){return Gt})),o.d(n,"onChangeActiveColorFieldsSubMenu2",(function(){return Ut})),o.d(n,"onChangeBgActiveColorHexSubMenu2",(function(){return Kt})),o.d(n,"onChangeBgActiveColorPaletteSubMenu2",(function(){return qt})),o.d(n,"onChangeBgActiveColorFieldsSubMenu2",(function(){return Yt})),o.d(n,"onChangeColorHexMMenu2",(function(){return st})),o.d(n,"onChangeColorPaletteMMenu2",(function(){return ct})),o.d(n,"onChangeColorFieldsMMenu2",(function(){return dt})),o.d(n,"onChangeHoverColorHexMMenu2",(function(){return ut})),o.d(n,"onChangeHoverColorPaletteMMenu2",(function(){return pt})),o.d(n,"onChangeHoverColorFieldsMMenu2",(function(){return bt})),o.d(n,"onChangeColorHexSubMenu2",(function(){return mt})),o.d(n,"onChangeColorPaletteSubMenu2",(function(){return ht})),o.d(n,"onChangeColorFieldsSubMenu2",(function(){return gt})),o.d(n,"onChangeHoverColorHexSubMenu2",(function(){return vt})),o.d(n,"onChangeHoverColorPaletteSubMenu2",(function(){return ft})),o.d(n,"onChangeHoverColorFieldsSubMenu2",(function(){return yt})),o.d(n,"onChangeColorHexIconMenu2",(function(){return Ot})),o.d(n,"onChangeColorPaletteIconMenu2",(function(){return St})),o.d(n,"onChangeColorFieldsIconMenu2",(function(){return Ct})),o.d(n,"onChangeTabletColorHexIconMMenu2",(function(){return xt})),o.d(n,"onChangeTabletColorPaletteIconMMenu2",(function(){return jt})),o.d(n,"onChangeTabletColorFieldsIconMMenu2",(function(){return Bt})),o.d(n,"onChangeMobileColorHexIconMMenu2",(function(){return Pt})),o.d(n,"onChangeMobileColorPaletteIconMMenu2",(function(){return wt})),o.d(n,"onChangeMobileColorFieldsIconMMenu2",(function(){return Tt})),o.d(n,"onChangeActiveColorHexMMenu2",(function(){return Xt})),o.d(n,"onChangeActiveColorPaletteMMenu2",(function(){return Zt})),o.d(n,"onChangeActiveColorFieldsMMenu2",(function(){return Jt})),o.d(n,"onChangeBgColorHexMMenu2",(function(){return zt})),o.d(n,"onChangeBgColorPaletteMMenu2",(function(){return Et})),o.d(n,"onChangeBgColorFieldsMMenu2",(function(){return kt})),o.d(n,"onChangeBgColorHexSubMenu2",(function(){return Ht})),o.d(n,"onChangeBgColorPaletteSubMenu2",(function(){return Ft})),o.d(n,"onChangeBgColorFieldsSubMenu2",(function(){return _t})),o.d(n,"onChangeBgHoverColorHexSubMenu2",(function(){return Rt})),o.d(n,"onChangeBgHoverColorPaletteSubMenu2",(function(){return Mt})),o.d(n,"onChangeBgHoverColorFieldsSubMenu2",(function(){return Lt})),o.d(n,"onChangeBorderColorHexMMenu2",(function(){return Wt})),o.d(n,"onChangeBorderColorPaletteMMenu2",(function(){return It})),o.d(n,"onChangeBorderColorFieldsMMenu2",(function(){return Nt})),o.d(n,"onChangeBorderColorHexSubMenu2",(function(){return At})),o.d(n,"onChangeBorderColorPaletteSubMenu2",(function(){return Dt})),o.d(n,"onChangeBorderColorFieldsSubMenu2",(function(){return Vt})),o.d(n,"onChangeTypography",(function(){return oo})),o.d(n,"onChangeTypographyTablet",(function(){return no})),o.d(n,"onChangeTypographyMobile",(function(){return ao})),o.d(n,"tabletSyncOnChange",(function(){return i.g})),o.d(n,"mobileSyncOnChange",(function(){return i.f})),o.d(n,"keySyncOnChange",(function(){return i.d})),o.d(n,"validateKeyByProperty",(function(){return i.h})),o.d(n,"onChangeTypography2",(function(){return so}));var a=o(2),r=o(10),i=o(25);function l(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function s(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?l(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):l(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function c(e){return e.onChange.reduce((t,o)=>{const a=n[o](e);return Object.assign(t,a)},{})}function d({v:e,device:t,state:o,me:n,childs:a,value:l,dragEnd:c=!0,tempZero:d=!1}){const u=e=>Object(i.a)({key:e,device:t,state:o});let p={};var b;return b=n,(Object(i.b)({v:e,key:b,device:t,state:o})!==l||c)&&(p=s(s({[u(n)]:l},a?a.reduce((e,t)=>(e[u(t)]=l,e),{}):{}),c&&(d||!d&&0!==l&&""!==l)?s({[u("temp"+Object(r.c)(n))]:l},a?a.reduce((e,t)=>(e[u("temp"+Object(r.c)(t))]=l,e),{}):{}):{})),p}function u({v:e,device:t,state:o,me:n,childs:a,current:l,value:c,dragEnd:d=!0,tempZero:u=!1}){const p=e=>Object(i.a)({key:e,device:t,state:o});let b={};var m;return m=l,(Object(i.b)({v:e,key:m,device:t,state:o})!==c||d)&&(b=s(s({[p(l)]:c},d&&(u||!u&&0!==c&&""!==c)?{[p("temp"+Object(r.c)(l))]:c}:{}),a.filter(e=>e!==l).every(t=>e[t]===c)?s({[p(n)]:c},d&&(u||!u&&0!==c&&""!==c)?{[p("temp"+Object(r.c)(n))]:c}:{}):{})),b}function p({v:e,device:t,state:o,parent:n,childs:a,value:l,sliderDragEnd:c=!0,temp:d=!1,tempZero:u=!1}){const p=s({[Object(i.a)({key:n,device:t,state:o})]:l},a.reduce((e,n)=>(e[Object(i.a)({key:n,device:t,state:o})]=l,e),{})),b=d&&!u?s({[Object(i.a)({key:"temp"+Object(r.c)(n),device:t,state:o})]:l>0&&c?l:Object(i.b)({v:e,key:"temp"+Object(r.c)(n),device:t,state:o})},a.reduce((n,a)=>(n[Object(i.a)({key:"temp"+Object(r.c)(a),device:t,state:o})]=l>0&&c?l:Object(i.b)({v:e,key:"temp"+Object(r.c)(a),device:t,state:o}),n),{})):d?s({[Object(i.a)({key:"temp"+Object(r.c)(n),device:t,state:o})]:l},a.reduce((e,n)=>(e[Object(i.a)({key:"temp"+Object(r.c)(n),device:t,state:o})]=l,e),{})):{};return Object.assign(p,b)}function b({v:e,device:t,state:o,parent:n,childs:a,current:l,value:s,temp:c=!1,tempZero:d=!1}){const u=a.filter(e=>e!==l).every(t=>e[t]===s)?s:Object(i.b)({v:e,key:n,device:t,state:o}),p=a.filter(e=>e!==l).every(t=>e[t]===s)?s:s>0?Object(i.b)({v:e,key:"temp"+Object(r.c)(n),device:t,state:o}):Object(i.b)({v:e,key:n,device:t,state:o});return c&&d?{[Object(i.a)({key:n,device:t,state:o})]:u,[Object(i.a)({key:"temp"+Object(r.c)(n),device:t,state:o})]:p}:{[Object(i.a)({key:n,device:t,state:o})]:u}}function m({v:e,device:t,state:o,childs:n,current:a,value:l,temp:c=!1}){return c?s({[Object(i.a)({key:a,device:t,state:o})]:l,[Object(i.a)({key:"temp"+Object(r.c)(a),device:t,state:o})]:l},n.filter(e=>e!==a).reduce((n,a)=>(n[Object(i.a)({key:"temp"+Object(r.c)(a),device:t,state:o})]=0===e[a]?0:Object(i.b)({v:e,key:"temp"+Object(r.c)(a),device:t,state:o}),n),{})):{[Object(i.a)({key:a,device:t,state:o})]:l}}function h({v:e,device:t="desktop",state:o="normal",value:n,dependencies:a}){const l=n=>Object(i.b)({v:e,key:n,device:t,state:o});return Object.entries(a).reduce((a,[s,c])=>{const d=!(0!==n&&""!==n||void 0===c.nullValue||!(c.nullValue.length>0&&c.nullValue.every(t=>""===e[t]||0===e[t])||0===c.nullValue.length)),u=!(0===n||""===n||0!==l(s)&&""!==l(s)&&"off"!==l("boxShadow")||!(c.tempValue.length>0&&c.tempValue.every(t=>""===e[t]||0===e[t])||0===c.tempValue.length)),p=null===l(s)||void 0===l(s);return p&&console.log("onChange "+s+" "+l(s)),p||(a[(e=>Object(i.a)({key:e,device:t,state:o}))(s)]=d?"string"===c.type?"":0:l(u?"temp"+Object(r.c)(s):s)),Object.assign(a,c.childs.reduce((a,l)=>(null===e[Object(i.a)({key:l,device:t,state:o})]||void 0===e[Object(i.a)({key:l,device:t,state:o})]||(a[Object(i.a)({key:l,device:t,state:o})]=0!==n&&""!==n||void 0===c.nullValue||!(c.nullValue.length>0&&c.nullValue.every(t=>""===e[t]||0===e[t])||0===c.nullValue.length)?(n>0||""!==n)&&c.childs.every(n=>0===Object(i.b)({v:e,key:"temp"+Object(r.c)(n),device:t,state:o}))?Object(i.b)({v:e,key:"temp"+Object(r.c)(s),device:t,state:o}):(n>0||""!==n)&&(c.tempValue.length>0&&c.tempValue.every(t=>""===e[t]||0===e[t])||0===c.tempValue.length)?Object(i.b)({v:e,key:"temp"+Object(r.c)(l),device:t,state:o}):Object(i.b)({v:e,key:l,device:t,state:o}):"string"===c.type?"":0),a),{}),c.childs.reduce((a,l)=>(null===e[Object(i.a)({key:"temp"+Object(r.c)(l),device:t,state:o})]||void 0===e[Object(i.a)({key:"temp"+Object(r.c)(l),device:t,state:o})]||(a[Object(i.a)({key:"temp"+Object(r.c)(l),device:t,state:o})]=(n>0||""!==n)&&c.childs.every(n=>0===Object(i.b)({v:e,key:"temp"+Object(r.c)(n),device:t,state:o}))?Object(i.b)({v:e,key:s,device:t,state:o}):Object(i.b)({v:e,key:"temp"+Object(r.c)(l),device:t,state:o})),a),{})),a},{})}function g({v:e,device:t,state:o,childs:n,current:a,value:l,dependencies:s}){return Object.entries(s).reduce((s,[c,d])=>(null===e[c]||(s[Object(i.a)({key:c,device:t,state:o})]=(0===l||""===l)&&(n.length>0&&n.filter(e=>e!==a).every(t=>0===e[t])||0===n.length)&&void 0!==d.nullValue&&(d.nullValue.length>0&&d.nullValue.every(t=>""===e[t]||0===e[t])||0===d.nullValue.length)?"string"===d.type?"":0:(l>0||""!==l)&&(d.tempValue.length>0&&d.tempValue.every(t=>""===e[t]||0===e[t])||0===d.tempValue.length)?Object(i.b)({v:e,key:"temp"+Object(r.c)(c),device:t,state:o}):Object(i.b)({v:e,key:c,device:t,state:o})),Object.assign(s,d.childs.reduce((s,c)=>(null===e[c]||(s[Object(i.a)({key:c,device:t,state:o})]=(0===l||""===l)&&(n.length>0&&n.filter(e=>e!==a).every(t=>0===e[t])||0===n.length)&&(d.nullValue.length>0&&d.nullValue.every(t=>""===e[t]||0===e[t])||0===d.nullValue.length)?"string"===d.type?"":0:(l>0||""!==l)&&0===d.tempValue.length?Object(i.b)({v:e,key:"temp"+Object(r.c)(c),device:t,state:o}):Object(i.b)({v:e,key:c,device:t,state:o})),s),{})),s),{})}function v({device:e,state:t,width:o,height:n,extension:a,src:r,x:l,y:s,population:c,isChanged:d}){return"image"===d?{[Object(i.a)({key:"bgImageWidth",device:e,state:t})]:o,[Object(i.a)({key:"bgImageHeight",device:e,state:t})]:n,[Object(i.a)({key:"bgImageExtension",device:e,state:t})]:a,[Object(i.a)({key:"bgImageSrc",device:e,state:t})]:r}:"population"===d?{[Object(i.a)({key:"bgPopulation",device:e,state:t})]:c}:{[Object(i.a)({key:"bgPositionX",device:e,state:t})]:l,[Object(i.a)({key:"bgPositionY",device:e,state:t})]:s}}function f({v:e,device:t,state:o,src:n,isChanged:a}){const r=""!==n&&1===Object(i.b)({v:e,key:"bgColorOpacity",device:t,state:o})?.9:Object(i.b)({v:e,key:"bgColorOpacity",device:t,state:o}),l=""!==n&&1===Object(i.b)({v:e,key:"bgColorOpacity",device:t,state:o})?.9:Object(i.b)({v:e,key:"tempBgColorOpacity",device:t,state:o});return"image"===a?{[Object(i.a)({key:"bgColorOpacity",device:t,state:o})]:r,[Object(i.a)({key:"tempBgColorOpacity",device:t,state:o})]:l}:{}}function y({v:e,device:t,state:o,src:n}){return h({v:e,device:t,state:o,value:n,dependencies:{borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bgColorOpacity","borderColorOpacity"],tempValue:[]}}})}function O({v:e,device:t,src:o}){return"desktop"===t||"mobile"===t?{mobilePaddingRight:o?e.tempMobilePaddingRight:0,mobilePaddingLeft:o?e.tempMobilePaddingLeft:0}:{}}function S(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function C(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?S(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):S(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function x({v:e,device:t,state:o,borderStyle:n,prefix:a=""}){const l=e=>Object(i.a)({key:e,device:t,state:o}),s=Object(r.b)(a,"border"),c=Object(r.b)(s,"style"),d=Object(r.b)("temp",c);return{[l(c)]:n,[l(d)]:""!==n?n:(u=d,Object(i.b)({v:e,key:u,device:t,state:o}))};var u}function j({v:e,device:t,state:o,borderStyle:n,prefix:a=""}){const i=Object(r.b)(a,"border");return h({v:e,device:t,state:o,value:n,dependencies:{[Object(r.b)(i,"colorOpacity")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"colorPalette")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"width")]:{childs:[Object(r.b)(i,"topWidth"),Object(r.b)(i,"rightWidth"),Object(r.b)(i,"bottomWidth"),Object(r.b)(i,"leftWidth")],nullValue:[],tempValue:[]}}})}function B({v:e,device:t,state:o,borderStyle:n}){return h({v:e,device:t,state:o,value:n,dependencies:{borderColorOpacity:{childs:[],nullValue:[],tempValue:[]},borderColorPalette:{childs:[],nullValue:[],tempValue:[]},borderWidth:{childs:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"],nullValue:[],tempValue:[]},borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bgColorOpacity","bgImageSrc"],tempValue:[]}}})}function P({v:e,device:t,state:o,hex:n,opacity:a,prefix:l="",isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u=Object(r.b)(l,"border"),p=Object(r.b)(u,"colorHex"),b=Object(r.b)(u,"colorOpacity"),m=Object(r.b)("temp",b),h=(a=I({v:e,device:t,state:o,opacity:a,prefix:l,isChanged:s}))>0&&c?a:(g=m,Object(i.b)({v:e,key:g,device:t,state:o}));var g;return{[d(p)]:n,[d(b)]:a,[d(m)]:h}}function w({v:e,device:t,state:o,opacity:n,prefix:a="",isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d=Object(r.b)(a,"border"),u=Object(r.b)(d,"colorPalette"),p=Object(r.b)("temp",u);n=I({v:e,device:t,state:o,opacity:n,prefix:a,isChanged:l});const b="hex"===l||0===n?"":c(n>0?p:u),m="hex"===l?"":c(p);return{[s(u)]:b,[s(p)]:m}}function T({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:i=""}){const l=Object(r.b)(i,"border"),s={[Object(r.b)(l,"style")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"width")]:{childs:[Object(r.b)(l,"topWidth"),Object(r.b)(l,"rightWidth"),Object(r.b)(l,"bottomWidth"),Object(r.b)(l,"leftWidth")],nullValue:[],tempValue:[]}};return h({v:e,device:t,state:o,value:n=I({v:e,device:t,state:o,opacity:n,prefix:i,isChanged:a}),dependencies:s})}function z({v:e,device:t,state:o,opacity:n,isChanged:a}){return h({v:e,device:t,state:o,value:n=I({v:e,device:t,state:o,opacity:n,isChanged:a}),dependencies:{borderStyle:{childs:[],nullValue:[],tempValue:[]},borderWidth:{childs:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"],nullValue:[],tempValue:[]},borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bgColorOpacity","bgImageSrc"],tempValue:[]}}})}function E({v:e,device:t,opacity:o,isChanged:n}){if("desktop"===t||"tablet"===t){return{tabletPaddingRight:0===(o=I({v:e,device:t,opacity:o,isChanged:n}))?0:"hex"===n||o>0?e.tempTabletPaddingRight:e.tabletPaddingRight,tabletPaddingLeft:0===o?0:"hex"===n||o>0?e.tempTabletPaddingLeft:e.tabletPaddingLeft}}return{}}function k({v:e,device:t,opacity:o,isChanged:n}){if("desktop"===t||"mobile"===t){return{mobilePaddingRight:0===(o=I({v:e,device:t,opacity:o,isChanged:n}))?0:"hex"===n||o>0?e.tempMobilePaddingRight:e.mobilePaddingRight,mobilePaddingLeft:0===o?0:"hex"===n||o>0?e.tempMobilePaddingLeft:e.mobilePaddingLeft}}return{}}function H({device:e,state:t,palette:o,prefix:n=""}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l=Object(r.b)(n,"border"),s=Object(r.b)(l,"colorPalette"),c=Object(r.b)("temp",s);return{[a(s)]:o,[a(c)]:o}}function F({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:l=""}){const s=Object(r.b)(l,"border"),c=Object(r.b)(s,"colorOpacity");return n=I({v:e,device:t,state:o,opacity:n,prefix:l,isChanged:a}),{[(d=c,Object(i.a)({key:d,device:t,state:o}))]:n};var d}function _({device:e,state:t,type:o,prefix:n=""}){const a=Object(r.b)(n,"border"),l=Object(r.b)(a,"widthType");return{[(s=l,Object(i.a)({key:s,device:e,state:t}))]:o};var s}function R({v:e,device:t,state:o,value:n,sliderDragEnd:a,prefix:i=""}){const l=Object(r.b)(i,"border");return p({v:e,device:t,state:o,parent:Object(r.b)(l,"width"),childs:[Object(r.b)(l,"topWidth"),Object(r.b)(l,"rightWidth"),Object(r.b)(l,"bottomWidth"),Object(r.b)(l,"leftWidth")],value:n,sliderDragEnd:a,temp:!0,tempZero:!1})}function M({v:e,device:t,state:o,value:n,prefix:a=""}){const i=Object(r.b)(a,"border"),l=Object(r.b)(i,"style"),s=Object(r.b)(i,"radius"),c=Object(r.b)(i,"colorOpacity"),d=Object(r.b)(i,"colorPalette");return h({v:e,device:t,state:o,value:n,dependencies:{[l]:{childs:[],nullValue:[],tempValue:[]},[s]:{childs:[Object(r.b)(i,"topLeftRadius"),Object(r.b)(i,"topRightRadius"),Object(r.b)(i,"bottomLeftRadius"),Object(r.b)(i,"bottomRightRadius")],nullValue:["bgColorOpacity","bgImageSrc"],tempValue:[]},[c]:{childs:[],nullValue:[],tempValue:[]},[d]:{childs:[],nullValue:[],tempValue:[]}}})}function L({v:e,device:t,state:o,current:n,value:a,prefix:i=""}){const l=Object(r.b)(i,"border"),s=Object(r.b)(l,"width"),c=[Object(r.b)(l,"topWidth"),Object(r.b)(l,"rightWidth"),Object(r.b)(l,"bottomWidth"),Object(r.b)(l,"leftWidth")];return C(C({},m({v:e,device:t,state:o,childs:c,current:n,value:a,temp:!0})),b({v:e,device:t,state:o,parent:s,childs:c,current:n,value:a,temp:!0}))}function W({v:e,device:t,state:o,current:n,value:a,prefix:i=""}){const l=Object(r.b)(i,"border"),s=Object(r.b)(l,"width"),c=[Object(r.b)(l,"topWidth"),Object(r.b)(l,"rightWidth"),Object(r.b)(l,"bottomWidth"),Object(r.b)(l,"leftWidth")],d=Object(r.b)(l,"style"),u=Object(r.b)(l,"radius"),p=Object(r.b)(l,"colorOpacity"),b=Object(r.b)(l,"colorPalette");return g({v:e,device:t,state:o,parent:s,childs:c,current:n,value:a,dependencies:{[d]:{childs:[],nullValue:[],tempValue:[]},[u]:{childs:[Object(r.b)(l,"topLeftRadius"),Object(r.b)(l,"topRightRadius"),Object(r.b)(l,"bottomLeftRadius"),Object(r.b)(l,"bottomRightRadius")],nullValue:["bgColorOpacity","bgImageSrc"],tempValue:[]},[p]:{childs:[],nullValue:[],tempValue:[]},[b]:{childs:[],nullValue:[],tempValue:[]}}})}function I({v:e,device:t,state:o,prefix:n="",opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c=Object(r.b)(n,"border"),d=Object(r.b)(c,"colorOpacity"),u=Object(r.b)("temp",d);return"hex"!==l&&"palette"!==l||0!==s(d)?void 0===a?s(d):a:s(u)}function N(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function A(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?N(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):N(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function D({v:e,device:t,state:o,value:n,sliderDragEnd:a,prefix:i=""}){return p({v:e,device:t,state:o,parent:Object(r.b)(i,"borderRadius"),childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"].map(e=>Object(r.b)(i,e)),value:n,sliderDragEnd:a,temp:!0,tempZero:!0})}function V({v:e,device:t,state:o,value:n,prefix:a=""}){return h({v:e,device:t,state:o,value:n,tempZero:!0,dependencies:{borderStyle:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]},borderWidth:{childs:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"].map(e=>Object(r.b)(a,e)),tempValue:["bgColorOpacity","bgImageSrc"]},borderColorOpacity:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]},borderColorPalette:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]}}})}function $({v:e,device:t,state:o,value:n,current:a,prefix:i=""}){const l=Object(r.b)(i,a),s=Object(r.b)(i,"borderRadius"),c=["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"].map(e=>Object(r.b)(i,e));return A(A({},m({v:e,device:t,childs:c,state:o,current:l,value:n,temp:!0})),b({v:e,device:t,state:o,parent:s,childs:c,current:l,value:n,temp:!0,tempZero:!0}))}function G({v:e,device:t,state:o,value:n,current:a,prefix:i=""}){const l=Object(r.b)(i,a);return A({},g({v:e,device:t,state:o,parent:Object(r.b)(i,"borderRadius"),childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"].map(e=>Object(r.b)(i,e)),current:l,value:n,dependencies:{borderStyle:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]},borderWidth:{childs:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"].map(e=>Object(r.b)(i,e)),tempValue:["bgColorOpacity","bgImageSrc"]},borderColorOpacity:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]},borderColorPalette:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]}}}))}function U({v:e,device:t,state:o,prefix:n="color",hex:a,opacity:l,isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u="temp"+Object(r.c)(n),p=(l=X({v:e,device:t,state:o,prefix:n,opacity:l,isChanged:s}))>0&&c?l:(b=Object(r.b)(u,"opacity"),Object(i.b)({v:e,key:b,device:t,state:o}));var b;return{[d(Object(r.b)(n,"hex"))]:a,[d(Object(r.b)(n,"opacity"))]:l,[d(Object(r.b)(u,"opacity"))]:p}}function K({v:e,device:t,state:o,prefix:n="color",opacity:a,isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d="temp"+Object(r.c)(n);a=X({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l});const u="hex"===l||0===a?"":c(a>0?Object(r.b)(d,"palette"):Object(r.b)(n,"palette")),p="hex"===l?"":c(Object(r.b)(d,"palette"));return{[s(Object(r.b)(n,"palette"))]:u,[s(Object(r.b)(d,"palette"))]:p}}function q({device:e,state:t,prefix:o="color",palette:n}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l="temp"+Object(r.c)(o);return{[a(Object(r.b)(o,"palette"))]:n,[a(Object(r.b)(l,"palette"))]:n}}function Y({v:e,device:t,state:o,prefix:n="color",opacity:a,isChanged:l="hex"}){return a=X({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l}),{[(s=Object(r.b)(n,"opacity"),Object(i.a)({key:s,device:t,state:o}))]:a};var s}function X({v:e,device:t,state:o,prefix:n="color",opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c="temp"+Object(r.c)(n);return"hex"===l&&0===s(Object(r.b)(n,"opacity"))?s(Object(r.b)(c,"opacity")):void 0===a?s(Object(r.b)(n,"opacity")):a}function Z({v:e,device:t,state:o,bgColorType:n}){const a=e=>Object(i.a)({key:e,device:t,state:o});return{[a("bgColorType")]:n,[a("gradientActivePointer")]:"solid"===n?"startPointer":(r="gradientActivePointer",Object(i.b)({v:e,key:r,device:t,state:o}))};var r}function J({device:e,state:t,startPointer:o,finishPointer:n,activePointer:a}){const r=o=>Object(i.a)({key:o,device:e,state:t});return{[r("gradientStartPointer")]:o,[r("gradientFinishPointer")]:n,[r("gradientActivePointer")]:a}}function Q({v:e,device:t,state:o,prefix:n,hex:a,opacity:l,isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u="temp"+Object(r.c)(n),p=(l=re({v:e,device:t,state:o,prefix:n,opacity:l,isChanged:s}))>0&&c?l:(b=Object(r.b)(u,"colorOpacity"),Object(i.b)({v:e,key:b,device:t,state:o}));var b;return{[d(Object(r.b)(n,"colorHex"))]:a,[d(Object(r.b)(n,"colorOpacity"))]:l,[d(Object(r.b)(u,"colorOpacity"))]:p}}function ee({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d="temp"+Object(r.c)(n);a=re({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l});const u="hex"===l||0===a?"":c(a>0?Object(r.b)(d,"colorPalette"):Object(r.b)(n,"colorPalette")),p="hex"===l?"":c(Object(r.b)(d,"colorPalette"));return{[s(Object(r.b)(n,"colorPalette"))]:u,[s(Object(r.b)(d,"colorPalette"))]:p}}function te({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:r="hex"}){return h({v:e,device:t,state:o,value:a=re({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:r}),dependencies:{borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bgImageSrc","borderColorOpacity"],tempValue:[]}}})}function oe({v:e,device:t,prefix:o,opacity:n,isChanged:a="hex"}){if("desktop"===t||"mobile"===t){return{mobilePaddingRight:0===(n=re({v:e,device:t,prefix:o,opacity:n,isChanged:a}))?0:"hex"===a||n>0?e.tempMobilePaddingRight:e.mobilePaddingRight,mobilePaddingLeft:0===n?0:"hex"===a||n>0?e.tempMobilePaddingLeft:e.mobilePaddingLeft}}return{}}function ne({device:e,state:t,prefix:o,palette:n}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l="temp"+Object(r.c)(o);return{[a(Object(r.b)(o,"colorPalette"))]:n,[a(Object(r.b)(l,"colorPalette"))]:n}}function ae({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l="hex"}){return a=re({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l}),{[(s=Object(r.b)(n,"colorOpacity"),Object(i.a)({key:s,device:t,state:o}))]:a};var s}function re({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c="temp"+Object(r.c)(n);return"hex"!==l&&"palette"!==l||0!==s(Object(r.b)(n,"colorOpacity"))||1!==s(Object(r.b)(c,"colorOpacity"))||""===s("bgImageSrc")?"hex"!==l&&"palette"!==l||0!==s(Object(r.b)(n,"colorOpacity"))?void 0===a?s(Object(r.b)(n,"colorOpacity")):a:s(Object(r.b)(c,"colorOpacity")):.9}function ie({v:e,device:t,state:o,boxShadowType:n,prefix:a=""}){const l=e=>Object(i.a)({key:e,device:t,state:o}),s=Object(r.b)(a,"boxShadow"),c=Object(r.b)("temp",s);return{[l(s)]:n,[l(c)]:""!==n?n:(d=c,Object(i.b)({v:e,key:d,device:t,state:o}))};var d}function le({v:e,device:t,state:o,boxShadowType:n,prefix:a=""}){const i=Object(r.b)(a,"boxShadow");return h({v:e,device:t,state:o,value:n,dependencies:{[Object(r.b)(i,"colorOpacity")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"colorPalette")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"blur")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"spread")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"vertical")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"horizontal")]:{childs:[],nullValue:[],tempValue:[]}}})}function se({v:e,device:t,state:o,hex:n,opacity:a,prefix:l="",isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u=Object(r.b)(l,"boxShadow"),p=Object(r.b)(u,"colorHex"),b=Object(r.b)(u,"colorOpacity"),m=Object(r.b)("temp",b),h=(a=he({v:e,device:t,state:o,opacity:a,prefix:l,isChanged:s}))>0&&c?a:(g=m,Object(i.b)({v:e,key:g,device:t,state:o}));var g;return{[d(p)]:n,[d(b)]:a,[d(m)]:h}}function ce({v:e,device:t,state:o,opacity:n,prefix:a="",isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d=Object(r.b)(a,"boxShadow"),u=Object(r.b)(d,"colorPalette"),p=Object(r.b)("temp",u);n=he({v:e,device:t,state:o,opacity:n,isChanged:l});const b="hex"===l||0===n?"":c(n>0?p:u),m="hex"===l?"":c(p);return{[s(u)]:b,[s(p)]:m}}function de({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:i=""}){const l=Object(r.b)(i,"boxShadow"),s={[l]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"blur")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"spread")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"vertical")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"horizontal")]:{childs:[],nullValue:[],tempValue:[]}};return h({v:e,device:t,state:o,value:n=he({v:e,device:t,state:o,opacity:n,prefix:i,isChanged:a}),dependencies:s})}function ue({device:e,state:t,palette:o,prefix:n=""}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l=Object(r.b)(n,"boxShadow"),s=Object(r.b)(l,"colorPalette"),c=Object(r.b)("temp",s);return{[a(s)]:o,[a(c)]:o}}function pe({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:l=""}){const s=Object(r.b)(l,"boxShadow"),c=Object(r.b)(s,"colorOpacity");return n=he({v:e,device:t,state:o,opacity:n,prefix:l,isChanged:a}),{[(d=c,Object(i.a)({key:d,device:t,state:o}))]:n};var d}function be({device:e,state:t,boxShadowBlur:o=0,boxShadowSpread:n=0,boxShadowVertical:a=0,boxShadowHorizontal:l=0,prefix:s=""}){const c=o=>Object(i.a)({key:o,device:e,state:t}),d=Object(r.b)(s,"boxShadow"),u=Object(r.b)(d,"blur"),p=Object(r.b)(d,"spread"),b=Object(r.b)(d,"vertical"),m=Object(r.b)(d,"horizontal"),h=Object(r.b)("temp",u),g=Object(r.b)("temp",p),v=Object(r.b)("temp",b),f=Object(r.b)("temp",m);return{[c(u)]:o,[c(h)]:o,[c(p)]:n,[c(g)]:n,[c(b)]:a,[c(v)]:a,[c(m)]:l,[c(f)]:l}}function me({v:e,device:t,state:o,boxShadowBlur:n=0,boxShadowSpread:a=0,boxShadowVertical:i=0,boxShadowHorizontal:l=0,prefix:s=""}){const c=Math.max(n,a,i,l),d=Object(r.b)(s,"boxShadow");return h({v:e,device:t,state:o,value:c,dependencies:{[d]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(d,"colorOpacity")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(d,"colorPalette")]:{childs:[],nullValue:[],tempValue:[]}}})}function he({v:e,device:t,state:o,prefix:n="",opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c=Object(r.b)(n,"boxShadow"),d=Object(r.b)(c,"colorOpacity"),u=Object(r.b)("temp",d);return"hex"!==l&&"palette"!==l||0!==s(d)?void 0===a?s(d):a:s(u)}function ge(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ve(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?ge(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):ge(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function fe({v:e,device:t,state:o,me:n="padding",childs:a,value:i,suffix:l,sliderDragEnd:s,prefix:c=""}){const u=[],p=[],b=Object(r.b)(c,n);return a.forEach(e=>{const t=Object(r.b)(c,e);u.push(t),p.push(Object(r.b)(t,"suffix"))}),ve(ve({},d({v:e,device:t,state:o,me:b+"Suffix",childs:p,value:l,dragEnd:s})),d({v:e,device:t,state:o,childs:u,value:i,me:b,dragEnd:s}))}function ye({v:e,device:t,state:o,value:n,suffix:a,sliderDragEnd:i,childs:l,current:s,me:c="padding",prefix:d=""}){const p=[],b=[],m=Object(r.b)(d,c),h=Object(r.b)(d,s);return l.forEach(e=>{const t=Object(r.b)(d,e);p.push(t),b.push(Object(r.b)(t,"suffix"))}),ve(ve({},u({v:e,device:t,state:o,me:m+"Suffix",childs:b,current:h+"Suffix",value:a,dragEnd:i})),u({v:e,device:t,state:o,childs:p,current:h,value:n,me:m,dragEnd:i}))}function Oe(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Se(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Oe(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Oe(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Ce({v:e,device:t,state:o,value:n,suffix:a}){const r=["marginTop","marginRight","marginBottom","marginLeft"],i=[];for(var l=0;l<r.length;l++)i[l]=r[l]+"Suffix";return Se(Se({},p({v:e,device:t,state:o,parent:"marginSuffix",childs:i,value:a})),p({v:e,device:t,state:o,parent:"margin",childs:r,value:n}))}function xe({v:e,device:t,state:o,current:n,value:a,suffix:r}){const l=["marginTop","marginRight","marginBottom","marginLeft"],s=[];for(var c=0;c<l.length;c++)s[c]=l[c]+"Suffix";return Se(Se(Se({[""+Object(i.a)({key:n+"Suffix",device:t,state:o})]:r},m({v:e,device:t,state:o,childs:l,current:n,value:a})),b({v:e,device:t,state:o,parent:"margin",childs:l,current:n,value:a})),b({v:e,device:t,state:o,parent:"marginSuffix",childs:s,current:n+"Suffix",value:r}))}function je({v:e,device:t,state:o,opacity:n,isChanged:a="hex"}){return h({v:e,device:t,state:o,value:n=function({v:e,device:t,state:o,opacity:n,isChanged:a}){return"hex"===a&&0===Object(i.b)({v:e,key:"boxShadowColorOpacity",device:t,state:o})?Object(i.b)({v:e,key:"tempBoxShadowColorOpacity",device:t,state:o}):void 0===n?Object(i.b)({v:e,key:"boxShadowColorOpacity",device:t,state:o}):n}({v:e,device:t,state:o,opacity:n,isChanged:a}),dependencies:{boxShadowBlur:{childs:[],nullValue:[],tempValue:[]},boxShadowVertical:{childs:[],nullValue:[],tempValue:[]}}})}function Be({v:e,device:t,state:o,hex:n,opacity:a,isChanged:r="hex",opacityDragEnd:l=!1}){const s=(a=Ee({v:e,device:t,state:o,opacity:a,isChanged:r}))>0&&l?a:Object(i.b)({v:e,key:"tempBg2ColorOpacity",device:t,state:o});return{[Object(i.a)({key:"bg2ColorHex",device:t,state:o})]:n,[Object(i.a)({key:"bg2ColorOpacity",device:t,state:o})]:a,[Object(i.a)({key:"tempBg2ColorOpacity",device:t,state:o})]:s}}function Pe({v:e,device:t,state:o,opacity:n,isChanged:a="hex"}){n=Ee({v:e,device:t,state:o,opacity:n,isChanged:a});const r="hex"===a||0===n?"":n>0?Object(i.b)({v:e,key:"tempBg2ColorPalette",device:t,state:o}):Object(i.b)({v:e,key:"bg2ColorPalette",device:t,state:o}),l="hex"===a?"":Object(i.b)({v:e,key:"tempBg2ColorPalette",device:t,state:o});return{[Object(i.a)({key:"bg2ColorPalette",device:t,state:o})]:r,[Object(i.a)({key:"tempBg2ColorPalette",device:t,state:o})]:l}}function we({v:e,device:t,state:o,opacity:n,isChanged:a="hex"}){return h({v:e,device:t,state:o,value:n=Ee({v:e,device:t,state:o,opacity:n,isChanged:a}),dependencies:{borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bg2ImageSrc","borderColorOpacity"],tempValue:[]}}})}function Te({device:e,state:t,palette:o}){return{[Object(i.a)({key:"bg2ColorPalette",device:e,state:t})]:o,[Object(i.a)({key:"tempBg2ColorPalette",device:e,state:t})]:o}}function ze({v:e,device:t,state:o,opacity:n,isChanged:a="hex"}){return n=Ee({v:e,device:t,state:o,opacity:n,isChanged:a}),{[Object(i.a)({key:"bg2ColorOpacity",device:t,state:o})]:n}}function Ee({v:e,device:t,state:o,opacity:n,isChanged:a}){return"hex"===a&&0===Object(i.b)({v:e,key:"bg2ColorOpacity",device:t,state:o})&&1===Object(i.b)({v:e,key:"tempBg2ColorOpacity",device:t,state:o})&&""!==Object(i.b)({v:e,key:"bg2ImageSrc",device:t,state:o})?.9:"hex"===a&&0===Object(i.b)({v:e,key:"bg2ColorOpacity",device:t,state:o})?Object(i.b)({v:e,key:"tempBg2ColorOpacity",device:t,state:o}):void 0===n?Object(i.b)({v:e,key:"bg2ColorOpacity",device:t,state:o}):n}function ke({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{borderColorHex:t,borderColorOpacity:o=t!==e.borderColorHex&&0===e.borderColorOpacity?e.tempBorderColorOpacity:o,borderColorPalette:"hex"===n?"":e.borderColorPalette,tempBorderColorOpacity:o>0?o:e.tempBorderColorOpacity,tempBorderColorPalette:"hex"===n?"":e.tempBorderColorPalette,padding:0===o&&0===e.bgColorOpacity?0:o>0?e.tempPadding:e.padding,borderRadiusType:0===o&&0===e.bgColorOpacity?"":o>0?e.tempBorderRadiusType:e.borderRadiusType,fillType:0===o&&0===e.bgColorOpacity?"default":o>0&&0===e.bgColorOpacity?"outline":e.fillType,borderWidth:0===o?0:o>0?e.tempBorderWidth:e.borderWidth,bgColorOpacity:o>0&&e.bgColorOpacity>0?e.tempBgColorOpacity:e.bgColorOpacity,hoverBgColorHex:e.bgColorHex===e.hoverBgColorHex?t:e.hoverBgColorHex,hoverBgColorOpacity:0===o&&0===e.bgColorOpacity?0:e.bgColorOpacity===e.hoverBgColorOpacity?o:e.hoverBgColorOpacity}}function He({v:e,palette:t}){return{borderColorPalette:t,tempBorderColorPalette:t,borderColorOpacity:0===e.borderColorOpacity?e.tempBorderColorOpacity:e.borderColorOpacity,padding:e.tempPadding,borderRadiusType:e.tempBorderRadiusType,fillType:0===e.bgColorOpacity?"outline":e.bgColorOpacity>0?"filled":e.fillType,borderWidth:e.tempBorderWidth}}function Fe({v:e,hex:t,opacity:o,isChanged:n}){return{borderColorPalette:"hex"===n?"":e.borderColorPalette,borderColorHex:t,borderColorOpacity:o}}function _e({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverBorderColorHex:t,hoverBorderColorOpacity:t!==e.hoverBorderColorHex&&0==e.hoverBorderColorOpacity?e.tempHoverBorderColorOpacity:o,hoverBorderColorPalette:"hex"===n?"":e.hoverBorderColorPalette}}function Re({v:e,palette:t}){return{hoverBorderColorPalette:t,hoverBorderColorOpacity:0===e.hoverBorderColorOpacity?e.tempHoverBorderColorOpacity:e.hoverBorderColorOpacity}}function Me({v:e,hex:t,opacity:o,isChanged:n}){return{hoverBorderColorPalette:"hex"===n?"":e.hoverBorderColorPalette,hoverBorderColorHex:t,hoverBorderColorOpacity:o}}var Le=o(14);function We({v:e,hex:t,opacity:o,isChanged:n="hex",opacityDragEnd:a=!1}){return{borderColorHex:t,borderColorOpacity:o=t!==e.borderColorHex&&0===e.borderColorOpacity?e.tempBorderColorOpacity:o,tempBorderColorOpacity:o>0&&a?o:e.tempBorderColorOpacity,borderColorPalette:"hex"===n?"":e.borderColorPalette,tempBorderColorPalette:"hex"===n?"":e.tempBorderColorPalette,paddingRL:0===o&&0===e.bgColorOpacity?0:o>0&&!Le.g?e.tempPaddingRL:e.paddingRL,paddingRight:0===o&&0===e.bgColorOpacity?0:o>0&&!Le.g?e.tempPaddingRight:e.paddingRight,paddingLeft:0===o&&0===e.bgColorOpacity?0:o>0&&!Le.g?e.tempPaddingLeft:e.paddingRight,paddingTB:0!==o||0!==e.bgColorOpacity||Le.g?e.paddingTB:e.tempPaddingTB,paddingTop:0!==o||0!==e.bgColorOpacity||Le.g?e.paddingTop:e.tempPaddingTop,paddingBottom:0!==o||0!==e.bgColorOpacity||Le.g?e.paddingBottom:e.tempPaddingBottom,fillType:0===o&&0===e.bgColorOpacity?"default":o>0&&0===e.bgColorOpacity?"outline":e.fillType,borderRadiusType:0===o&&0===e.bgColorOpacity?"":o>0?e.tempBorderRadiusType:e.borderRadiusType,borderWidth:0===o?0:o>0?e.tempBorderWidth:e.borderWidth,bgColorOpacity:o>0&&e.bgColorOpacity>0?e.tempBgColorOpacity:e.bgColorOpacity,hoverBgColorHex:e.bgColorHex===e.hoverBgColorHex?t:e.hoverBgColorHex,hoverBgColorOpacity:0===o&&0===e.bgColorOpacity?0:e.bgColorOpacity===e.hoverBgColorOpacity?o:e.hoverBgColorOpacity}}function Ie({v:e,palette:t}){return{borderColorPalette:t,tempBorderColorPalette:t,borderColorOpacity:0===e.borderColorOpacity?e.tempBorderColorOpacity:e.borderColorOpacity,borderRadiusType:e.tempBorderRadiusType,fillType:0===e.bgColorOpacity?"outline":e.bgColorOpacity>0?"filled":e.fillType,borderWidth:e.tempBorderWidth}}function Ne({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{borderColorPalette:"hex"===n?"":e.borderColorPalette,borderColorHex:t,borderColorOpacity:o}}function Ae({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverBorderColorHex:t,hoverBorderColorOpacity:t!==e.hoverBorderColorHex&&0==e.hoverBorderColorOpacity?e.tempHoverBorderColorOpacity:o,hoverBorderColorPalette:"hex"===n?"":e.hoverBorderColorPalette}}function De({v:e,palette:t}){return{hoverBorderColorPalette:t,hoverBorderColorOpacity:0===e.hoverBorderColorOpacity?e.tempHoverBorderColorOpacity:e.hoverBorderColorOpacity}}function Ve({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverBorderColorPalette:"hex"===n?"":e.hoverBorderColorPalette,hoverBorderColorHex:t,hoverBorderColorOpacity:o}}function $e({v:e,hex:t,opacity:o,isChanged:n="hex",opacityDragEnd:a=!1}){return{bgColorHex:t,bgColorOpacity:o=t!==e.bgColorHex&&0===e.bgColorOpacity?e.tempBgColorOpacity:o,bgColorPalette:"hex"===n?"":e.bgColorPalette,tempBgColorPalette:"hex"===n?"":e.tempBgColorPalette,tempBgColorOpacity:o>0&&a?o:e.tempBgColorOpacity,borderRadiusType:0===o&&0===e.borderColorOpacity?"":o>0?e.tempBorderRadiusType:e.borderRadiusType,fillType:0===o&&0===e.borderColorOpacity?"default":0===o&&e.borderColorOpacity>0?"outline":o>0?"filled":e.fillType,borderWidth:0===o&&0===e.borderColorOpacity?0:e.borderWidth,borderColorHex:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType||""===e.bgColorPalette&&e.bgColorHex===e.borderColorHex&&"filled"===e.fillType?t:e.borderColorHex,borderColorPalette:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType?"":e.borderColorPalette,tempBorderColorPalette:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType?"":e.tempBorderColorPalette,borderColorOpacity:""===e.bgColorPalette&&e.bgColorHex===e.borderColorHex&&e.bgColorOpacity===e.tempBorderColorOpacity&&"filled"===e.fillType||0===o&&0===e.borderColorOpacity?0:e.borderColorOpacity,hoverBgColorOpacity:0===o&&0===e.borderColorOpacity?0:o>0?e.tempHoverBgColorOpacity:e.hoverBgColorOpacity,hoverBorderColorHex:e.borderColorHex===e.hoverBorderColorHex?t:e.hoverBorderColorHex,hoverBorderColorOpacity:0===o&&0===e.bgColorOpacity?0:e.hoverBorderColorOpacity}}function Ge({v:e,palette:t}){return{bgColorPalette:t,tempBgColorPalette:t,bgColorOpacity:0===e.bgColorOpacity?e.tempBgColorOpacity:e.bgColorOpacity,borderRadiusType:e.tempBorderRadiusType,fillType:"filled",borderColorPalette:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType||""===e.bgColorPalette&&e.bgColorHex===e.borderColorHex&&"filled"===e.fillType?t:e.borderColorPalette,tempBorderColorPalette:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType||""===e.bgColorPalette&&e.bgColorHex===e.borderColorHex&&"filled"===e.fillType?t:e.borderColorPalette,hoverBgColorOpacity:e.tempHoverBgColorOpacity}}function Ue({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{bgColorPalette:"hex"===n?"":e.bgColorPalette,bgColorHex:t,bgColorOpacity:o}}function Ke({v:e,hex:t,opacity:o,isChanged:n="hex",opacityDragEnd:a=!1}){return{hoverBgColorHex:t,hoverBgColorOpacity:o=t!==e.hoverBgColorHex&&0===e.hoverBgColorOpacity?e.tempHoverBgColorOpacity:o,tempHoverBgColorOpacity:o>0&&a?o:e.tempHoverBgColorOpacity,hoverBgColorPalette:"hex"===n?"":e.hoverBgColorPalette,tempHoverBgColorPalette:"hex"===n?"":e.tempHoverBgColorPalette,hoverBorderColorHex:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType||""===e.hoverBgColorPalette&&e.hoverBgColorHex===e.hoverBorderColorHex&&"filled"===e.fillType?t:e.hoverBorderColorHex,hoverBorderColorPalette:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType?"":e.hoverBorderColorPalette,tempHoverBorderColorPalette:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType?"":e.tempHoverBorderColorPalette,hoverBorderColorOpacity:""===e.hoverBgColorPalette&&e.hoverBgColorHex===e.hoverBorderColorHex&&e.hoverBgColorOpacity===e.tempHoverBorderColorOpacity&&"filled"===e.fillType?0:e.hoverBorderColorOpacity}}function qe({v:e,palette:t}){return{hoverBgColorPalette:t,hoverBgColorOpacity:0===e.hoverBgColorOpacity?e.tempHoverBgColorOpacity:e.hoverBgColorOpacity,hoverBorderColorPalette:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType||""===e.hoverBgColorPalette&&e.hoverBgColorHex===e.hoverBorderColorHex&&"filled"===e.fillType?t:e.hoverBorderColorPalette,tempHoverBorderColorPalette:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType||""===e.hoverBgColorPalette&&e.hoverBgColorHex===e.hoverBorderColorHex&&"filled"===e.fillType?t:e.hoverBorderColorPalette}}function Ye({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverBgColorPalette:"hex"===n?"":e.hoverBgColorPalette,hoverBgColorHex:t,hoverBgColorOpacity:o}}function Xe({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{colorHex:t,colorOpacity:o=t!==e.colorHex&&0==e.colorOpacity?e.tempColorOpacity:o,colorPalette:"hex"===n?"":e.colorPalette,tempColorOpacity:o>0&&a?o:e.tempColorOpacity,hoverColorHex:e.colorHex===e.hoverColorHex?t:e.hoverColorHex,hoverColorOpacity:e.colorOpacity===e.hoverColorOpacity?o:e.hoverColorOpacity}}function Ze({v:e,palette:t}){return{colorPalette:t,colorOpacity:0===e.colorOpacity?e.tempColorOpacity:e.colorOpacity}}function Je({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{colorPalette:"hex"===n?"":e.colorPalette,colorHex:t,colorOpacity:o}}function Qe({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverColorHex:t,hoverColorOpacity:t!==e.hoverColorHex&&0==e.hoverColorOpacity?e.tempHoverColorOpacity:o,hoverColorPalette:"hex"===n?"":e.hoverColorPalette}}function et({v:e,palette:t}){return{hoverColorPalette:t,hoverColorOpacity:0===e.hoverColorOpacity?e.tempHoverColorOpacity:e.hoverColorOpacity}}function tt({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverColorPalette:"hex"===n?"":e.hoverColorPalette,hoverColorHex:t,hoverColorOpacity:o}}function ot({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{colorHex:t,colorOpacity:o=t!==e.colorHex&&0===e.colorOpacity?e.tempColorOpacity:o,colorPalette:"hex"===n?"":e.colorPalette,tempColorOpacity:o>0&&a?o:e.tempColorOpacity,hoverColorHex:e.colorHex===e.hoverColorHex?t:e.hoverColorHex,hoverColorOpacity:e.colorOpacity===e.hoverColorOpacity?o:e.hoverColorOpacity}}function nt({v:e,palette:t}){return{colorPalette:t,colorOpacity:0===e.colorOpacity?e.tempColorOpacity:e.colorOpacity,hoverColorPalette:e.colorPalette===e.hoverColorPalette?t:e.hoverColorPalette}}function at({v:e,hex:t,opacity:o,isChanged:n}){return{colorPalette:"hex"===n?"":e.colorPalette,colorHex:t,colorOpacity:o,hoverColorHex:e.colorHex===e.hoverColorHex?t:e.hoverColorHex,hoverColorOpacity:e.colorOpacity===e.hoverColorOpacity?o:e.hoverColorOpacity}}function rt({v:e,hex:t,opacity:o,isChanged:n}){return o=t!==e.colorHex&&0===e.colorOpacity?e.tempColorOpacity:o,{hoverColorHex:t,hoverColorOpacity:t!==e.hoverColorHex&&0===e.hoverColorOpacity?e.tempHoverColorOpacity:o,hoverColorPalette:"hex"===n?"":e.hoverColorPalette}}function it({v:e,palette:t}){return{hoverColorPalette:t,hoverColorOpacity:0===e.hoverColorOpacity?e.tempHoverColorOpacity:e.hoverColorOpacity}}function lt({v:e,hex:t,opacity:o,isChanged:n}){return{hoverColorPalette:"hex"===n?"":e.hoverColorPalette,hoverColorHex:t,hoverColorOpacity:o}}function st({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{mMenuColorHex:t,mMenuColorOpacity:o=t!==e.mMenuColorHex&&0==e.mMenuColorOpacity?e.mMenuTempColorOpacity:o,mMenuColorPalette:"hex"===n?"":e.mMenuColorPalette,mMenuTempColorOpacity:o>0&&a?o:e.mMenuTempColorOpacity,mMenuHoverColorHex:e.mMenuColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.mMenuColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function ct({v:e,palette:t}){return{mMenuColorPalette:t,mMenuColorOpacity:0===e.mMenuColorOpacity?e.mMenuTempColorOpacity:e.mMenuColorOpacity}}function dt({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuColorPalette:"hex"===n?"":e.mMenuColorPalette,mMenuColorHex:t,mMenuColorOpacity:o}}function ut({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuHoverColorHex:t,mMenuHoverColorOpacity:t!==e.mMenuHoverColorHex&&0==e.mMenuHoverColorOpacity?e.mMenuTempHoverColorOpacity:o,mMenuHoverColorPalette:"hex"===n?"":e.mMenuHoverColorPalette}}function pt({v:e,palette:t}){return{mMenuHoverColorPalette:t,mMenuHoverColorOpacity:0===e.mMenuHoverColorOpacity?e.mMenuTempHoverColorOpacity:e.mMenuHoverColorOpacity}}function bt({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuHoverColorPalette:"hex"===n?"":e.mMenuHoverColorPalette,mMenuHoverColorHex:t,mMenuHoverColorOpacity:o}}function mt({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{subMenuColorHex:t,subMenuColorOpacity:o=t!==e.subMenuColorHex&&0===e.subMenuColorOpacity?e.subMenuTempColorOpacity:o,subMenuColorPalette:"hex"===n?"":e.subMenuColorPalette,subMenuTempColorOpacity:o>0&&a?o:e.subMenuTempColorOpacity,subMenuHoverColorHex:e.subMenuColorHex===e.subMenuHoverColorHex?t:e.subMenuHoverColorHex,subMenuHoverColorOpacity:e.subMenuColorOpacity===e.subMenuHoverColorOpacity?o:e.subMenuHoverColorOpacity,mMenuColorHex:e.subMenuColorHex===e.mMenuColorHex?t:e.mMenuColorHex,mMenuColorOpacity:e.subMenuColorOpacity===e.mMenuColorOpacity?o:e.mMenuColorOpacity,mMenuHoverColorHex:e.subMenuColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.subMenuColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function ht({v:e,palette:t}){return{subMenuColorPalette:t,subMenuColorOpacity:0===e.subMenuColorOpacity?e.subMenuTempColorOpacity:e.subMenuColorOpacity,subMenuHoverColorPalette:e.subMenuColorPalette===e.subMenuHoverColorPalette?t:e.subMenuHoverColorPalette,mMenuColorPalette:e.subMenuColorPalette===e.mMenuColorPalette?t:e.mMenuColorPalette,mMenuHoverColorPalette:e.subMenuColorPalette===e.mMenuHoverColorPalette?t:e.mMenuHoverColorPalette}}function gt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuColorPalette:"hex"===n?"":e.subMenuColorPalette,subMenuColorHex:t,subMenuColorOpacity:o,subMenuHoverColorHex:e.subMenuColorHex===e.subMenuHoverColorHex?t:e.subMenuHoverColorHex,subMenuHoverColorOpacity:e.subMenuColorOpacity===e.subMenuHoverColorOpacity?t:e.subMenuHoverColorOpacity,mMenuColorHex:e.subMenuColorHex===e.mMenuColorHex?t:e.mMenuBgColorHex,mMenuColorOpacity:e.subMenuColorOpacity===e.mMenuColorOpacity?o:e.mMenuColorOpacity,mMenuHoverColorHex:e.subMenuColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.subMenuColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function vt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuHoverColorHex:t,subMenuHoverColorOpacity:t!==e.subMenuHoverColorHex&&0===e.subMenuHoverColorOpacity?e.subMenuTempHoverColorOpacity:o,subMenuHoverColorPalette:"hex"===n?"":e.subMenuHoverColorPalette,mMenuHoverColorHex:e.subMenuHoverColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.subMenuHoverColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function ft({v:e,palette:t}){return{subMenuHoverColorPalette:t,subMenuHoverColorOpacity:0===e.subMenuHoverColorOpacity?e.subMenuTempHoverColorOpacity:e.subMenuHoverColorOpacity,mMenuHoverColorPalette:e.subMenuHoverColorPalette===e.mMenuHoverColorPalette?t:e.mMenuHoverColorPalette}}function yt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuHoverColorPalette:"hex"===n?"":e.subMenuHoverColorPalette,subMenuHoverColorHex:t,subMenuHoverColorOpacity:o,mMenuHoverColorHex:e.subMenuHoverColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.subMenuHoverColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function Ot({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuIconColorHex:t,mMenuIconColorOpacity:t!==e.mMenuIconColorHex&&0===e.mMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o,mMenuIconColorPalette:"hex"===n?"":e.mMenuIconColorPalette}}function St({v:e,palette:t}){return{mMenuIconColorPalette:t,mMenuIconColorHex:"",mMenuIconColorOpacity:0===e.mMenuIconColorOpacity?e.mMenuTempIconColorOpacity:e.mMenuIconColorOpacity}}function Ct({v:e,hex:t,opacity:o,isChanged:n}){const a=t!==e.mMenuIconColorHex&&0===e.mMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o;return{mMenuIconColorPalette:"hex"===n?"":e.mMenuIconColorPalette,mMenuIconColorHex:t,mMenuIconColorOpacity:a}}function xt({v:e,hex:t,opacity:o,isChanged:n}){return{tabletMMenuIconColorHex:t,tabletMMenuIconColorOpacity:t!==e.tabletMMenuIconColorHex&&0===e.tabletMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o,tabletMMenuIconColorPalette:"hex"===n?"":e.tabletMMenuIconColorPalette}}function jt({v:e,palette:t}){return{tabletMMenuIconColorPalette:t,tabletMMenuIconColorHex:"",tabletMMenuIconColorOpacity:0===e.tabletMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:e.tabletMMenuIconColorOpacity}}function Bt({v:e,hex:t,opacity:o,isChanged:n}){const a=t!==e.tabletMMenuIconColorHex&&0===e.tabletMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o;return{tabletMMenuIconColorPalette:"hex"===n?"":e.tabletMMenuIconColorPalette,tabletMMenuIconColorHex:t,tabletMMenuIconColorOpacity:a}}function Pt({v:e,hex:t,opacity:o,isChanged:n}){return{mobileMMenuIconColorHex:t,mobileMMenuIconColorOpacity:t!==e.mobileMMenuIconColorHex&&0===e.mobileMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o,mobileMMenuIconColorPalette:"hex"===n?"":e.mobileMMenuIconColorPalette}}function wt({v:e,palette:t}){return{mobileMMenuIconColorPalette:t,mobileMMenuIconColorHex:"",mobileMMenuIconColorOpacity:0===e.mobileMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:e.mobileMMenuIconColorOpacity}}function Tt({v:e,hex:t,opacity:o,isChanged:n}){const a=t!==e.mobileMMenuIconColorHex&&0===e.mobileMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o;return{mobileMMenuIconColorPalette:"hex"===n?"":e.mobileMMenuIconColorPalette,mobileMMenuIconColorHex:t,mobileMMenuIconColorOpacity:a}}function zt({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{mMenuBgColorHex:t,mMenuBgColorOpacity:o=t!==e.mMenuBgColorHex&&0==e.mMenuBgColorOpacity?e.mMenuTempBgColorOpacity:o,mMenuBgColorPalette:"hex"===n?"":e.mMenuBgColorPalette,mMenuTempBgColorOpacity:o>0&&a?o:e.mMenuTempBgColorOpacity}}function Et({v:e,palette:t}){return{mMenuBgColorPalette:t,mMenuBgColorOpacity:0===e.mMenuBgColorOpacity?e.mMenuTempBgColorOpacity:e.mMenuBgColorOpacity}}function kt({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuBgColorPalette:"hex"===n?"":e.mMenuBgColorPalette,mMenuBgColorHex:t,mMenuBgColorOpacity:o}}function Ht({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a=!1}){return{subMenuBgColorHex:t,subMenuBgColorOpacity:o=t!==e.subMenuBgColorHex&&0===e.subMenuBgColorOpacity?e.subMenuTempBgColorOpacity:o,subMenuBgColorPalette:"hex"===n?"":e.subMenuBgColorPalette,subMenuTempBgColorOpacity:o>0&&a?o:e.subMenuTempBgColorOpacity,subMenuHoverBgColorHex:e.subMenuBgColorHex===e.subMenuHoverBgColorHex?t:e.subMenuHoverBgColorHex,subMenuHoverBgColorOpacity:e.subMenuBgColorOpacity===e.subMenuHoverBgColorOpacity?t:e.subMenuHoverBgColorOpacity,mMenuBgColorHex:e.subMenuBgColorHex===e.mMenuBgColorHex?t:e.mMenuBgColorHex,mMenuBgColorOpacity:e.subMenuBgColorOpacity===e.mMenuBgColorOpacity?o:e.mMenuBgColorOpacity}}function Ft({v:e,palette:t}){return{subMenuBgColorPalette:t,subMenuBgColorOpacity:0===e.subMenuBgColorOpacity?e.subMenuTempBgColorOpacity:e.subMenuBgColorOpacity,subMenuHoverBgColorPalette:e.subMenuBgColorPalette===e.subMenuHoverBgColorPalette?t:e.subMenuHoverBgColorPalette,mMenuBgColorPalette:e.subMenuBgColorPalette===e.mMenuBgColorPalette?t:e.mMenuBgColorPalette}}function _t({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuBgColorPalette:"hex"===n?"":e.subMenuBgColorPalette,subMenuBgColorHex:t,subMenuBgColorOpacity:o,subMenuHoverBgColorHex:e.subMenuBgColorHex===e.subMenuHoverBgColorHex?t:e.subMenuHoverBgColorHex,subMenuHoverBgColorOpacity:e.subMenuBgColorOpacity===e.subMenuHoverBgColorOpacity?t:e.subMenuHoverBgColorOpacity,mMenuBgColorHex:e.subMenuBgColorHex===e.mMenuBgColorHex?t:e.mMenuBgColorHex,mMenuBgColorOpacity:e.subMenuBgColorOpacity===e.mMenuBgColorOpacity?o:e.mMenuBgColorOpacity}}function Rt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuHoverBgColorHex:t,subMenuHoverBgColorOpacity:t!==e.subMenuHoverBgColorHex&&0===e.subMenuHoverBgColorOpacity?e.subMenuTempHoverBgColorOpacity:o,subMenuHoverBgColorPalette:"hex"===n?"":e.subMenuHoverBgColorPalette}}function Mt({v:e,palette:t}){return{subMenuHoverBgColorPalette:t,subMenuHoverBgColorOpacity:0===e.subMenuHoverBgColorOpacity?e.subMenuTempHoverBgColorOpacity:e.subMenuHoverBgColorOpacity}}function Lt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuHoverBgColorPalette:"hex"===n?"":e.subMenuHoverBgColorPalette,subMenuHoverBgColorHex:t,subMenuHoverBgColorOpacity:o}}function Wt({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{mMenuBorderColorHex:t,mMenuBorderColorOpacity:o=t!==e.mMenuBorderColorHex&&0==e.mMenuBorderColorOpacity?e.mMenuTempBorderColorOpacity:o,mMenuBorderColorPalette:"hex"===n?"":e.mMenuBorderColorPalette,mMenuTempBorderColorOpacity:o>0&&a?o:e.mMenuTempBorderColorOpacity}}function It({v:e,palette:t}){return{mMenuBorderColorPalette:t,mMenuBorderColorOpacity:0===e.mMenuBorderColorOpacity?e.mMenuTempBorderColorOpacity:e.mMenuBorderColorOpacity}}function Nt({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuBorderColorPalette:"hex"===n?"":e.mMenuBorderColorPalette,mMenuBorderColorHex:t,mMenuBorderColorOpacity:o}}function At({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{subMenuBorderColorHex:t,subMenuBorderColorOpacity:o=t!==e.subMenuBorderColorHex&&0===e.subMenuBorderColorOpacity?e.subMenuTempBorderColorOpacity:o,subMenuBorderColorPalette:"hex"===n?"":e.subMenuBorderColorPalette,subMenuTempBorderColorOpacity:o>0&&a?o:e.subMenuTempBorderColorOpacity,mMenuBorderColorHex:e.subMenuBorderColorHex===e.mMenuBorderColorHex?t:e.mMenuBorderColorHex,mMenuBorderColorOpacity:e.subMenuBorderColorOpacity===e.mMenuBorderColorOpacity?o:e.mMenuBorderColorOpacity}}function Dt({v:e,palette:t}){return{subMenuBorderColorPalette:t,subMenuBorderColorOpacity:0===e.subMenuBorderColorOpacity?e.subMenuTempBorderColorOpacity:e.subMenuBorderColorOpacity,mMenuBorderColorPalette:e.subMenuBorderColorPalette===e.mMenuBorderColorPalette?t:e.mMenuBorderColorPalette}}function Vt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuBorderColorPalette:"hex"===n?"":e.subMenuBorderColorPalette,subMenuBorderColorHex:t,subMenuBorderColorOpacity:o,mMenuBorderColorHex:e.subMenuBorderColorHex===e.mMenuBorderColorHex?t:e.mMenuBorderColorHex,mMenuBorderColorOpacity:e.subMenuBorderColorOpacity===e.mMenuBorderColorOpacity?o:e.mMenuBorderColorOpacity}}function $t({v:e,hex:t,opacity:o,isChanged:n}){return{activeSubMenuColorHex:t,activeSubMenuColorOpacity:t!==e.activeSubMenuColorHex&&0===e.activeSubMenuColorOpacity?e.tempActiveSubMenuColorOpacity:o,activeSubMenuColorPalette:"hex"===n?"":e.activeSubMenuColorPalette,activeMMenuColorHex:e.activeSubMenuColorHex===e.activeMMenuColorHex?t:e.activeMMenuColorHex,activeMMenuColorOpacity:e.activeSubMenuColorOpacity===e.activeMMenuColorOpacity?o:e.activeMMenuColorOpacity}}function Gt({v:e,palette:t}){return{activeSubMenuColorPalette:t,activeSubMenuColorOpacity:0===e.activeSubMenuColorOpacity?e.tempActiveSubMenuColorOpacity:e.activeSubMenuColorOpacity,activeMMenuColorPalette:e.activeSubMenuColorPalette===e.activeMMenuColorPalette?t:e.activeMMenuColorPalette}}function Ut({v:e,hex:t,opacity:o,isChanged:n}){return{activeSubMenuColorPalette:"hex"===n?"":e.activeSubMenuColorPalette,activeSubMenuColorHex:t,activeSubMenuColorOpacity:o,activeMMenuColorHex:e.activeSubMenuColorHex===e.activeMMenuColorHex?t:e.activeMMenuColorHex,activeMMenuColorOpacity:e.activeSubMenuColorOpacity===e.activeMMenuColorOpacity?o:e.activeMMenuColorOpacity}}function Kt({v:e,hex:t,opacity:o,isChanged:n}){return{activeSubMenuBgColorHex:t,activeSubMenuBgColorOpacity:t!==e.activeSubMenuBgColorHex&&0===e.activeSubMenuBgColorOpacity?e.tempActiveSubMenuBgColorOpacity:o,activeSubMenuBgColorPalette:"hex"===n?"":e.activeSubMenuBgColorPalette}}function qt({v:e,palette:t}){return{activeSubMenuBgColorPalette:t,activeSubMenuBgColorOpacity:0===e.activeSubMenuBgColorOpacity?e.tempActiveSubMenuBgColorOpacity:e.activeSubMenuBgColorOpacity}}function Yt({v:e,hex:t,opacity:o,isChanged:n}){return{activeSubMenuBgColorPalette:"hex"===n?"":e.activeSubMenuBgColorPalette,activeSubMenuBgColorHex:t,activeSubMenuBgColorOpacity:o}}function Xt({v:e,hex:t,opacity:o,isChanged:n}){return{activeMMenuColorHex:t,activeMMenuColorOpacity:t!==e.activeMMenuColorHex&&0==e.activeMMenuColorOpacity?e.tempActiveMMenuHoverColorOpacity:o,activeMMenuColorPalette:"hex"===n?"":e.activeMMenuColorPalette}}function Zt({v:e,palette:t}){return{activeMMenuColorPalette:t,activeMMenuColorOpacity:0===e.activeMMenuColorOpacity?e.tempActiveMMenuHoverColorOpacity:e.activeMMenuColorOpacity}}function Jt({v:e,hex:t,opacity:o,isChanged:n}){return{activeMMenuColorPalette:"hex"===n?"":e.activeMMenuColorPalette,activeMMenuColorHex:t,activeMMenuColorOpacity:o}}var Qt=o(33);function eo(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function to(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?eo(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):eo(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function oo(e,t){const{fontSize:o,fontFamily:n,fontFamilyType:a,lineHeight:r,letterSpacing:i,fontWeight:l}=""===t.fontStyle?t:Object(Qt.e)(t.fontStyle);return to({fontSize:o,fontFamily:n,fontFamilyType:a,lineHeight:r,letterSpacing:i,fontWeight:l,fontStyle:""},e)}function no(e,t){const{tabletFontSize:o,tabletLineHeight:n,tabletLetterSpacing:a,tabletFontWeight:r}=""===t.tabletFontStyle?t:Object(Qt.e)(t.tabletFontStyle);return to({tabletFontSize:o,tabletLineHeight:n,tabletLetterSpacing:a,tabletFontWeight:r,tabletFontStyle:""},e)}function ao(e,t){const{mobileFontSize:o,mobileLineHeight:n,mobileLetterSpacing:a,mobileFontWeight:r}=""===t.mobileFontStyle?t:Object(Qt.e)(t.mobileFontStyle);return to({mobileFontSize:o,mobileLineHeight:n,mobileLetterSpacing:a,mobileFontWeight:r,mobileFontStyle:""},e)}var ro=o(13);function io(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function lo(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?io(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):io(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function so({v:e,prefix:t="",current:o,value:n,weights:a,type:l,device:s,state:c}){const d=Object(i.a)({key:Object(r.b)(t,"fontStyle"),device:s,state:c}),u=Object(i.a)({key:Object(r.b)(t,"fontFamily"),device:s,state:c}),p=Object(i.a)({key:Object(r.b)(t,"fontFamilyType"),device:s,state:c}),b=Object(i.a)({key:Object(r.b)(t,"fontSize"),device:s,state:c}),m=Object(i.a)({key:Object(r.b)(t,"lineHeight"),device:s,state:c}),h=Object(i.a)({key:Object(r.b)(t,"letterSpacing"),device:s,state:c}),g=Object(i.a)({key:Object(r.b)(t,"fontWeight"),device:s,state:c}),v=Object(ro.e)("fontFamilyType",Object(i.b)({v:e,key:Object(r.b)(t,"fontFamilyType"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),f=Object(ro.e)("fontFamily",Object(i.b)({v:e,key:Object(r.b)(t,"fontFamily"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),y=Object(ro.e)("fontSize",Object(i.b)({v:e,key:Object(r.b)(t,"fontSize"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),O=Object(ro.e)("lineHeight",Object(i.b)({v:e,key:Object(r.b)(t,"lineHeight"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),S=Object(ro.e)("letterSpacing",Object(i.b)({v:e,key:Object(r.b)(t,"letterSpacing"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),C=Object(ro.e)("fontWeight",Object(i.b)({v:e,key:Object(r.b)(t,"fontWeight"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c}));return lo(lo(lo(lo(lo({[d]:""},o===u?{[u]:n,[p]:l}:{[u]:f,[p]:v}),o===b?{[b]:n}:{[b]:y}),o===m?{[m]:n}:{[m]:O}),o===h?{[h]:n}:{[h]:S}),o===g?{[g]:n}:o===u?{[g]:Object(Qt.m)(C,a)}:{[g]:C})}},function(e,t,o){"use strict";o.d(t,"qd",(function(){return a})),o.d(t,"k",(function(){return s})),o.d(t,"l",(function(){return c})),o.d(t,"m",(function(){return d})),o.d(t,"g",(function(){return u})),o.d(t,"p",(function(){return m})),o.d(t,"o",(function(){return h})),o.d(t,"q",(function(){return g})),o.d(t,"r",(function(){return O})),o.d(t,"n",(function(){return S})),o.d(t,"t",(function(){return C})),o.d(t,"s",(function(){return x})),o.d(t,"u",(function(){return j})),o.d(t,"B",(function(){return B})),o.d(t,"h",(function(){return w})),o.d(t,"i",(function(){return T})),o.d(t,"j",(function(){return z})),o.d(t,"ad",(function(){return k})),o.d(t,"b",(function(){return H})),o.d(t,"a",(function(){return F})),o.d(t,"c",(function(){return _})),o.d(t,"yd",(function(){return R})),o.d(t,"wd",(function(){return M})),o.d(t,"Td",(function(){return W})),o.d(t,"Pd",(function(){return I})),o.d(t,"Qd",(function(){return N})),o.d(t,"Od",(function(){return A})),o.d(t,"Rd",(function(){return V})),o.d(t,"Sd",(function(){return D})),o.d(t,"Mb",(function(){return $})),o.d(t,"Lb",(function(){return G})),o.d(t,"Qb",(function(){return U})),o.d(t,"Nb",(function(){return K})),o.d(t,"Ob",(function(){return q})),o.d(t,"Pb",(function(){return Y})),o.d(t,"td",(function(){return X})),o.d(t,"rd",(function(){return Z})),o.d(t,"ud",(function(){return J})),o.d(t,"sd",(function(){return Q})),o.d(t,"vd",(function(){return ee})),o.d(t,"kd",(function(){return te})),o.d(t,"jd",(function(){return oe})),o.d(t,"hd",(function(){return ne})),o.d(t,"id",(function(){return ae})),o.d(t,"nd",(function(){return re})),o.d(t,"ld",(function(){return ie})),o.d(t,"od",(function(){return le})),o.d(t,"md",(function(){return se})),o.d(t,"pd",(function(){return ce})),o.d(t,"gd",(function(){return de})),o.d(t,"fd",(function(){return ue})),o.d(t,"dd",(function(){return pe})),o.d(t,"ed",(function(){return be})),o.d(t,"z",(function(){return he})),o.d(t,"w",(function(){return ge})),o.d(t,"x",(function(){return ve})),o.d(t,"A",(function(){return fe})),o.d(t,"v",(function(){return ye})),o.d(t,"y",(function(){return Oe})),o.d(t,"Kd",(function(){return Ce})),o.d(t,"Jd",(function(){return xe})),o.d(t,"Gd",(function(){return je})),o.d(t,"Hd",(function(){return Be})),o.d(t,"Fd",(function(){return Pe})),o.d(t,"Id",(function(){return we})),o.d(t,"Ed",(function(){return Te})),o.d(t,"Dd",(function(){return ze})),o.d(t,"Ad",(function(){return Ee})),o.d(t,"Bd",(function(){return ke})),o.d(t,"zd",(function(){return He})),o.d(t,"Cd",(function(){return Fe})),o.d(t,"Ld",(function(){return _e})),o.d(t,"Md",(function(){return Re})),o.d(t,"fe",(function(){return We})),o.d(t,"ae",(function(){return Ne})),o.d(t,"be",(function(){return Ae})),o.d(t,"ee",(function(){return De})),o.d(t,"ce",(function(){return Ve})),o.d(t,"de",(function(){return $e})),o.d(t,"Ud",(function(){return Ge})),o.d(t,"Vd",(function(){return Ue})),o.d(t,"Yd",(function(){return Ke})),o.d(t,"Wd",(function(){return qe})),o.d(t,"Xd",(function(){return Ye})),o.d(t,"Wc",(function(){return Xe})),o.d(t,"Yc",(function(){return Ze})),o.d(t,"Zc",(function(){return Je})),o.d(t,"Xc",(function(){return Qe})),o.d(t,"cd",(function(){return tt})),o.d(t,"bd",(function(){return ot})),o.d(t,"xd",(function(){return nt})),o.d(t,"Y",(function(){return at})),o.d(t,"W",(function(){return rt})),o.d(t,"X",(function(){return it})),o.d(t,"Ib",(function(){return lt})),o.d(t,"Zd",(function(){return st})),o.d(t,"bb",(function(){return ct})),o.d(t,"db",(function(){return dt})),o.d(t,"cb",(function(){return ut})),o.d(t,"fb",(function(){return pt})),o.d(t,"gb",(function(){return bt})),o.d(t,"hb",(function(){return mt})),o.d(t,"kb",(function(){return ht})),o.d(t,"lb",(function(){return gt})),o.d(t,"jb",(function(){return vt})),o.d(t,"wc",(function(){return ft})),o.d(t,"xc",(function(){return St})),o.d(t,"sc",(function(){return yt})),o.d(t,"mc",(function(){return Ot})),o.d(t,"pc",(function(){return Ct})),o.d(t,"nc",(function(){return xt})),o.d(t,"oc",(function(){return jt})),o.d(t,"qc",(function(){return Bt})),o.d(t,"uc",(function(){return Pt})),o.d(t,"tc",(function(){return wt})),o.d(t,"rc",(function(){return Tt})),o.d(t,"Nd",(function(){return zt})),o.d(t,"vc",(function(){return Et})),o.d(t,"rb",(function(){return kt})),o.d(t,"R",(function(){return Ht})),o.d(t,"U",(function(){return Ft})),o.d(t,"V",(function(){return _t})),o.d(t,"S",(function(){return Rt})),o.d(t,"T",(function(){return Mt})),o.d(t,"ib",(function(){return Lt})),o.d(t,"O",(function(){return Wt})),o.d(t,"P",(function(){return It})),o.d(t,"J",(function(){return Nt})),o.d(t,"C",(function(){return qt})),o.d(t,"I",(function(){return Yt})),o.d(t,"G",(function(){return At})),o.d(t,"H",(function(){return Dt})),o.d(t,"K",(function(){return Vt})),o.d(t,"L",(function(){return $t})),o.d(t,"F",(function(){return Gt})),o.d(t,"D",(function(){return Ut})),o.d(t,"E",(function(){return Kt})),o.d(t,"Q",(function(){return Xt})),o.d(t,"M",(function(){return Zt})),o.d(t,"N",(function(){return Jt})),o.d(t,"Hb",(function(){return Qt})),o.d(t,"Fb",(function(){return eo})),o.d(t,"Gb",(function(){return to})),o.d(t,"eb",(function(){return oo})),o.d(t,"Pc",(function(){return no})),o.d(t,"Qc",(function(){return ao})),o.d(t,"zc",(function(){return ro})),o.d(t,"yc",(function(){return io})),o.d(t,"Ac",(function(){return lo})),o.d(t,"kc",(function(){return so})),o.d(t,"lc",(function(){return co})),o.d(t,"ic",(function(){return uo})),o.d(t,"jc",(function(){return po})),o.d(t,"dc",(function(){return bo})),o.d(t,"ec",(function(){return mo})),o.d(t,"cc",(function(){return ho})),o.d(t,"gc",(function(){return go})),o.d(t,"hc",(function(){return vo})),o.d(t,"fc",(function(){return fo})),o.d(t,"Z",(function(){return yo})),o.d(t,"ab",(function(){return Oo})),o.d(t,"Rb",(function(){return So})),o.d(t,"Tb",(function(){return xo})),o.d(t,"Sb",(function(){return Co})),o.d(t,"Kb",(function(){return jo})),o.d(t,"Jb",(function(){return Bo})),o.d(t,"Vc",(function(){return Po})),o.d(t,"Tc",(function(){return wo})),o.d(t,"Sc",(function(){return To})),o.d(t,"Rc",(function(){return zo})),o.d(t,"Uc",(function(){return Eo})),o.d(t,"Mc",(function(){return ko})),o.d(t,"Dc",(function(){return Ho})),o.d(t,"Bc",(function(){return Fo})),o.d(t,"Cc",(function(){return _o})),o.d(t,"Ic",(function(){return Ro})),o.d(t,"Jc",(function(){return Mo})),o.d(t,"Kc",(function(){return Lo})),o.d(t,"Lc",(function(){return Wo})),o.d(t,"Gc",(function(){return Io})),o.d(t,"Fc",(function(){return No})),o.d(t,"Hc",(function(){return Ao})),o.d(t,"Ec",(function(){return Do})),o.d(t,"Ab",(function(){return Vo})),o.d(t,"zb",(function(){return $o})),o.d(t,"Bb",(function(){return Go})),o.d(t,"Cb",(function(){return Uo})),o.d(t,"mb",(function(){return Ko})),o.d(t,"qb",(function(){return qo})),o.d(t,"pb",(function(){return Yo})),o.d(t,"ob",(function(){return Xo})),o.d(t,"nb",(function(){return Zo})),o.d(t,"Eb",(function(){return Jo})),o.d(t,"Db",(function(){return Qo})),o.d(t,"xb",(function(){return en})),o.d(t,"yb",(function(){return tn})),o.d(t,"vb",(function(){return on})),o.d(t,"sb",(function(){return nn})),o.d(t,"tb",(function(){return an})),o.d(t,"ub",(function(){return rn})),o.d(t,"wb",(function(){return ln})),o.d(t,"bc",(function(){return sn})),o.d(t,"Ub",(function(){return mn})),o.d(t,"Vb",(function(){return hn})),o.d(t,"Wb",(function(){return bn})),o.d(t,"Xb",(function(){return pn})),o.d(t,"Yb",(function(){return dn})),o.d(t,"Zb",(function(){return cn})),o.d(t,"ac",(function(){return un})),o.d(t,"f",(function(){return gn})),o.d(t,"e",(function(){return vn})),o.d(t,"d",(function(){return fn})),o.d(t,"Oc",(function(){return yn})),o.d(t,"Nc",(function(){return On}));var n=o(3);function a({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"media",device:t})}var r=o(61),i=o(46);const l=e=>"svg"===e;function s({v:e,device:t,state:o}){const a=Object(r.i)({v:e,state:o}),s=Object(n.defaultValueValue)({v:e,key:"media",device:t,state:o}),c=Object(n.defaultValueValue)({v:e,key:"bgImageSrc",device:t,state:o}),d=Object(n.defaultValueValue)({v:e,key:"bgImageExtension",device:t,state:o}),u=Object(n.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:o}),p=Object(n.defaultValueValue)({v:e,key:"media",device:t,state:"hover"}),b=Object(n.defaultValueValue)({v:e,key:"bgImageSrc",device:t,state:"hover"}),m=Object(n.defaultValueValue)({v:e,key:"bgImageExtension",device:t,state:"hover"}),h=Object(n.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:"hover"}),g="image"===p&&""!==b&&""===h?`url(${l(m)?Object(i.f)(b):Object(i.c)(b)})`:"none",v="image"===s&&""!==c&&""===u?`url(${l(d)?Object(i.f)(c):Object(i.c)(c)})`:"none";return"hover"===a?g:v}function c({v:e,device:t,state:o}){const a=Object(r.i)({v:e,state:o}),i=Object(n.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:o}),l=Object(n.defaultValueValue)({v:e,key:"bgPositionX",device:t,state:o}),s=Object(n.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:"hover"}),c=Object(n.defaultValueValue)({v:e,key:"bgPositionX",device:t,state:"hover"});return"hover"===a&&""===s?c+"%":""===i?l+"%":0}function d({v:e,device:t,state:o}){const a=Object(r.i)({v:e,state:o}),i=Object(n.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:o}),l=Object(n.defaultValueValue)({v:e,key:"bgPositionY",device:t,state:o}),s=Object(n.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:"hover"}),c=Object(n.defaultValueValue)({v:e,key:"bgPositionY",device:t,state:"hover"});return"hover"===a&&""===s?c+"%":""===i?l+"%":0}function u({v:e,isSlider:t}){const{bgAttachment:o}=e;return{none:"scroll",fixed:"fixed",animated:"scroll"}[t?"none":o]}var p=o(10);const b=(e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t;function m({v:e,device:t,state:o,prefix:a=""}){o=b(e,o);const r=Object(p.b)(a,"borderRadius");return i=Object(p.b)(r,"type"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function h({v:e,device:t,state:o,prefix:a=""}){o=b(e,o);return r=Object(p.b)(a,"borderRadius"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function g({v:e,device:t,state:o,prefix:a="",current:r="topLeft"}){o=b(e,o);const i=Object(p.b)(a,"border");return l=Object(p.b)(i,r+"Radius"),Object(n.defaultValueValue)({v:e,key:l,device:t,state:o});var l}var v=o(18),f=o(13);const y=(e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t;function O({v:e,device:t,state:o,prefix:a=""}){o=y(e,o);const r=Object(p.b)(a,"border");return i=Object(p.b)(r,"style"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function S({v:e,device:t,state:o,prefix:a=""}){o=y(e,o);const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"border"),l=Object(p.b)(i,"colorHex"),s=Object(p.b)(i,"colorOpacity"),c=Object(p.b)(i,"colorPalette"),{hex:d}=Object(f.d)(r(l),r(c));return Object(v.c)(d,r(s))}function C({v:e,device:t,state:o,prefix:a=""}){o=y(e,o);const r=Object(p.b)(a,"border");return i=Object(p.b)(r,"widthType"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function x({v:e,device:t,state:o,prefix:a=""}){o=y(e,o);const r=Object(p.b)(a,"border");return i=Object(p.b)(r,"width"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function j({v:e,device:t,state:o,prefix:a="",current:r="top"}){o=y(e,o);const i=Object(p.b)(a,"border"),l=Object(p.b)(i,r+"Width");return s=l,Object(n.defaultValueValue)({v:e,key:s,device:t,state:o});var s}function B({v:e,device:t,state:o,prefix:a="color"}){o=((e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t)(e,o);const i=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),{hex:l}=Object(f.d)(i(Object(p.b)(a,"hex")),i(Object(p.b)(a,"palette")));return Object(v.c)(l,i(Object(p.b)(a,"opacity")))}const P=(e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t;function w({v:e,device:t,state:o,prefix:a="bg"}){o=P(e,o);const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),{hex:i}=Object(f.d)(r(Object(p.b)(a,"colorHex")),r(Object(p.b)(a,"colorPalette")));return Object(v.c)(i,r(Object(p.b)(a,"colorOpacity")))}function T({v:e,device:t,state:o,prefix:a="bg"}){o=P(e,o);const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});return Object(f.d)(r(Object(p.b)(a,"colorHex")),r(Object(p.b)(a,"colorPalette"))).hex}function z({v:e,device:t,state:o}){o=E(e,o);const a=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),r=a("bgColorType"),i=a("gradientType"),{hex:l}=Object(f.d)(a("bgColorHex"),a("bgColorPalette")),{hex:s}=Object(f.d)(a("gradientColorHex"),a("gradientColorPalette")),c=a("bgColorOpacity"),d=a("gradientColorOpacity"),u=a("gradientStartPointer"),p=a("gradientFinishPointer"),b=a("gradientLinearDegree"),m=a("gradientRadialDegree");return"gradient"===r?"linear"===i?`linear-gradient(${b}deg, ${Object(v.c)(l,c)} ${u}%, ${Object(v.c)(s,d)} ${p}%)`:`radial-gradient(circle ${m}px, ${Object(v.c)(l,c)} ${u}%, ${Object(v.c)(s,d)} ${p}%)`:"none"}const E=(e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t;function k({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"hoverTransition",device:t,state:o})}function H({v:e,device:t,state:o,prefix:a=""}){const r=(i=Object(p.b)(a,"verticalAlign"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o}));var i;return void 0===r?r:{top:"flex-start",center:"center",bottom:"flex-end"}[r]}function F({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"horizontalAlign",device:t,state:o});return void 0===a?a:{left:"flex-start",center:"center",right:"flex-end"}[a]}function _({v:e,device:t,state:o,prefix:a=""}){return r=Object(p.b)(a,"horizontalAlign"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function R({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"reverseColumns",device:t})}function M({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"reverseColumns",device:t})}var L=o(48);function W({v:e,device:t,state:o,prefix:a=""}){return L.b((r=Object(p.b)(a,"width"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o})));var r}function I({v:e,device:t}){return L.b(Object(n.defaultValueValue)({v:e,key:"height",device:t}))}function N({v:e,device:t}){return L.b(Object(n.defaultValueValue)({v:e,key:"size",device:t}))}function A({v:e,device:t,state:o}){return L.b(Object(n.defaultValueValue)({v:e,key:"containerSize",device:t,state:o}))}function D({v:e,device:t,state:o}){return L.b(Object(n.defaultValueValue)({v:e,key:"textSpacing",device:t,state:o}))}function V({v:e,device:t,state:o}){return L.b((a="spacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o})));var a}function $({v:e,device:t,state:o}){return a="containerType",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function G({v:e,device:t,state:o}){return a="containerSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function U({v:e}){const{slider:t}=e;return t}function K({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"fullHeight",device:t})}function q({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"sectionHeight",device:t})}function Y({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"sectionHeightSuffix",device:t})}function X({v:e,device:t,state:o,prefix:a=""}){const r=Object(p.b)(a,"padding");return i=Object(p.b)(r,"type"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function Z({v:e,device:t,state:o,prefix:a=""}){return r=Object(p.b)(a,"padding"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function J({v:e,device:t,state:o,prefix:a="",current:r="paddingTop"}){return i=Object(p.b)(a,r),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function Q({v:e,device:t,state:o,prefix:a=""}){const r=Object(p.b)(a,"padding");return i=Object(p.b)(r,"suffix"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function ee({v:e,device:t,state:o,prefix:a="",current:r="paddingTopSuffix"}){return i=Object(p.b)(a,r),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function te({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"itemPaddingTop",device:t})+"px"}function oe({v:e,device:t}){return parseFloat(Object(n.defaultValueValue)({v:e,key:"itemPaddingRight",device:t})/2)+"px"}function ne({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"itemPaddingBottom",device:t})+"px"}function ae({v:e,device:t}){return parseFloat(Object(n.defaultValueValue)({v:e,key:"itemPaddingLeft",device:t})/2)+"px"}function re({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"marginType",device:t,state:o})}function ie({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"margin",device:t,state:o})}function le({v:e,device:t,state:o,current:a}){return Object(n.defaultValueValue)({v:e,key:a,device:t,state:o})}function se({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"marginSuffix",device:t,state:o})}function ce({v:e,device:t,state:o,current:a}){return Object(n.defaultValueValue)({v:e,key:a,device:t,state:o})}function de({v:e,device:t}){return-Object(n.defaultValueValue)({v:e,key:"itemPaddingTop",device:t})+"px"}function ue({v:e,device:t}){return parseFloat(-Object(n.defaultValueValue)({v:e,key:"itemPaddingRight",device:t})/2)+"px"}function pe({v:e,device:t}){return-Object(n.defaultValueValue)({v:e,key:"itemPaddingBottom",device:t})+"px"}function be({v:e,device:t}){return parseFloat(-Object(n.defaultValueValue)({v:e,key:"itemPaddingLeft",device:t})/2)+"px"}const me=(e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t;function he({v:e,device:t,state:o,prefix:a=""}){o=me(e,o);return r=Object(p.b)(a,"boxShadow"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function ge({v:e,device:t,state:o,prefix:a=""}){o=me(e,o);const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"boxShadow"),l=Object(p.b)(i,"colorHex"),s=Object(p.b)(i,"colorOpacity"),c=Object(p.b)(i,"colorPalette"),{hex:d}=Object(f.d)(r(l),r(c));return Object(v.c)(d,r(s))}function ve({v:e,device:t,state:o,prefix:a=""}){o=me(e,o);const r=Object(p.b)(a,"boxShadow");return i=Object(p.b)(r,"horizontal"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function fe({v:e,device:t,state:o,prefix:a=""}){o=me(e,o);const r=Object(p.b)(a,"boxShadow");return i=Object(p.b)(r,"vertical"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function ye({v:e,device:t,state:o,prefix:a=""}){o=me(e,o);const r=Object(p.b)(a,"boxShadow");return i=Object(p.b)(r,"blur"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function Oe({v:e,device:t,state:o,prefix:a=""}){o=me(e,o);const r=Object(p.b)(a,"boxShadow");return i=Object(p.b)(r,"spread"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}var Se=o(129);function Ce({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeTopType",device:t,state:o})}function xe({v:e,device:t,state:o}){const{hex:a}=Object(f.d)(Object(n.defaultValueValue)({v:e,key:"shapeTopColorHex",device:t,state:o}),Object(n.defaultValueValue)({v:e,key:"shapeTopColorPalette",device:t,state:o})),r=Object(n.defaultValueValue)({v:e,key:"shapeTopColorOpacity",device:t,state:o}),i=Object(n.defaultValueValue)({v:e,key:"shapeTopType",device:t,state:o});return Object(Se.b)(i,Object(v.c)(a,r))}function je({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeTopHeight",device:t,state:o})}function Be({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeTopHeightSuffix",device:t,state:o})}function Pe({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeTopHorizontal",device:t,state:o})}function we({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeTopIndex",device:t,state:o})}function Te({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeBottomType",device:t,state:o})}function ze({v:e,device:t,state:o}){const{hex:a}=Object(f.d)(Object(n.defaultValueValue)({v:e,key:"shapeBottomColorHex",device:t,state:o}),Object(n.defaultValueValue)({v:e,key:"shapeBottomColorPalette",device:t,state:o})),r=Object(n.defaultValueValue)({v:e,key:"shapeBottomColorOpacity",device:t,state:o}),i=Object(n.defaultValueValue)({v:e,key:"shapeBottomType",device:t,state:o});return Object(Se.b)(i,Object(v.c)(a,r))}function Ee({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeBottomHeight",device:t,state:o})}function ke({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeBottomHeightSuffix",device:t,state:o})}function He({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeBottomHorizontal",device:t,state:o})}function Fe({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeBottomIndex",device:t,state:o})}function _e({v:e,device:t,state:o}){let n;return n="desktop"===t?function({v:e}){const t=e.showOnDesktop;return"on"===t||void 0===t?"":"blur(3px)"}({v:e,device:t,state:o}):"tablet"===t?function({v:e}){const t=e.showOnTablet;return"on"===t||void 0===t?"":"blur(3px)"}({v:e,device:t,state:o}):function({v:e}){const t=e.showOnMobile;return"on"===t||void 0===t?"":"blur(3px)"}({v:e,device:t,state:o}),n}function Re({v:e,device:t,state:o}){let n;return n="desktop"===t?function({v:e}){const t=e.showOnDesktop;return"on"===t||void 0===t?1:.9}({v:e,device:t,state:o}):"tablet"===t?function({v:e}){const t=e.showOnTablet;return"on"===t||void 0===t?1:.9}({v:e,device:t,state:o}):function({v:e}){const t=e.showOnMobile;return"on"===t||void 0===t?1:.9}({v:e,device:t,state:o}),n}var Me=o(2);function Le(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function We(e){return L.b((t="zIndex",Object(n.defaultValueValue)(function(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Le(Object(o),!0).forEach((function(t){Object(Me.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Le(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}({key:t},e))));var t}var Ie=o(33);function Ne({v:e}){const{fontFamily:t,fontFamilyType:o}=e;return void 0===t?t:Object(Ie.d)({family:t,type:o}).family}function Ae({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"fontSize",device:t,state:o})}function De({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"lineHeight",device:t,state:o})}function Ve({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"fontWeight",device:t,state:o})}function $e({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"letterSpacing",device:t,state:o})}function Ge({v:e,device:t,state:o,prefix:a=""}){const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"fontFamily"),l=Object(p.b)(a,"fontFamilyType"),s=Object(p.b)(a,"fontStyle"),c=Object(f.e)("fontFamily",e[i],r(s)),d=Object(f.e)("fontFamilyType",e[l],r(s));return Object(Ie.d)({type:d,family:c}).family}function Ue({v:e,device:t,state:o,prefix:a=""}){const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"fontSize"),l=Object(p.b)(a,"fontStyle");return Object(f.e)((s="fontSize",Object(n.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function Ke({v:e,device:t,state:o,prefix:a=""}){const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"lineHeight"),l=Object(p.b)(a,"fontStyle");return Object(f.e)((s="lineHeight",Object(n.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function qe({v:e,device:t,state:o,prefix:a=""}){const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"fontWeight"),l=Object(p.b)(a,"fontStyle");return Object(f.e)((s="fontWeight",Object(n.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function Ye({v:e,device:t,state:o,prefix:a=""}){const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"letterSpacing"),l=Object(p.b)(a,"fontStyle");return Object(f.e)((s="letterSpacing",Object(n.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function Xe({v:e,device:t,state:o,prefix:a=""}){o=et(e,o);return r=Object(p.b)(a,"brightness"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function Ze({v:e,device:t,state:o,prefix:a=""}){o=et(e,o);return r=Object(p.b)(a,"hue"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function Je({v:e,device:t,state:o,prefix:a=""}){o=et(e,o);return r=Object(p.b)(a,"saturation"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function Qe({v:e,device:t,state:o,prefix:a=""}){o=et(e,o);return r=Object(p.b)(a,"contrast"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}const et=(e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t;function tt({v:e,device:t,state:o}){return a="iconSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function ot({v:e,device:t,state:o}){return a="iconCustomSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function nt({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"reverseColumns",device:t})}function at({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"columnsHeightStyle",device:t})}function rt({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"columnsHeight",device:t})}function it({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"columnsHeightSuffix",device:t})}function lt({v:e,device:t,state:o}){return a="percentage",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function st({v:e,device:t,state:o}){const a=Object(f.e)(Object(n.defaultValueKey)({key:"fontSize",device:t,state:o}),Object(n.defaultValueValue)({v:e,key:"fontSize",device:t,state:o}),Object(n.defaultValueValue)({v:e,key:"fontStyle",device:t,state:o}));return`calc(${a}px - ${(e=>e<=24?20:e>24&&e<=32?40:60)(a)}%)`}function ct({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"spacing",device:t})+"px"}function dt({v:e,device:t,state:o,prefix:n="strokeColor"}){return B({v:e,device:t,state:o,prefix:n})}function ut({v:e,device:t,state:o,prefix:n="fillColor"}){return B({v:e,device:t,state:o,prefix:n})}function pt({v:e}){const{iconPosition:t}=e;return"right"===t?"row-reverse":"row"}function bt({v:e}){const{iconSpacing:t,iconPosition:o}=e;return"right"===o?t+"px":"auto"}function mt({v:e}){const{iconSpacing:t,iconPosition:o}=e;return"left"===o?t+"px":"auto"}function ht({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"gridColumn",device:t})}function gt({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"spacing",device:t})}function vt({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"filterStyle",device:t})}function ft({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"ratio",device:t,state:o});return void 0===a?a:{"1:1":"100%","2:1":"50%","2:3":"150%","3:4":"125%","3:2":"66.67%","4:3":"75%","9:16":"177.78%","16:9":"56.25%","21:9":"42.86%"}[a]}function yt({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"iconSize",device:t,state:o}),r=Math.round(.35*a);return void 0===a?a:r}function Ot({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"ratio",device:t,state:o});return void 0===a?a:"4:3"===a?"#000":"transparent"}function St(){return"pointer-events: none"}function Ct({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"coverImageSrc",device:t,state:o}),r=Object(n.defaultValueValue)({v:e,key:"coverImageExtension",device:t,state:o});return void 0===a?a:""===a?"none":`url(${l=r,"svg"===l?Object(i.f)(a):Object(i.c)(a)})`;var l}function xt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"coverPositionX",device:t,state:o})}function jt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"coverPositionY",device:t,state:o})}function Bt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"coverZoom",device:t,state:o})}function Pt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"iconSizeWidth",device:t,state:o})}function wt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"iconSizeHeight",device:t,state:o})}function Tt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"controlsIconCustomSize",device:t,state:o})}function zt({v:e,device:t,state:o,prefix:a=""}){return r=Object(p.b)(a,"widthSidebar"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function Et({v:e,device:t,state:o,prefix:a=""}){return r=Object(p.b)(a,"widthImage"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function kt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"iconCustomSize",device:t,state:o})}function Ht({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"tempBorderRadiusType",device:t,state:o}),r=Object(n.defaultValueValue)({v:e,key:"borderRadius",device:t,state:o});return void 0===a||"hover"===o?void 0:"rounded"===a?500:r}function Ft({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"iconPosition",device:t,state:o});return void 0===a?void 0:a}function _t({v:e,device:t,state:o}){const n=Ft({v:e,device:t,state:o});return void 0===n?void 0:"left"===n?"row nowrap":"row-reverse nowrap"}function Rt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"iconCustomSize",device:t,state:o})}function Mt({v:e,device:t,state:o}){const a=Ft({v:e,device:t,state:o}),r=Object(n.defaultValueValue)({v:e,key:"iconSpacing",device:t,state:o});return void 0===a||void 0===r?void 0:r}function Lt({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"iconCustomSize",device:t,state:o}),r=Object(n.defaultValueValue)({v:e,key:"iconType",device:t,state:o});return void 0===r||void 0===a?void 0:"outline"===r&&a<=24?1:"outline"===r&&a>24&&a<=32?1.1:"outline"===r&&a>32&&a<=48?1.4:"outline"===r&&a>48&&a<=64?2.3:"outline"===r&&a>64?3:0}function Wt({v:e,device:t,state:o}){return a="width",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function It({v:e,device:t,state:o}){return a="widthSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Nt({v:e,device:t,state:o}){return"on"===(a="showCloseButton",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}))?"block":"none";var a}function At({v:e,device:t,state:o}){return a="closeHorizontalPosition",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Dt({v:e,device:t,state:o}){return a="closeHorizontalPositionSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Vt({v:e,device:t,state:o}){return a="closeVerticalPosition",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function $t({v:e,device:t,state:o}){return a="closeVerticalPositionSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Gt({v:e,device:t,state:o}){return a="closeCustomSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Ut({v:e,device:t,state:o}){return a="closeBgSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Kt({v:e,device:t,state:o}){return a="closeBorderRadius",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function qt({v:e,device:t,state:o}){return a="closeAlign",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Yt({v:e,device:t,state:o}){return a="closePosition",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Xt({v:e,device:t,state:o}){return a="columnsHeightStyle",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Zt({v:e,device:t,state:o}){return a="columnsHeight",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Jt({v:e,device:t,state:o}){return a="columnsHeightSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Qt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"spacing",device:t,state:o})}function eo({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"showPost",device:t,state:o})}function to({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"showSeparation",device:t,state:o})}function oo({v:e,device:t,state:o,prefix:a=""}){return r=Object(p.b)(a,"columns"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function no({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"column",device:t,state:o})}function ao({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"spacing",device:t,state:o})}function ro({v:e,device:t,state:o}){return a="spacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function io({v:e,device:t,state:o}){return a="between",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function lo({v:e,device:t,state:o}){return a="style",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function so({v:e,device:t,state:o}){return a="width",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function co({v:e,device:t,state:o}){return a="widthSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function uo({v:e,device:t,state:o}){return a="tabsCount",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function po({v:e,device:t,state:o}){return a="verticalMode",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function bo({v:e,device:t,state:o}){return a="customSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function mo({v:e,device:t,state:o}){return a="iconPadding",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function ho({v:e,device:t,state:o}){return a="enableText",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function go({v:e,device:t,state:o}){return a="spacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function vo({v:e,device:t,state:o}){return a="timelineStyle",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function fo({v:e,device:t,state:o}){return a="verticalMode",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function yo({v:e,device:t,state:o="normal"}){return Object(n.defaultValueValue)({v:e,key:"logoSize",device:t,state:o})}function Oo({v:e,device:t,state:o="normal"}){return Object(n.defaultValueValue)({v:e,key:"skin",device:t,state:o})}function So({v:e,device:t,state:o}){return a="navStyle2Size",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Co({v:e,device:t,state:o}){return a="spacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function xo({v:e,device:t,state:o}){return a="navStyle1Width",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function jo({v:e,device:t,state:o}){return a="openButtonWidth",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Bo({v:e,device:t,state:o}){return a="openButtonHeight",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Po({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"large",device:t})}function wo({v:e,device:t,state:o}){return a="elementType",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function To({v:e,device:t,state:o}){return a="topSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function zo({v:e,device:t,state:o}){return a="rightSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Eo({v:e,device:t,state:o}){return a="ratingSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function ko({v:e,device:t,state:o}){return a="subtotal",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Ho({v:e,device:t,state:o}){return a="purchases",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Fo({v:e,device:t,state:o}){return a="buttonDirection",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function _o({v:e,device:t,state:o}){return a="buttonSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Ro({v:e,device:t,state:o}){return a="cartHorizontalAlign",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Mo({v:e,device:t,state:o}){return a="cartVerticalAlign",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Lo({v:e,device:t,state:o}){return a="sidebarWidth",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Wo({v:e,device:t,state:o}){return a="sidebarWidthSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Io({v:e,device:t,state:o}){return a="sidebarHeightStyle",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function No({v:e,device:t,state:o}){return a="sidebarHeight",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Ao({v:e,device:t,state:o}){return a="sidebarHeightSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Do({v:e,device:t,state:o}){return a="purchasesType",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Vo({v:e,device:t,state:o}){return a="iconSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function $o({v:e,device:t,state:o}){return a="iconSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Go({v:e,device:t,state:o}){return a="verticalMode",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Uo({v:e,device:t,state:o}){return a="menuSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Ko({v:e,device:t,state:o}){return a="mMenu",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function qo({v:e,device:t,state:o}){return a="mMenuSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Yo({v:e,device:t,state:o}){return a="mMenuIconSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Xo({v:e,device:t,state:o}){return a="mMenuIconSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Zo({v:e,device:t,state:o}){const a=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),{hex:r}=Object(f.d)(a("mMenuHoverColorHex"),a("mMenuHoverColorPalette"));return Object(v.c)(r,a("mMenuHoverColorOpacity"))}function Jo({v:e,device:t,state:o}){return a="subMenuIconSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Qo({v:e,device:t,state:o}){return a="subMenuIconSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function en({v:e,device:t,state:o}){return a="megaMenuWidth",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function tn({v:e,device:t,state:o}){return a="megaMenuWidthSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function on({v:e,device:t,state:o}){return a="megaMenuOffsetTop",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function nn({v:e,device:t,state:o}){return a="sectionHeight",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function an({v:e,device:t,state:o}){return a="sectionHeightStyle",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function rn({v:e,device:t,state:o}){return a="sectionHeightSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function ln({v:e,device:t,state:o}){return a="megaMenuPlacement",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function sn({v:e,device:t,state:o}){return a="width",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function cn({v:e,device:t,state:o}){return a="iconCustomSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function dn({v:e,device:t,state:o}){return a="iconPosition",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function un({v:e,device:t,state:o}){return a="iconSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function pn({v:e,device:t,state:o}){return a="horizontalAlign",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function bn({v:e,device:t,state:o}){return a="columns",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function mn({v:e,device:t,state:o}){return a="tableAside",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function hn({v:e,device:t,state:o}){return a="asideWidth",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function gn({v:e,device:t,state:o}){return a="animationName",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function vn({v:e,device:t,state:o}){return a="animationDuration",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function fn({v:e,device:t,state:o}){return a="animationDelay",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function yn({v:e,device:t,state:o}){return a="spacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function On({v:e,device:t,state:o}){return a="betweenThumbnail",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}},,,function(e,t,o){"use strict";o.d(t,"c",(function(){return a})),o.d(t,"b",(function(){return r})),o.d(t,"a",(function(){return i})),o.d(t,"f",(function(){return l})),o.d(t,"d",(function(){return c})),o.d(t,"e",(function(){return d})),o.d(t,"g",(function(){return u}));var n=o(41);const a="normal",r="hover",i="active",l=()=>[a,r,i],s=e=>{const t=n.a.read(e);if(void 0===t)return;const o="tabNormal"===t?a:"tabHover"===t?r:t;return l().includes(o)?o:void 0},c=a,d=e=>{var t;return null!==(t=s(e))&&void 0!==t?t:c},u=e=>{switch(e){case a:return"tabNormal";case r:return"tabHover";default:return e}}},,function(e,t,o){"use strict";o.d(t,"a",(function(){return ut})),o.d(t,"d",(function(){return c})),o.d(t,"e",(function(){return d})),o.d(t,"h",(function(){return m})),o.d(t,"n",(function(){return y})),o.d(t,"o",(function(){return O})),o.d(t,"bb",(function(){return S})),o.d(t,"Z",(function(){return C})),o.d(t,"ab",(function(){return x})),o.d(t,"b",(function(){return P})),o.d(t,"c",(function(){return w})),o.d(t,"f",(function(){return k})),o.d(t,"g",(function(){return H})),o.d(t,"j",(function(){return F})),o.d(t,"i",(function(){return _})),o.d(t,"k",(function(){return L})),o.d(t,"m",(function(){return W})),o.d(t,"l",(function(){return I})),o.d(t,"gb",(function(){return N})),o.d(t,"hb",(function(){return D})),o.d(t,"ib",(function(){return V})),o.d(t,"jb",(function(){return $})),o.d(t,"kb",(function(){return G})),o.d(t,"lb",(function(){return A})),o.d(t,"nb",(function(){return q})),o.d(t,"ob",(function(){return Y})),o.d(t,"mb",(function(){return te})),o.d(t,"tb",(function(){return oe})),o.d(t,"q",(function(){return ne})),o.d(t,"p",(function(){return ae})),o.d(t,"U",(function(){return ie})),o.d(t,"X",(function(){return le})),o.d(t,"Y",(function(){return se})),o.d(t,"V",(function(){return ce})),o.d(t,"W",(function(){return de})),o.d(t,"r",(function(){return ue})),o.d(t,"v",(function(){return he})),o.d(t,"x",(function(){return pe})),o.d(t,"w",(function(){return be})),o.d(t,"u",(function(){return me})),o.d(t,"t",(function(){return ge})),o.d(t,"s",(function(){return ve})),o.d(t,"D",(function(){return fe})),o.d(t,"N",(function(){return Se})),o.d(t,"P",(function(){return Ce})),o.d(t,"O",(function(){return xe})),o.d(t,"T",(function(){return Be})),o.d(t,"S",(function(){return je})),o.d(t,"E",(function(){return Pe})),o.d(t,"Q",(function(){return we})),o.d(t,"C",(function(){return Te})),o.d(t,"db",(function(){return He})),o.d(t,"fb",(function(){return Fe})),o.d(t,"eb",(function(){return _e})),o.d(t,"cb",(function(){return Re})),o.d(t,"ub",(function(){return Ie})),o.d(t,"wb",(function(){return Ne})),o.d(t,"vb",(function(){return Ae})),o.d(t,"zb",(function(){return De})),o.d(t,"xb",(function(){return Ve})),o.d(t,"yb",(function(){return $e})),o.d(t,"I",(function(){return qe})),o.d(t,"F",(function(){return Ye})),o.d(t,"H",(function(){return Xe})),o.d(t,"G",(function(){return Ze})),o.d(t,"J",(function(){return Je})),o.d(t,"sb",(function(){return Qe})),o.d(t,"rb",(function(){return et})),o.d(t,"qb",(function(){return tt})),o.d(t,"pb",(function(){return ot})),o.d(t,"z",(function(){return nt})),o.d(t,"y",(function(){return at})),o.d(t,"M",(function(){return rt})),o.d(t,"K",(function(){return it})),o.d(t,"L",(function(){return lt})),o.d(t,"B",(function(){return st})),o.d(t,"A",(function(){return ct})),o.d(t,"R",(function(){return dt}));var n=o(2),a=o(1),r=o(3),i=o(13);function l(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function s(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?l(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):l(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function c({v:e,device:t,state:o,states:n,devices:l="all",disabled:c=!1,onChange:d}){const u=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),p=Object(i.c)("image");return{id:(b="bgImage",Object(r.defaultValueKey)({key:b,device:t,state:o})),label:Object(a.a)("Image"),type:"imageSetter",devices:l,states:n,disabled:c,population:{show:p.length>0,choices:p},value:{width:u("bgImageWidth"),height:u("bgImageHeight"),src:u("bgImageSrc"),x:u("bgPositionX"),y:u("bgPositionY"),extension:u("bgImageExtension"),population:u("bgPopulation")},onChange:({width:n,height:a,src:i,x:l,y:c,population:u,extension:p},{isChanged:b})=>{const m=s(s({},{v:e,device:t,state:o,onChange:d}),{width:n,height:a,src:i,x:l,y:c,population:u,extension:p,isChanged:b});return Object(r.saveOnChanges)(m)}};var b}function d({v:e,device:t,devices:o="all",state:n,states:i,disabled:l=!1}){const s=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n});return{id:(c="bgVideo",Object(r.defaultValueKey)({key:c,device:t,state:n})),label:Object(a.a)("URL"),type:"input",inputType:"video",placeholder:Object(a.a)("YouTube or Vimeo"),disabled:l,devices:o,states:i,value:{value:s("bgVideo")},onChange:({value:e})=>({bgVideo:e,bgColorOpacity:""!==e&&1===s("bgColorOpacity")?.8:s("bgColorOpacity"),tempBgColorOpacity:""!==e&&1===s("bgColorOpacity")?.8:s("tempBgColorOpacity")})};var c}var u=o(10);function p(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function b(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?p(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):p(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function m({v:e,device:t,devices:o="all",state:n,onChangeGrouped:r,onChangeUngrouped:i,prefix:l="",position:s=65}){return{type:"multiPicker",devices:o,position:s,picker:{id:Object(u.b)(l,"borderRadiusType"),label:Object(a.a)("Corner"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-corners-all"},{value:"ungrouped",icon:"nc-corners-individual"}]},choices:b(b({},h({v:e,device:t,state:n,prefix:l,onChange:r})),g({v:e,device:t,state:n,prefix:l,onChange:i}))}}function h({v:e,device:t,state:o,onChange:n,prefix:a=""}){const i=Object(u.b)(a,"borderRadius");return{grouped:[{id:(l=i,Object(r.defaultValueKey)({key:l,device:t,state:o})),type:"slider",slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))(i)},onChange:({value:i},{sliderDragEnd:l})=>{const s=b(b({},{v:e,device:t,state:o,prefix:a,onChange:n}),{value:i,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}}]};var l}function g({v:e,device:t,state:o,onChange:n,prefix:a=""}){const i=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),l=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),s=Object(u.b)(a,"borderTopLeftRadius"),c=Object(u.b)(a,"borderTopRightRadius"),d=Object(u.b)(a,"borderBottomRightRadius"),p=Object(u.b)(a,"borderBottomLeftRadius");return{ungrouped:[{id:i(s),icon:"nc-corners-top-left",type:"slider",slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:l(s)},onChange:({value:i},{sliderDragEnd:l})=>{const s=b(b({},{v:e,device:t,state:o,prefix:a,onChange:n}),{current:"borderTopLeftRadius",value:i,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}},{id:i(c),icon:"nc-corners-top-right",type:"slider",slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:l(c)},onChange:({value:i},{sliderDragEnd:l})=>{const s=b(b({},{v:e,device:t,state:o,prefix:a,onChange:n}),{current:"borderTopRightRadius",value:i,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}},{id:i(d),icon:"nc-corners-bottom-right",type:"slider",slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:l(d)},onChange:({value:i},{sliderDragEnd:l})=>{const s=b(b({},{v:e,device:t,state:o,prefix:a,onChange:n}),{current:"borderBottomRightRadius",value:i,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}},{id:i(p),icon:"nc-corners-bottom-left",type:"slider",slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:l(p)},onChange:({value:i},{sliderDragEnd:l})=>{const s=b(b({},{v:e,device:t,state:o,prefix:a,onChange:n}),{current:"borderBottomLeftRadius",value:i,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}}]}}function v(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function f(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?v(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):v(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function y({v:e,device:t,state:o,states:n,disabled:a=!1,prefix:l="color",devices:s="all",onChangeHex:c,onChangePalette:d}){const p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:b}=Object(i.d)(p(Object(u.b)(l,"hex")),p(Object(u.b)(l,"palette")));return{id:(m=l,Object(r.defaultValueKey)({key:m,device:t,state:o})),type:"colorPicker2",disabled:a,devices:s,states:n,select:{show:!1},value:{hex:b,opacity:p(Object(u.b)(l,"opacity")),palette:p(Object(u.b)(l,"palette"))},onChange:({hex:n,opacity:a,palette:i,isChanged:s,opacityDragEnd:u})=>{const p=f(f({},{v:e,device:t,state:o,prefix:l,onChange:c}),{hex:n,opacity:a,isChanged:s,opacityDragEnd:u}),b=f(f({},{v:e,device:t,state:o,prefix:l,onChange:d}),{opacity:a,palette:i});return"hex"===s||"opacity"===s?Object(r.saveOnChanges)(p):Object(r.saveOnChanges)(b)}};var m}function O({v:e,device:t,state:o,disabled:n=!1,states:a,devices:l="all",prefix:s="color",onChange:c}){const d=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:p}=Object(i.d)(d(Object(u.b)(s,"hex")),d(Object(u.b)(s,"palette")));return{id:(b=Object(u.b)(s,"field"),Object(r.defaultValueKey)({key:b,device:t,state:o})),type:"colorFields",devices:l,disabled:n,states:a,value:{hex:p,opacity:d(Object(u.b)(s,"opacity"))},onChange:({hex:n})=>{const a=f(f({},{v:e,device:t,state:o,prefix:s,onChange:c}),{hex:n});return Object(r.saveOnChanges)(a)}};var b}function S({v:e,device:t,state:o,states:n,devices:i="all",className:l,disabled:s}){return{id:(c="gradientType",Object(r.defaultValueKey)({key:c,device:t,state:o})),type:"select",devices:i,states:n,disabled:s,className:l,choices:[{title:Object(a.a)("Linear"),value:"linear"},{title:Object(a.a)("Radial"),value:"radial"}],value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("gradientType")};var c}function C({v:e,device:t,state:o,states:n,devices:a="all",disabled:i}){return{id:(l="gradientLinearDegree",Object(r.defaultValueKey)({key:l,device:t,state:o})),type:"inputNumber",className:"brz-ed-grid__gradient__size",devices:a,states:n,disabled:i,min:0,max:360,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("gradientLinearDegree")};var l}function x({v:e,device:t,state:o,states:n,devices:a="all",disabled:i}){return{id:(l="gradientRadialDegree",Object(r.defaultValueKey)({key:l,device:t,state:o})),type:"inputNumber",className:"brz-ed-grid__gradient__degree",devices:a,states:n,disabled:i,min:0,max:1e3,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("gradientRadialDegree")};var l}function j(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function B(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?j(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):j(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function P({v:e,device:t,state:o,states:n,devices:l="all",disabled:s=!1,prefix:c="bg",showSelect:d=!0,onChangeType:p,onChangeHex:b,onChangePalette:m,onChangeGradientHex:h,onChangeGradientPalette:g,onChangeGradient:v}){const f=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),y=f(Object(u.b)(c,"colorType")),{hex:O}=Object(i.d)(f(Object(u.b)(c,"colorHex")),f(Object(u.b)(c,"colorPalette"))),{hex:S}=Object(i.d)(f("gradientColorHex"),f("gradientColorPalette")),C=f("gradientActivePointer");return{id:(x=Object(u.b)(c,"color"),Object(r.defaultValueKey)({key:x,device:t,state:o})),type:"colorPicker2",disabled:s,devices:l,states:n,select:{show:d,choices:[{title:Object(a.a)("Solid"),value:"solid"},{title:Object(a.a)("Gradient"),value:"gradient"}]},gradient:{show:"gradient"===y},value:{hex:O,opacity:f(Object(u.b)(c,"colorOpacity")),palette:f(Object(u.b)(c,"colorPalette")),select:y,gradientColorHex:S,gradientColorOpacity:f("gradientColorOpacity"),gradientColorPalette:f("gradientColorPalette"),startPointer:f("gradientStartPointer"),finishPointer:f("gradientFinishPointer"),activePointer:C},onChange:({hex:n,opacity:a,palette:i,select:l,opacityDragEnd:s,startPointer:d,finishPointer:u,activePointer:f,isChanged:O})=>{const S=B(B({},{v:e,device:t,state:o,prefix:c,onChange:p}),{bgColorType:l}),C=B(B({},{v:e,device:t,state:o,prefix:"startPointer"===f||"solid"===y?c:"gradient",onChange:"startPointer"===f||"solid"===y?b:h}),{hex:n,opacity:a,isChanged:O,opacityDragEnd:s}),x=B(B({},{v:e,device:t,state:o,prefix:"startPointer"===f||"solid"===y?c:"gradient",onChange:"startPointer"===f||"solid"===y?m:g}),{opacity:a,palette:i}),j=B(B({},{v:e,device:t,state:o,prefix:c,onChange:v}),{startPointer:d,finishPointer:u,activePointer:f});return"select"===O?Object(r.saveOnChanges)(S):"hex"===O||"opacity"===O?Object(r.saveOnChanges)(C):"palette"===O?Object(r.saveOnChanges)(x):Object(r.saveOnChanges)(j)}};var x}function w({v:e,device:t,state:o,states:n,devices:a="all",prefix:l="bg",className:s="",disabled:c=!1,onChange:d}){const p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:b}=Object(i.d)(p(Object(u.b)(l,"colorHex")),p(Object(u.b)(l,"colorPalette")));return{id:(m=Object(u.b)(l,"colorField"),Object(r.defaultValueKey)({key:m,device:t,state:o})),type:"colorFields",devices:a,states:n,disabled:c,className:s,value:{hex:b,opacity:p(Object(u.b)(l,"colorOpacity"))},onChange:({hex:n})=>{const a=B(B({},{v:e,device:t,state:o,prefix:l,onChange:d}),{hex:n});return Object(r.saveOnChanges)(a)}};var m}var T=o(31);function z(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function E(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?z(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):z(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function k({v:e,device:t,state:o,states:n,onChangeStyle:l,onChangeHex:s,onChangePalette:c,devices:d="all",prefix:p="",showSelect:b=!0,choices:m=[{title:Object(a.a)("None"),value:""},{value:"solid",icon:"nc-solid"},{value:"dashed",icon:"nc-dashed"},{value:"dotted",icon:"nc-dotted"}]}){const h=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),g=Object(u.b)(p,"border"),v=Object(u.b)(g,"color"),f=Object(u.b)(g,"colorHex"),y=Object(u.b)(g,"colorOpacity"),O=Object(u.b)(g,"colorPalette"),S=Object(u.b)(g,"style"),{hex:C}=Object(i.d)(h(f),h(O));return{devices:d,id:(x=v,Object(r.defaultValueKey)({key:x,device:t,state:o})),type:"colorPicker2",states:n,select:{show:b,choices:m},value:{hex:C,opacity:h(y),palette:h(O),select:h(S)},onChange:({hex:n,opacity:a,palette:i,select:d,isChanged:u,opacityDragEnd:b})=>{const m=E(E({},{v:e,device:t,state:o,prefix:p,onChange:l}),{borderStyle:d,isChanged:u}),h=E(E({},{v:e,device:t,state:o,prefix:p,onChange:s}),{hex:n,opacity:a,isChanged:u,opacityDragEnd:b}),g=E(E({},{v:e,device:t,state:o,prefix:p,onChange:c}),{opacity:a,palette:i});return"select"===u?Object(r.saveOnChanges)(m):"hex"===u||"opacity"===u?Object(r.saveOnChanges)(h):Object(r.saveOnChanges)(g)}};var x}function H({v:e,device:t,state:o,states:n,onChange:a,devices:l="all",prefix:s=""}){const c=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),d=Object(u.b)(s,"border"),p=Object(u.b)(d,"colorHex"),b=Object(u.b)(d,"colorOpacity"),m=Object(u.b)(d,"colorPalette"),{hex:h}=Object(i.d)(c(p),c(m));return{devices:l,id:(g=Object(u.b)(d,"colorField"),Object(r.defaultValueKey)({key:g,device:t,state:o})),type:"colorFields",states:n,value:{hex:h,opacity:c(b)},onChange:({hex:n})=>{const i=E(E({},{v:e,device:t,state:o,prefix:s,onChange:a}),{hex:n});return Object(r.saveOnChanges)(i)}};var g}function F({v:e,device:t,state:o,onChange:n,devices:i="all",prefix:l=""}){const s=Object(u.b)(l,"border"),c=Object(u.b)(s,"width");return{devices:i,id:(d=c,Object(r.defaultValueKey)({key:d,device:t,state:o})),label:Object(a.a)("Size"),type:"inputNumber",min:0,max:360,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))(c),onChange:a=>{const i=E(E({},{v:e,device:t,state:o,prefix:l,onChange:n}),{value:a});return Object(r.saveOnChanges)(i)}};var d}function _({v:e,device:t,state:o,states:n,onChangeType:i,onChangeGrouped:l,onChangeUngrouped:s,devices:c="all",prefix:d=""}){const p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),b=Object(u.b)(d,"border"),m=Object(u.b)(b,"width"),h=Object(u.b)(m,"type"),g=Object(u.b)(b,"topWidth"),v=Object(u.b)(b,"rightWidth"),f=Object(u.b)(b,"bottomWidth"),y=Object(u.b)(b,"leftWidth"),O={grouped:[m],ungrouped:[g,v,f,y]};return{devices:c,id:(S=m,Object(r.defaultValueKey)({key:S,device:t,state:o})),type:"multiInputPicker",states:n,label:"grouped"===p(h)&&Object(a.a)("Size"),value:{type:p(h),grouped:[p(m)],ungrouped:[p(g),p(v),p(f),p(y)]},onChange:n=>{let{type:a,isChanged:c,isChangedIndex:u}=n,p=Object(T.a)(n,["type","isChanged","isChangedIndex"]);const b=E(E({},{v:e,device:t,state:o,prefix:d,onChange:i}),{type:a}),m=E(E({},{v:e,device:t,state:o,prefix:d,onChange:"grouped"===a?l:s}),{current:O[a][u],value:p[a][u]});return"type"===c?Object(r.saveOnChanges)(b):Object(r.saveOnChanges)(m)}};var S}function R(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function M(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?R(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):R(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function L({v:e,device:t,disabled:o=!1,state:n,states:l,onChangeType:s,onChangeHex:c,onChangePalette:d,prefix:p="",devices:b="all",choices:m="all"}){const h=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),g=Object(u.b)(p,"boxShadow"),v=Object(u.b)(g,"colorHex"),f=Object(u.b)(g,"colorOpacity"),y=Object(u.b)(g,"colorPalette"),{hex:O}=Object(i.d)(h(v),h(y)),S=[{title:Object(a.a)("None"),value:""},{title:Object(a.a)("Inset"),value:"inset"},{title:Object(a.a)("Outset"),value:"on"}],C=[{title:Object(a.a)("None"),value:""},{title:Object(a.a)("Inset"),value:"inset"}],x=[{title:Object(a.a)("None"),value:""},{title:Object(a.a)("Outset"),value:"on"}];return{devices:b,states:l,disabled:o,id:(j=g,Object(r.defaultValueKey)({key:j,device:t,state:n})),type:"colorPicker2",select:{choices:"all"===m?S:"inset"===m?C:x},value:{hex:O,opacity:h(f),palette:h(y),select:h(g)},onChange:({hex:o,opacity:a,palette:i,select:l,isChanged:u,opacityDragEnd:b})=>{const m=M(M({},{v:e,device:t,state:n,prefix:p,onChange:s}),{boxShadowType:l,isChanged:u}),h=M(M({},{v:e,device:t,state:n,prefix:p,onChange:c}),{hex:o,opacity:a,isChanged:u,opacityDragEnd:b}),g=M(M({},{v:e,device:t,state:n,prefix:p,onChange:d}),{opacity:a,palette:i});return"select"===u?Object(r.saveOnChanges)(m):"hex"===u||"opacity"===u?Object(r.saveOnChanges)(h):Object(r.saveOnChanges)(g)}};var j}function W({v:e,device:t,disabled:o=!1,state:n,states:a,onChange:l,prefix:s="",devices:c="all"}){const d=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),p=Object(u.b)(s,"boxShadow"),b=Object(u.b)(p,"field"),m=Object(u.b)(p,"colorHex"),h=Object(u.b)(p,"colorPalette"),g=Object(u.b)(p,"colorOpacity"),{hex:v}=Object(i.d)(d(m),d(h));return{devices:c,disabled:o,id:(f=b,Object(r.defaultValueKey)({key:f,device:t,state:n})),type:"colorFields",states:a,value:{hex:v,opacity:d(g)},onChange:({hex:o})=>{const a=M(M({},{v:e,device:t,state:n,prefix:s,onChange:l}),{hex:o});return Object(r.saveOnChanges)(a)}};var f}function I({v:e,device:t,disabled:o=!1,state:n,states:a,onChange:i,prefix:l="",devices:s="all"}){const c=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),d=Object(u.b)(l,"boxShadow"),p=Object(u.b)(d,"fields"),b=Object(u.b)(d,"blur"),m=Object(u.b)(d,"spread"),h=Object(u.b)(d,"vertical"),g=Object(u.b)(d,"horizontal");return{devices:s,disabled:o,states:a,id:(v=p,Object(r.defaultValueKey)({key:v,device:t,state:n})),type:"multiInput",config:{defaultIcon:["nc-shadow"],icons:["nc-blur","nc-size","nc-vertical","nc-horizontal"]},value:[c(b),c(m),c(h),c(g)],onChange:([o,a,s,c])=>{const d=M(M({},{v:e,device:t,state:n,prefix:l,onChange:i}),{boxShadowBlur:o,boxShadowSpread:a,boxShadowVertical:s,boxShadowHorizontal:c});return Object(r.saveOnChanges)(d)}};var v}function N({v:e,device:t,state:o,devices:n="all",disabled:i=!1}){return{id:(l="linkAnchor",Object(r.defaultValueKey)({key:l,device:t,state:o})),label:Object(a.a)("Block"),type:"blockThumbnail",devices:n,disabled:i,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("linkAnchor")};var l}function A({v:e,device:t,state:o,disabled:n=!1,devices:i="all"}){return{id:Object(r.defaultValueKey)({key:"linkUpload",device:t,state:o}),label:Object(a.a)("File"),type:"fileUpload",disabled:n,devices:i,value:Object(r.defaultValueValue)({v:e,key:"linkUpload",device:t,state:o})}}function D({v:e,devices:t="all"}){const o=Object(i.c)("link");return{id:"linkExternal",type:"input",devices:t,label:Object(a.a)("Link to"),placeholder:"http://",population:{show:o.length>0,choices:o},value:{value:e.linkExternal,population:e.linkPopulation},onChange:({value:e,population:t},{changed:o})=>({linkExternal:e,linkPopulation:t,linkExternalType:"value"===o||""===t?"linkExternal":"linkPopulation"})}}function V({v:e,device:t,state:o,devices:n="all"}){return{id:(i="linkExternalBlank",Object(r.defaultValueKey)({key:i,device:t,state:o})),type:"switch",label:Object(a.a)("Open In New Tab"),devices:n,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("linkExternalBlank")};var i}function $({v:e,device:t,state:o,devices:n="all"}){return{id:(i="linkExternalRel",Object(r.defaultValueKey)({key:i,device:t,state:o})),type:"switch",label:Object(a.a)("Make it Nofollow"),devices:n,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("linkExternalRel")};var i}function G({v:e,device:t,state:o,canDelete:n=!0,disabled:i=!1,component:l,devices:s="all"}){const c=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),d=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o});return{id:c("linkPopup"),type:"promptAddPopup",label:Object(a.a)("Popup"),canDelete:n,disabled:i,popupKey:`${l.getId()}_${d("linkPopup")}`,devices:s,value:{value:d("linkPopup"),popups:d("popups")},onChange:({value:e,popups:t})=>({[c("linkPopup")]:e,[c("popups")]:t})}}function U(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function K(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?U(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):U(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function q({v:e,device:t,state:o,devices:n,position:a,prefix:r="",disabled:i=!1}){return X({v:e,device:t,state:o,devices:n,position:a,prefix:r,disabled:i})}function Y({v:e,device:t,state:o,devices:n,position:a,prefix:r="",disabled:i=!1}){return X({v:e,device:t,state:o,devices:n,position:a,prefix:r,disabled:i,suffixChoices:[{title:"px",value:"px"}]})}function X({v:e,device:t,state:o,prefix:n="",devices:i="all",disabled:l=!1,position:s=50,childs:c=["paddingTop","paddingRight","paddingBottom","paddingLeft"],suffixChoices:d=[{title:"px",value:"px"},{title:"%",value:"%"}]}){const p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),b=Object(u.b)(n,"padding"),m=Object(u.b)(b,"type");return{id:b,type:"group-dev",devices:i,position:s,disabled:l,options:[{id:m,label:Object(a.a)("Padding"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-styling-all"},{value:"ungrouped",icon:"nc-styling-individual"}]},Z({v:e,device:t,state:o,childs:c,suffixChoices:d,prefix:n,disabled:"grouped"!==p(m),onChange:["onChangePaddingGrouped"]}),...J({v:e,device:t,state:o,childs:c,suffixChoices:d,prefix:n,disabled:"ungrouped"!==p(m),onChange:["onChangePaddingUngrouped"]})]}}function Z({v:e,device:t,state:o,childs:n,suffixChoices:a,onChange:i,disabled:l=!1,prefix:s=""}){const c=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),d=Object(u.b)(s,"padding"),p=Object(u.b)(d,"suffix");return{id:(b=d,Object(r.defaultValueKey)({key:b,device:t,state:o})),type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:c(d),suffix:c(p)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=K(K({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}};var b}function J({v:e,device:t,state:o,childs:n,suffixChoices:a,onChange:i,disabled:l=!1,prefix:s=""}){const c=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),d=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),p=Object(u.b)(s,"paddingTop"),b=Object(u.b)(p,"suffix"),m=Object(u.b)(s,"paddingRight"),h=Object(u.b)(m,"suffix"),g=Object(u.b)(s,"paddingBottom"),v=Object(u.b)(g,"suffix"),f=Object(u.b)(s,"paddingLeft"),y=Object(u.b)(f,"suffix");return[{id:c(p),icon:"nc-styling-top",type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:d(p),suffix:d(b)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=K(K({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{current:"paddingTop",value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}},n.includes("paddingRight")?{id:c(m),icon:"nc-styling-right",type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:d(m),suffix:d(h)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=K(K({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{current:"paddingRight",value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}}:{},{id:c(g),icon:"nc-styling-bottom",type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:d(g),suffix:d(v)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=K(K({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{current:"paddingBottom",value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}},n.includes("paddingLeft")?{id:c(f),icon:"nc-styling-left",type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:d(f),suffix:d(y)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=K(K({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{current:"paddingLeft",value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}}:{}]}function Q(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ee(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Q(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Q(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function te({v:e,device:t,state:o,devices:n="all",disabled:i=!1,position:l=60,marginType:s,onChangeGrouped:c,onChangeUngrouped:d}){const u=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o});return{id:"margin",type:"group-dev",position:l,devices:n,disabled:i,options:[{id:"marginType",label:Object(a.a)("Margin"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-styling-all"},{value:"ungrouped",icon:"nc-styling-individual"}]},{id:u("margin"),type:"slider",disabled:"grouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("margin"),suffix:p("marginSuffix")},onChange:({value:n,suffix:a})=>{const i=ee(ee({},{v:e,device:t,state:o,marginType:s,onChange:c}),{value:n,suffix:a});return Object(r.saveOnChanges)(i)}},{id:u("marginTop"),icon:"nc-styling-top",type:"slider",disabled:"ungrouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("marginTop"),suffix:p("marginTopSuffix")},onChange:({value:n,suffix:a})=>{const i=ee(ee({},{v:e,device:t,state:o,onChange:d}),{current:"marginTop",value:n,suffix:a});return Object(r.saveOnChanges)(i)}},{id:u("marginRight"),icon:"nc-styling-right",type:"slider",disabled:"ungrouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("marginRight"),suffix:p("marginRightSuffix")},onChange:({value:n,suffix:a})=>{const i=ee(ee({},{v:e,device:t,state:o,onChange:d}),{current:"marginRight",value:n,suffix:a});return Object(r.saveOnChanges)(i)}},{id:u("marginBottom"),icon:"nc-styling-bottom",type:"slider",disabled:"ungrouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("marginBottom"),suffix:p("marginBottomSuffix")},onChange:({value:n,suffix:a})=>{const i=ee(ee({},{v:e,device:t,state:o,onChange:d}),{current:"marginBottom",value:n,suffix:a});return Object(r.saveOnChanges)(i)}},{id:u("marginLeft"),icon:"nc-styling-left",type:"slider",disabled:"ungrouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("marginLeft"),suffix:p("marginLeftSuffix")},onChange:({value:n,suffix:a})=>{const i=ee(ee({},{v:e,device:t,state:o,onChange:d}),{current:"marginLeft",value:n,suffix:a});return Object(r.saveOnChanges)(i)}}]}}function oe({v:e,device:t,devices:o="all",position:n=10,closeTooltip:r=!0}){return"tablet"===t?function({v:e,position:t=10,devices:o="all",closeTooltip:n=!0}){return{id:"showOnTablet",type:"toggle",devices:o,position:t,closeTooltip:n,choices:[{icon:"nc-eye-17",title:Object(a.a)("Disable on Tablet"),value:"on"},{icon:"nc-eye-ban-18",title:Object(a.a)("Enable on Tablet"),value:"off"}],value:e.showOnTablet}}({v:e,position:n,devices:o,closeTooltip:r}):"mobile"===t?function({v:e,position:t=10,devices:o="all",closeTooltip:n=!0}){return{id:"showOnMobile",type:"toggle",devices:o,position:t,closeTooltip:n,choices:[{icon:"nc-eye-17",title:Object(a.a)("Disable on Mobile"),value:"on"},{icon:"nc-eye-ban-18",title:Object(a.a)("Enable on Mobile"),value:"off"}],value:e.showOnMobile}}({v:e,position:n,devices:o,closeTooltip:r}):{}}function ne({v:e,position:t=40,device:o,state:n,devices:i="all",population:l}){const s=e=>Object(r.defaultValueKey)({key:e,device:o,state:n}),c=t=>Object(r.defaultValueValue)({v:e,key:t,device:o,state:n});return{id:s("customClassName"),label:Object(a.a)("CSS Class"),position:t,display:"block",type:"input",devices:i,helper:!0,helperContent:"\n<span>Add your custom class without the .dot, example: my-class</span>",population:{show:l.length>0,choices:l},value:{value:c("customClassName"),population:c("cssClassPopulation")},onChange:({value:e,population:t})=>({[s("customClassName")]:e,[s("cssClassPopulation")]:t})}}function ae({v:e,device:t,state:o,devices:n="all",position:i=45}){return{id:(l="customCSS",Object(r.defaultValueKey)({key:l,device:t,state:o})),type:"codeMirror",label:Object(a.a)("Custom CSS"),position:i,display:"block",devices:n,helper:!0,helperContent:'\n<p class="brz-p">You can use the following selectors to create targeted CSS.</p>\n<p class="brz-p">\n <span class="brz-span brz-ed-tooltip__overlay-code">element</span> {...}\n <br class="brz-br">\n <span class="brz-span brz-ed-tooltip__overlay-code">element .child-element</span> {...}\n</p>',placeholder:"element { CSS goes here }",value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("customCSS")};var l}var re=o(137);function ie({v:e,position:t=60,device:o,state:n,choices:i=Object(re.a)(),devices:l="all"}){const s=e=>Object(r.defaultValueKey)({key:e,device:o,state:n}),c=t=>Object(r.defaultValueValue)({v:e,key:t,device:o,state:n});return{id:"animation",type:"group-dev",position:t,devices:l,options:[{id:s("animationName"),label:Object(a.a)("Entrance Animation"),type:"select",choices:i,value:"initial"===c("animationName")?c("tempAnimationName"):c("animationName"),onChange:e=>({[s("animationName")]:e,[s("tempAnimationName")]:e})},{id:s("animationDuration"),label:Object(a.a)("Duration"),type:"slider",disabled:"none"===c("animationName")&&"initial"!==c("animationName"),slider:{min:0,max:5,step:.1},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"s",value:"s"}]},value:{value:c("animationDuration")/1e3},onChange:({value:e},{sliderDragEnd:t})=>({[s("animationName")]:t?c("tempAnimationName"):"initial",[s("animationDuration")]:1e3*e})},{id:s("animationDelay"),label:Object(a.a)("Delay"),type:"slider",disabled:"none"===c("animationName")&&"initial"!==c("animationName"),slider:{min:0,max:5,step:.1},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"s",value:"s"}]},value:{value:c("animationDelay")/1e3},onChange:({value:e},{sliderDragEnd:t})=>({[s("animationName")]:t?c("tempAnimationName"):"initial",[s("animationDelay")]:1e3*e})}]}}function le({v:e,device:t,prefix:o="",devices:n="all",state:a,states:i}){return{id:Object(r.defaultValueKey)({key:Object(u.b)(o,"hue"),device:t,state:a}),icon:"nc-hue",className:"brz-ed-option__slider--hue",type:"slider",devices:n,states:i,slider:{min:0,max:360},input:{show:!0,min:0,max:360},suffix:{show:!0,choices:[{title:"deg",value:"deg"}]},value:{value:Object(r.defaultValueValue)({v:e,key:Object(u.b)(o,"hue"),device:t,state:a})},onChange:({value:n})=>({[Object(r.defaultValueKey)({v:e,key:Object(u.b)(o,"hue"),device:t,state:a})]:n})}}function se({v:e,device:t,prefix:o="",devices:n="all",state:a,states:i}){return{id:Object(r.defaultValueKey)({key:Object(u.b)(o,"saturation"),device:t,state:a}),icon:"nc-saturation",className:"brz-ed-option__slider--saturation",type:"slider",devices:n,states:i,slider:{min:0,max:200},input:{show:!0,min:0,max:200},suffix:{show:!0,choices:[{title:"%",value:"%"}]},value:{value:Object(r.defaultValueValue)({v:e,key:Object(u.b)(o,"saturation"),device:t,state:a})},onChange:({value:e})=>({[Object(r.defaultValueKey)({key:Object(u.b)(o,"saturation"),device:t,state:a})]:e})}}function ce({v:e,device:t,prefix:o="",devices:n="all",state:a,states:i}){return{id:Object(r.defaultValueKey)({key:Object(u.b)(o,"brightness"),device:t,state:a}),icon:"nc-brightness",className:"brz-ed-option__slider--brightness",type:"slider",devices:n,states:i,slider:{min:10,max:200},input:{show:!0,min:0,max:200},suffix:{show:!0,choices:[{title:"%",value:"%"}]},value:{value:Object(r.defaultValueValue)({v:e,key:Object(u.b)(o,"brightness"),device:t,state:a})},onChange:({value:e})=>({[Object(r.defaultValueKey)({key:Object(u.b)(o,"brightness"),device:t,state:a})]:e})}}function de({v:e,device:t,prefix:o="",devices:n="all",state:a,states:i}){return{id:Object(r.defaultValueKey)({key:Object(u.b)(o,"contrast"),device:t,state:a}),icon:"nc-contrast",className:"brz-ed-option__slider--contrast",type:"slider",devices:n,states:i,slider:{min:0,max:200},input:{show:!0,min:0,max:200},suffix:{show:!0,choices:[{title:"%",value:"%"}]},value:{value:Object(r.defaultValueValue)({v:e,key:Object(u.b)(o,"contrast"),device:t,state:a})},onChange:({value:e})=>({[Object(r.defaultValueKey)({key:Object(u.b)(o,"contrast"),device:t,state:a})]:e})}}function ue({device:e,devices:t="all",state:o}){return{id:Object(r.defaultValueKey)({key:"advancedSettings",device:e,state:o}),type:"advancedSettings",devices:t,disabled:!0}}function pe({devices:e="all"}){return{id:"toolbarSettings",type:"popover-dev",devices:e,disabled:!0}}function be({devices:e="responsive"}){return{id:"showOnTablet",type:"toggle",disabled:!0,devices:e}}function me({devices:e="responsive"}){return{id:"showOnMobile",type:"toggle",disabled:!0,devices:e}}function he({device:e}){let t;return t="tablet"===e?be({}):"mobile"===e?me({}):{},t}function ge({prefix:e="",devices:t="all"}){return{devices:t,id:Object(u.b)(e,"padding"),type:"group-dev",disabled:!0}}function ve({devices:e="all"}){return{devices:e,id:"margin",type:"group-dev",disabled:!0}}function fe({v:e,device:t,devices:o="all",state:n,states:i}){const l=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n});return{id:(s="media",Object(r.defaultValueKey)({key:s,device:t,state:n})),label:Object(a.a)("Type"),type:"radioGroup",devices:o,states:i,choices:[{value:"image",icon:"nc-media-image"},{value:"map",icon:"nc-media-map"}],value:"video"===l("media")?"image":l("media")};var s}function ye(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Oe(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?ye(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):ye(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Se({v:e,device:t,state:o,onChange:n}){const a=Object(r.defaultValueValue)({v:e,key:"boxShadowBlur",device:t,state:o}),i=Object(r.defaultValueValue)({v:e,key:"boxShadowVertical",device:t,state:o});return{id:Object(r.defaultValueKey)({key:"boxShadow",device:t,state:o}),type:"multiInput",config:{defaultIcon:["nc-shadow"],icons:["nc-blur","nc-vertical"]},value:[a,i],onChange:([a,i])=>{const l=Oe(Oe({},{v:e,device:t,state:o,onChange:n}),{boxShadowBlur:a,boxShadowVertical:i});return Object(r.saveOnChanges)(l)}}}function Ce({device:e,component:t,state:o,blockType:n,position:i=90,disabled:l=!1,devices:s="all"}){return{devices:s,position:i,blockType:n,id:(c="makeItSaved",Object(r.defaultValueKey)({key:c,device:e,state:o})),type:"savedBlock",icon:"nc-save-section",disabled:l,title:Object(a.a)("Save"),tooltipContent:Object(a.a)("Saved"),value:{blockId:t.getId()}};var c}function xe({device:e,component:t,state:o,blockType:n,devices:i="all"}){return{devices:i,blockType:n,id:(l="makeItGlobal",Object(r.defaultValueKey)({key:l,device:e,state:o})),label:Object(a.a)("Make it Global"),type:"globalBlock",value:{_id:t.getId()}};var l}function je({v:e,device:t,devices:o="all",disabled:n=!1,state:i}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:i});return{id:l("iconSize"),label:Object(a.a)("Play"),type:"slider",devices:o,disabled:n,roles:["admin"],slider:{min:50,max:200},input:{show:!0,min:50,max:200},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:(s="iconSize",Object(r.defaultValueValue)({v:e,key:s,device:t,state:i}))},onChange:({value:e})=>({[l("iconSize")]:e,[l("iconSizeWidth")]:e,[l("iconSizeHeight")]:e})};var s}function Be({v:e,device:t,state:o,devices:n="all",disabled:i=!1}){return{id:(l="custom",Object(r.defaultValueKey)({key:l,device:t,state:o})),label:Object(a.a)("File"),type:"fileUpload",acceptedExtensions:["video/*"],devices:n,disabled:i,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("custom")};var l}function Pe({v:e,device:t,devices:o="all",disabled:n=!1,state:i}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:i}),s=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:i});return{id:l("type"),label:Object(a.a)("Style"),type:"radioGroup",disabled:n,devices:o,choices:[{value:"simple",icon:"nc-counter-style-1"},{value:"radial",icon:"nc-counter-style-2"},{value:"empty",icon:"nc-counter-style-3"},{value:"pie",icon:"nc-counter-style-4"}],value:s("type"),onChange:e=>({[l("type")]:e,[l("start")]:"simple"!==s("type")?s("start"):0})}}function we({v:e,device:t,devices:o="all",disabled:n=!1,state:i}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:i}),s=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:i});return{id:l("style"),label:Object(a.a)("Style"),type:"radioGroup",devices:o,disabled:n,choices:[{value:"basic",icon:"nc-sndcloud-style-1"},{value:"artwork",icon:"nc-sndcloud-style-2"}],value:s("style"),onChange:e=>({[l("style")]:e,[l("showArtwork")]:"basic"===e?"off":"on",[l("height")]:s("basic"===e?"mediumHeight":"artwork"===e?"largeHeight":"height")})}}function Te({v:e,device:t,devices:o="all",state:n,position:i=350}){return{id:Object(r.defaultValueKey)({key:"itemPadding",device:t,state:n}),type:"slider",label:Object(a.a)("Spacing"),roles:["admin"],devices:o,position:i,slider:{min:0,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},disabled:1===e.items.length,value:{value:Object(r.defaultValueValue)({v:e,key:"itemPadding",device:t,state:n})},onChange:({value:e})=>({[Object(r.defaultValueKey)({key:"itemPadding",device:t,state:n})]:e,[Object(r.defaultValueKey)({key:"itemPaddingRight",device:t,state:n})]:e,[Object(r.defaultValueKey)({key:"itemPaddingLeft",device:t,state:n})]:e})}}var ze=o(67);const Ee=1440,ke=960;function He({v:e,inGallery:t,device:o,state:n,devices:l="all"}){const s=t=>Object(r.defaultValueValue)({v:e,key:t,device:o,state:n}),c=Object(i.c)("link");return{id:(d="linkExternal",Object(r.defaultValueKey)({key:d,device:o,state:n})),type:"input",label:Object(a.a)("Link to"),placeholder:"http://",devices:l,population:{show:c.length>0&&!t,choices:c},value:{population:s("linkPopulation"),value:s("linkExternal")},onChange:({value:e,population:t},{changed:o})=>({linkExternal:e,linkPopulation:t,linkExternalType:"value"===o||""===t?"linkExternal":"linkPopulation"})};var d}function Fe({devices:e="all",gallery:t,enableTags:o}){const{inGallery:n=!1}=t||{};return{label:"Tags",id:"tags",type:"inputText-dev",helper:{enabled:!0,content:"Enter the tags, separated by a comma (art, sport, nature, etc).",position:"top-end"},placeholder:"art, nature, etc.",devices:e,disabled:!n||!o}}function _e({v:e,cW:t,device:o,state:n,devices:i="all",disabled:l=!1,showPointer:s=!0,wrapperSizes:c,dynamicContent:d,gallery:u}){const{inGallery:p=!1}=u||{},b=e=>Object(r.defaultValueKey)({key:e,device:o,state:n}),m=t=>Object(r.defaultValueValue)({v:e,key:t,device:o,state:n});return{id:b("image"),label:Object(a.a)("Image"),type:"imageSetter",disabled:l,devices:i,onlyPointer:"desktop"!==o,showPointer:s,population:"desktop"===o&&{show:d.length>0&&!p,choices:d},value:{width:e.imageWidth,height:e.imageHeight,extension:e.imageExtension,src:e.imageSrc,x:m("positionX"),y:m("positionY"),population:e.imagePopulation},onChange:"desktop"===o?({width:o,height:n,src:a,x:r,y:i,population:l,extension:s})=>{if(l)return{imagePopulation:l};const d=o||Ee,u=n||ke,p=Object(ze.b)({imageWidth:d,imageHeight:u,widthSuffix:e.widthSuffix,heightSuffix:e.heightSuffix,width:e.width,height:e.height},t);let b=c.width,m=c.height;if("%"===e.widthSuffix){const t=e.width||100;b=c.width*t/p.width}if("%"===e.heightSuffix){const t=e.height||100;m=c.height*t/p.height}if("svg"===s||"gif"===s){const t=c.width/(d/u);m="px"===e.heightSuffix?t:100}return{imageWidth:d,imageHeight:u,imageSrc:a,imageExtension:s,width:Math.round(b),height:Math.round(m),positionX:r,positionY:i,imagePopulation:""}}:({x:e,y:t})=>({[b("positionX")]:e,[b("positionY")]:t})}}function Re({v:e,device:t,state:o,devices:n="all"}){const i=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),l=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o});return{type:"multiPicker",devices:n,picker:{id:i("borderRadiusType"),label:Object(a.a)("Corner"),type:"radioGroup",choices:[{value:"square",icon:"nc-corners-square"},{value:"rounded",icon:"nc-corners-round"},{value:"custom",icon:"nc-more"}],value:l("borderRadiusType"),onChange:e=>({[i("borderRadiusType")]:e,borderRadius:"square"===e?l("tempBorderRadius"):"rounded"===e?300:l("borderRadius")})},choices:{custom:[{id:i("borderRadius"),type:"slider",slider:{min:0,max:300},input:{show:!0,max:300},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:l("borderRadius")},onChange:({value:e})=>({[i("borderRadius")]:e,[i("tempBorderRadius")]:e})}]}}}var Me=o(33);function Le(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function We(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Le(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Le(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Ie({v:e,prefix:t="",device:o,state:n,disabled:l=!1,devices:s="all",onChange:c}){const d=Object(r.defaultValueKey)({key:Object(u.b)(t,"fontFamily"),device:o,state:n}),p=Object(i.e)("fontFamily",Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontFamily"),device:o,state:n}),Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontStyle"),device:o,state:n}));return{id:d,label:Object(a.a)("Font Family"),type:"fontFamily",devices:s,disabled:l,value:p,onChange:({id:a,weights:i,type:l})=>{const s=We(We({},{v:e,prefix:t,device:o,state:n,onChange:c}),{current:d,value:a,weights:i,type:l});return Object(r.saveOnChanges)(s)}}}function Ne({v:e,prefix:t="",device:o,state:n,disabled:i=!1,devices:l="all"}){const s=Object(r.defaultValueKey)({key:Object(u.b)(t,"fontStyle"),device:o,state:n}),c=Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontStyle"),device:o,state:n});return{id:s,label:Object(a.a)("Typography"),type:"fontStyle",devices:l,disabled:i,className:"brz-ed-popover__font-style",display:"block",value:c,onChange:e=>({[s]:e})}}function Ae({v:e,prefix:t="",device:o,state:n,disabled:l=!1,devices:s="all",onChange:c}){const d=Object(r.defaultValueKey)({key:Object(u.b)(t,"fontSize"),device:o,state:n});let p=Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontSize"),device:o,state:n});return p||(p=Object(i.e)(d,p,Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontStyle"),device:o,state:n}))),{id:d,label:Object(a.a)("Size"),type:"stepper",devices:s,disabled:l,display:"block",min:1,max:100,step:1,value:p,onChange:a=>{const i=We(We({},{v:e,prefix:t,device:o,state:n,onChange:c}),{current:d,value:a});return Object(r.saveOnChanges)(i)}}}function De({v:e,prefix:t="",device:o,state:n,disabled:l=!1,devices:s="all",onChange:c}){const d=Object(r.defaultValueKey)({key:Object(u.b)(t,"lineHeight"),device:o,state:n});let p=Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"lineHeight"),device:o,state:n});return p||(p=Object(i.e)(d,p,Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontStyle"),device:o,state:n}))),{id:d,label:Object(a.a)("Line Hgt."),type:"stepper",devices:s,disabled:l,display:"block",min:1,max:10,step:.1,value:p,onChange:a=>{const i=We(We({},{v:e,prefix:t,device:o,state:n,onChange:c}),{current:d,value:a});return Object(r.saveOnChanges)(i)}}}function Ve({v:e,prefix:t="",device:o,state:n,disabled:l=!1,devices:s="all",onChange:c}){const d=Object(r.defaultValueKey)({key:Object(u.b)(t,"fontWeight"),device:o,state:n}),p=Object(i.e)("fontFamilyType",Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontFamilyType"),device:o,state:n}),Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontStyle"),device:o,state:n})),b=Object(i.e)("fontFamily",Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontFamily"),device:o,state:n}),Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontStyle"),device:o,state:n}));let m=Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontWeight"),device:o,state:n});return m||(m=Object(i.e)(d,m,Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontStyle"),device:o,state:n}))),{id:d,label:Object(a.a)("Weight"),type:"select",devices:s,disabled:l,display:"block",choices:Object(Me.n)({type:p,family:b}),value:m,onChange:a=>{const i=We(We({},{v:e,prefix:t,device:o,state:n,onChange:c}),{current:d,value:a});return Object(r.saveOnChanges)(i)}}}function $e({v:e,prefix:t="",device:o,state:n,disabled:l=!1,devices:s="all",onChange:c}){const d=Object(r.defaultValueKey)({key:Object(u.b)(t,"letterSpacing"),device:o,state:n});let p=Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"letterSpacing"),device:o,state:n});return p||(p=Object(i.e)(d,p,Object(r.defaultValueValue)({v:e,key:Object(u.b)(t,"fontStyle"),device:o,state:n}))),{id:d,label:Object(a.a)("Letter Sp."),type:"stepper",devices:s,disabled:l,display:"block",min:-20,max:20,step:.5,value:p,onChange:a=>{const i=We(We({},{v:e,prefix:t,device:o,state:n,onChange:c}),{current:d,value:a});return Object(r.saveOnChanges)(i)}}}var Ge=o(8);function Ue(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ke(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ue(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ue(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function qe({v:e,device:t,state:o,devices:n="all"}){const i=e=>Object(r.defaultValueKey)({key:e,device:t,state:o});return{devices:n,id:i("padding"),type:"slider",label:Object(a.a)("Spacing"),slider:{min:0,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:(l="padding",Object(r.defaultValueValue)({v:e,key:l,device:t,state:o}))},onChange:({value:e})=>({[i("padding")]:e,[i("paddingRight")]:e,[i("paddingBottom")]:e,[i("paddingLeft")]:e})};var l}function Ye({v:e,device:t,state:o,devices:n="all"}){const a=Ge.default.pluck(e.items[0].value.items,"value");return{devices:n,id:(i="apps",Object(r.defaultValueKey)({key:i,device:t,state:o})),type:"formApps",icon:"nc-extensions-2",value:{id:e._id,fields:a}};var i}function Xe({v:e,device:t,state:o,devices:n="all"}){const i=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),l=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),s={small:l("sizeSmallPadding"),medium:l("sizeMediumPadding"),large:l("sizeLargePadding")};return{devices:n,id:i("size"),label:Object(a.a)("Size"),type:"radioGroup",position:17,choices:[{icon:"nc-small",value:"small"},{icon:"nc-medium",value:"medium"},{icon:"nc-large",value:"large"}],value:l("size"),onChange:e=>({[i("size")]:e,[i("paddingTop")]:s[e],[i("paddingRight")]:s[e]+10,[i("paddingBottom")]:s[e],[i("paddingLeft")]:s[e]+10})}}function Ze({v:e,device:t,state:o,onChange:n,devices:i="all"}){return{devices:i,id:(l="borderRadius",Object(r.defaultValueKey)({key:l,device:t,state:o})),label:Object(a.a)("Corner"),type:"slider",slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("borderRadius")},onChange:({value:a},{sliderDragEnd:i})=>{const l=Ke(Ke({},{v:e,device:t,state:o,onChange:n}),{value:a,sliderDragEnd:i});return Object(r.saveOnChanges)(l)}};var l}function Je({v:e,device:t,state:o,prefix:n="field",devices:i="all"}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:o});return{devices:i,id:l(Object(u.b)(n,"padding")),type:"slider",label:Object(a.a)("Spacing"),slider:{min:0,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:(s=Object(u.b)(n,"padding"),Object(r.defaultValueValue)({v:e,key:s,device:t,state:o}))},onChange:({value:e})=>({[l(Object(u.b)(n,"padding"))]:e,[l(Object(u.b)(n,"paddingRight"))]:e,[l(Object(u.b)(n,"paddingBottom"))]:e,[l(Object(u.b)(n,"paddingLeft"))]:e})};var s}function Qe({v:e,device:t,devices:o="all",state:n}){return{id:(l="shapeTopType",Object(r.defaultValueKey)({key:l,device:t,state:n})),label:Object(a.a)("Type"),type:"select",devices:o,className:"brz-control__select-option--icon",choices:Object(i.f)(),value:(o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}))("shapeTopType")};var l}function et({v:e,device:t,devices:o="all",disabled:n=!1,state:i}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:i});return{id:l("shapeTopFlip"),label:Object(a.a)("Flip"),type:"checkGroup",disabled:n,devices:o,choices:[{value:"shapeTopHorizontal",icon:"nc-flip-horizontal"}],value:{shapeTopHorizontal:"on"===(s="shapeTopHorizontal",Object(r.defaultValueValue)({v:e,key:s,device:t,state:i}))},onChange:({shapeTopHorizontal:e})=>({[l("shapeTopHorizontal")]:e?"on":"off"})};var s}function tt({v:e,device:t,devices:o="all",state:n}){return{id:(l="shapeBottomType",Object(r.defaultValueKey)({key:l,device:t,state:n})),label:Object(a.a)("Type"),type:"select",devices:o,className:"brz-control__select-option--icon brz-control__select-option--icon--bottom",choices:Object(i.f)(),value:(o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}))("shapeBottomType")};var l}function ot({v:e,device:t,devices:o="all",disabled:n=!1,state:i}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:i});return{id:l("shapeBottomFlip"),label:Object(a.a)("Flip"),type:"checkGroup",devices:o,disabled:n,choices:[{value:"shapeBottomHorizontal",icon:"nc-flip-horizontal"}],value:{shapeBottomHorizontal:"on"===(s="shapeBottomHorizontal",Object(r.defaultValueValue)({v:e,key:s,device:t,state:i}))},onChange:({shapeBottomHorizontal:e})=>({[l("shapeBottomHorizontal")]:e?"on":"off"})};var s}function nt({v:e,device:t,state:o,devices:n="all",disabled:i=!1}){return{id:(l="audio",Object(r.defaultValueKey)({key:l,device:t,state:o})),label:Object(a.a)("File"),type:"fileUpload",acceptedExtensions:[".mp3",".ogg",".wav"],devices:n,disabled:i,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("audio")};var l}function at({v:e,device:t,state:o,devices:n="all",disabled:i=!1}){const l=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),s=e=>Object(r.defaultValueKey)({key:e,device:t,state:o});return{id:s("iconSize"),label:Object(a.a)("Icons"),type:"radioGroup",disabled:i,devices:n,choices:[{value:"small",icon:"nc-16"},{value:"medium",icon:"nc-24"},{value:"large",icon:"nc-32"},{value:"custom",icon:"nc-more"}],value:l("iconSize"),onChange:e=>({[s("iconSize")]:e,iconCustomSize:l("small"===e?"smallIconSize":"medium"===e?"mediumIconSize":"large"===e?"largeIconSize":"iconCustomSize")})}}function rt({v:e,device:t,type:o,devices:n="all",disabled:l=!1,state:s}){const c=e=>Object(r.defaultValueKey)({key:e,device:t,state:s}),d=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:s});return{id:c("taxonomy"),label:Object(a.a)("Categories"),className:"brz-ed-option__select-taxonomy",type:"select",disabled:l,devices:n,choices:Object(i.h)(o),value:`${d("taxonomy")}|${d("taxonomyId")}`,onChange:e=>{const[t,o]=e.split("|");return{[c("taxonomy")]:t,[c("taxonomyId")]:o}}}}function it({v:e,device:t,devices:o="all",state:n}){const i="desktop"===t?6:Math.min(e.gridColumn*e.gridRow,6);return{id:Object(r.defaultValueKey)({key:"gridColumn",device:t,state:n}),type:"slider",label:Object(a.a)("Columns"),devices:o,className:"brz-ed-option__slider--skin-dev",slider:{min:1,max:i,step:1},input:{show:!0,min:1,max:i,step:1},value:{value:Object(r.defaultValueValue)({v:e,key:"gridColumn",device:t,state:n}),suffix:null},onChange:({value:o})=>{const a=Object(r.defaultValueKey)({key:"gridColumn",device:t,state:n}),i={[a]:o,[a+"Suffix"]:""};if("desktop"===t){const t=Number(o)*Number(e.gridRow);t<e.tabletGridColumn&&(i.tabletGridColumn=t),t<e.mobileGridColumn&&(i.mobileGridColumn=t)}return i}}}function lt({v:e,device:t,devices:o="all",state:n}){return{id:Object(r.defaultValueKey)({key:"gridRow",device:t,state:n}),type:"slider",label:Object(a.a)("Rows"),devices:o,className:"brz-ed-option__slider--skin-dev",slider:{min:1,max:15,step:1},input:{show:!0,min:1,max:50,step:1},value:{value:Object(r.defaultValueValue)({v:e,key:"gridRow",device:t,state:n}),suffix:null},onChange:({value:o})=>{const a=Object(r.defaultValueKey)({key:"gridRow",device:t,state:n}),i={[a]:o,[a+"Suffix"]:""};if("desktop"===t){const t=Number(o)*Number(e.gridColumn);t<e.tabletGridColumn&&(i.tabletGridColumn=t),t<e.mobileGridColumn&&(i.mobileGridColumn=t)}return i}}}function st({v:e,device:t,state:o,choices:n=[],disabled:i=!1,devices:l="all"}){const s=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),c=e=>Object(r.defaultValueKey)({key:e,device:t,state:o});return{id:c("taxonomy"),label:Object(a.a)("Categories"),disabled:i,devices:l,type:"select",choices:n,value:`${s("taxonomy")}|${s("taxonomyId")}`,onChange:e=>{const[t,o]=e.split("|");return{[c("taxonomy")]:t,[c("taxonomyId")]:o}}}}function ct({v:e,device:t,state:o,disabled:n=!1,devices:i="all"}){const l=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),s=e=>Object(r.defaultValueKey)({key:e,device:t,state:o});return{id:"sliderPaddingType",type:"group-dev",disabled:n,devices:i,position:50,options:[{id:"sliderPaddingType",label:Object(a.a)("Padding"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-styling-all"},{value:"ungrouped",icon:"nc-styling-individual"}]},{id:s("sliderPadding"),type:"slider",disabled:"grouped"!==l("sliderPaddingType"),slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:l("sliderPadding"),suffix:l("sliderPaddingSuffix")},onChange:({value:e,suffix:t})=>({[s("sliderPadding")]:e,[s("sliderPaddingSuffix")]:t,[s("sliderPaddingTop")]:e,[s("sliderPaddingRight")]:e,[s("sliderPaddingBottom")]:e,[s("sliderPaddingLeft")]:e})},{id:s("sliderPaddingTop"),icon:"nc-styling-top",type:"slider",disabled:"ungrouped"!==l("sliderPaddingType"),slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:l("sliderPaddingTop"),suffix:l("sliderPaddingTopSuffix")},onChange:({value:e,suffix:t})=>({[s("sliderPaddingTop")]:e,[s("sliderPaddingTopSuffix")]:t,[s("sliderPadding")]:e===l("sliderPaddingRight")&&e===l("sliderPaddingLeft")&&e===l("sliderPaddingBottom")?e:l("sliderPadding")})},{id:s("sliderPaddingRight"),icon:"nc-styling-right",type:"slider",disabled:"ungrouped"!==l("sliderPaddingType"),slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:l("sliderPaddingRight"),suffix:l("sliderPaddingRightSuffix")},onChange:({value:e,suffix:t})=>({[s("sliderPaddingRight")]:e,[s("sliderPaddingRightSuffix")]:t,[s("sliderPadding")]:e===l("sliderPaddingTop")&&e===l("sliderPaddingLeft")&&e===l("sliderPaddingBottom")?e:l("sliderPadding")})},{id:s("sliderPaddingBottom"),icon:"nc-styling-bottom",type:"slider",disabled:"ungrouped"!==l("sliderPaddingType"),slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:l("sliderPaddingBottom"),suffix:l("sliderPaddingBottomSuffix")},onChange:({value:e,suffix:t})=>({[s("sliderPaddingBottom")]:e,[s("sliderPaddingBottomSuffix")]:t,[s("sliderPadding")]:e===l("sliderPaddingRight")&&e===l("sliderPaddingLeft")&&e===l("sliderPaddingTop")?e:l("sliderPadding")})},{id:s("sliderPaddingLeft"),icon:"nc-styling-left",type:"slider",disabled:"ungrouped"!==l("sliderPaddingType"),slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:l("sliderPaddingLeft"),suffix:l("sliderPaddingLeftSuffix")},onChange:({value:e,suffix:t})=>({[s("sliderPaddingLeft")]:e,[s("sliderPaddingLeftSuffix")]:t,[s("sliderPadding")]:e===l("sliderPaddingRight")&&e===l("sliderPaddingTop")&&e===l("sliderPaddingBottom")?e:l("sliderPadding")})}]}}function dt({v:e,device:t,devices:o="all",state:n}){const i=e=>Object(r.defaultValueKey)({key:e,device:t,state:n});return{id:i("twitter"),label:Object(a.a)("Twitter"),type:"select",devices:o,choices:[{title:Object(a.a)("Embed"),value:"embed"},{title:Object(a.a)("Button"),value:"button"}],value:(l="twitter",Object(r.defaultValueValue)({v:e,key:l,device:t,state:n})),onChange:e=>({[i("twitter")]:e,[i("twitterType")]:"embed"===e?"embed":"followButton"})};var l}function ut({title:e}){return{title:e,getItems:()=>[]}}},function(e,t,o){"use strict";o.d(t,"h",(function(){return n})),o.d(t,"f",(function(){return a})),o.d(t,"c",(function(){return r})),o.d(t,"b",(function(){return i})),o.d(t,"a",(function(){return l})),o.d(t,"g",(function(){return s})),o.d(t,"e",(function(){return c})),o.d(t,"d",(function(){return d}));const n=(e,t)=>"string"==typeof e?e:t,a=(e,t)=>n(e)||t,r=e=>e&&e[0].toUpperCase()+e.slice(1),i=(e,t)=>""===e?t:e+r(t),l=e=>e.reduce(i,""),s=(e,...t)=>{let o=0;return e.replace(/%s/g,()=>t[o++])},c=e=>encodeURIComponent(JSON.stringify(e)),d=e=>JSON.parse(decodeURIComponent(e))},function(e,t,o){"use strict";o.r(t),o.d(t,"renderStyles",(function(){return b})),o.d(t,"css",(function(){return g})),o.d(t,"tmpCSSFromCache",(function(){return v})),o.d(t,"cssStyleSizeWidthPercent",(function(){return z})),o.d(t,"cssStyleSizeWidthPx",(function(){return E})),o.d(t,"cssStyleSizeMaxWidthPercent",(function(){return H})),o.d(t,"cssStyleSizeWidthStoryOnly",(function(){return k})),o.d(t,"cssStyleSizeHeightPx",(function(){return F})),o.d(t,"cssStyleSizeMinHeightPx",(function(){return _})),o.d(t,"cssStyleSizeMaxWidthSize",(function(){return R})),o.d(t,"cssStyleSizeSizePercent",(function(){return M})),o.d(t,"cssStyleSizeMaxWidthContainer",(function(){return I})),o.d(t,"cssStyleSizeTextSpacing",(function(){return A})),o.d(t,"cssStyleSizeSpacing",(function(){return N})),o.d(t,"cssStyleSizeHeightPxOnly",(function(){return D})),o.d(t,"cssStyleSizeHeightPercentOnly",(function(){return V})),o.d(t,"cssStyleSizeSize",(function(){return L})),o.d(t,"cssStyleSizeWidth",(function(){return W})),o.d(t,"cssStyleElementLineBorder",(function(){return $})),o.d(t,"cssStyleTypographyElementCountdownLabelFontSize",(function(){return te})),o.d(t,"cssStyleNumberTypography2FontFamily",(function(){return ae})),o.d(t,"cssStyleNumberTypography2FontSize",(function(){return re})),o.d(t,"cssStyleNumberTypography2LetterSpacing",(function(){return se})),o.d(t,"cssStyleNumberTypography2FontWeight",(function(){return le})),o.d(t,"cssStyleNumberTypography2LineHeight",(function(){return ie})),o.d(t,"cssStyleTitleTypography2FontFamily",(function(){return ce})),o.d(t,"cssStyleTitleTypography2FontSize",(function(){return de})),o.d(t,"cssStyleTitleTypography2LetterSpacing",(function(){return be})),o.d(t,"cssStyleTitleTypography2FontWeight",(function(){return pe})),o.d(t,"cssStyleTitleTypography2LineHeight",(function(){return ue})),o.d(t,"cssStyleMessageTypography2FontFamily",(function(){return me})),o.d(t,"cssStyleMessageTypography2FontSize",(function(){return he})),o.d(t,"cssStyleMessageTypography2LetterSpacing",(function(){return fe})),o.d(t,"cssStyleMessageTypography2FontWeight",(function(){return ve})),o.d(t,"cssStyleMessageTypography2LineHeight",(function(){return ge})),o.d(t,"cssStyleElementCountDown2NumberColor",(function(){return ye})),o.d(t,"cssStyleElementCountDown2TitleColor",(function(){return Oe})),o.d(t,"cssStyleElementCountDown2MessageColor",(function(){return Se})),o.d(t,"cssStyleElementCountDown2SpacingLeft",(function(){return oe})),o.d(t,"cssStyleElementCountDown2SpacingRight",(function(){return ne})),o.d(t,"cssStyleElementCountDown2HoverTransitionProperty",(function(){return Ce})),o.d(t,"cssStyleElementCounterChartEnd",(function(){return xe})),o.d(t,"cssStyleElementCounterChartWidth",(function(){return je})),o.d(t,"cssStyleElementCounterFillColor",(function(){return Be})),o.d(t,"cssStyleElementCounterStrokeColor",(function(){return Pe})),o.d(t,"cssStyleElementCounterTransitionHoverProperty",(function(){return we})),o.d(t,"cssStyleElementIconBoxFlexDirection",(function(){return Te})),o.d(t,"cssStyleElementIconBoxMarginRight",(function(){return ze})),o.d(t,"cssStyleElementIconBoxMarginLeft",(function(){return Ee})),o.d(t,"cssStyleBorder",(function(){return ke})),o.d(t,"cssStyleBorderTransparentColor",(function(){return He})),o.d(t,"cssStyleElementImageGallery3FontFamily",(function(){return Ke})),o.d(t,"cssStyleElementImageGallery3FontSize",(function(){return qe})),o.d(t,"cssStyleElementImageGallery3LineHeight",(function(){return Ye})),o.d(t,"cssStyleElementImageGallery3FontWeight",(function(){return Xe})),o.d(t,"cssStyleElementImageGallery3LetterSpacing",(function(){return Ze})),o.d(t,"cssStyleElementImageGalleryWidth",(function(){return _e})),o.d(t,"cssStyleElementImageGalleryMargin",(function(){return Re})),o.d(t,"cssStyleElementImageGalleryItemWidth",(function(){return Me})),o.d(t,"cssStyleElementImageGalleryItemPadding",(function(){return Le})),o.d(t,"cssStyleElementImageGalleryFilterSpacing",(function(){return We})),o.d(t,"cssStyleElementImageGalleryFilterAfterSpacing",(function(){return Ie})),o.d(t,"cssStyleElementImageGalleryFilterHorizontalAlign",(function(){return Ne})),o.d(t,"cssStyleElementImageGalleryPaddingFourFields",(function(){return Ae})),o.d(t,"cssStyleElementImageGalleryBorderRadius",(function(){return Ue})),o.d(t,"cssStyleElementImageGalleryFilterColor",(function(){return De})),o.d(t,"cssStyleElementImageGalleryFilterBgColor",(function(){return Ve})),o.d(t,"cssStyleElementImageGalleryFilterBoxShadow",(function(){return $e})),o.d(t,"cssStyleElementImageGalleryFilterBorder",(function(){return Ge})),o.d(t,"cssStyleElementImageGalleryFilterActiveColor",(function(){return Je})),o.d(t,"cssStyleElementImageGalleryFilterActiveBgColor",(function(){return Qe})),o.d(t,"cssStyleElementImageGalleryFilterActiveBorder",(function(){return et})),o.d(t,"cssStyleElementImageGalleryFilterActiveShadow",(function(){return tt})),o.d(t,"cssStyleBorderRadius",(function(){return Fe})),o.d(t,"cssStyleBgColor",(function(){return ot})),o.d(t,"cssStyleBgColorHex",(function(){return nt})),o.d(t,"cssStyleBg2Color",(function(){return at})),o.d(t,"cssStyleBgGradient",(function(){return rt})),o.d(t,"cssStyleBgImage",(function(){return it})),o.d(t,"cssStyleBgMediaImage",(function(){return lt})),o.d(t,"cssStyleBgImagePosition",(function(){return st})),o.d(t,"cssStyleBgImageAttachment",(function(){return ct})),o.d(t,"cssStyleBgMediaMap",(function(){return dt})),o.d(t,"cssStyleBgMediaVideo",(function(){return ut})),o.d(t,"cssStyleColor",(function(){return pt})),o.d(t,"cssStyleLabelColor",(function(){return bt})),o.d(t,"cssStyleBoxShadow",(function(){return ht})),o.d(t,"cssStyleBoxShadowSuffixForGlamour",(function(){return mt})),o.d(t,"cssStyleBoxShadowSection",(function(){return gt})),o.d(t,"cssStyleShapeTopType",(function(){return vt})),o.d(t,"cssStyleShapeTopHeight",(function(){return ft})),o.d(t,"cssStyleShapeTopFlip",(function(){return yt})),o.d(t,"cssStyleShapeTopIndex",(function(){return Ot})),o.d(t,"cssStyleShapeBottomType",(function(){return St})),o.d(t,"cssStyleShapeBottomHeight",(function(){return Ct})),o.d(t,"cssStyleShapeBottomFlip",(function(){return xt})),o.d(t,"cssStyleShapeBottomIndex",(function(){return jt})),o.d(t,"cssStyleHoverTransition",(function(){return Bt})),o.d(t,"cssStylePropertyHoverTransition",(function(){return Pt})),o.d(t,"cssStyleTypographyFontFamily",(function(){return wt})),o.d(t,"cssStyleTypographyFontSize",(function(){return Tt})),o.d(t,"cssStyleTypographyLineHeight",(function(){return zt})),o.d(t,"cssStyleTypographyFontWeight",(function(){return Et})),o.d(t,"cssStyleTypographyLetterSpacing",(function(){return kt})),o.d(t,"cssStyleTypography2FontFamily",(function(){return G})),o.d(t,"cssStyleTypography2FontSize",(function(){return U})),o.d(t,"cssStyleTypography2LineHeight",(function(){return K})),o.d(t,"cssStyleTypography2FontWeight",(function(){return q})),o.d(t,"cssStyleTypography2LetterSpacing",(function(){return Y})),o.d(t,"cssStyleTypography3FontFamily",(function(){return X})),o.d(t,"cssStyleTypography3FontSize",(function(){return Z})),o.d(t,"cssStyleTypography3LineHeight",(function(){return J})),o.d(t,"cssStyleTypography3FontWeight",(function(){return Q})),o.d(t,"cssStyleTypography3LetterSpacing",(function(){return ee})),o.d(t,"cssStyleElementProgressBarPadding",(function(){return Ht})),o.d(t,"cssStyleSizeProgressBarMaxWidthPercent",(function(){return Ft})),o.d(t,"cssStyleElementProgressBarPropertyHoverTransition",(function(){return _t})),o.d(t,"cssStyleElementButtonBorderRadius",(function(){return Rt})),o.d(t,"cssStyleElementButtonIconPosition",(function(){return Mt})),o.d(t,"cssStyleElementButtonIconFontSize",(function(){return Lt})),o.d(t,"cssStyleElementButtonIconMargin",(function(){return Wt})),o.d(t,"cssStyleElementIconStrokeWidth",(function(){return It})),o.d(t,"cssStyleElementButtonPropertyHoverTransition",(function(){return Nt})),o.d(t,"cssStyleElementButtonPropertyContentAlign",(function(){return At})),o.d(t,"cssStyleElementFacebookButtonPropertyHoverTransition",(function(){return Dt})),o.d(t,"cssStyleElementFacebookCommentsPropertyHoverTransition",(function(){return Vt})),o.d(t,"cssStyleElementFacebookEmbedPropertyHoverTransition",(function(){return $t})),o.d(t,"cssStyleElementFacebookGroupPropertyHoverTransition",(function(){return Gt})),o.d(t,"cssStyleElementFacebookPagePropertyHoverTransition",(function(){return Ut})),o.d(t,"cssStyleElementMapPropertyHoverTransition",(function(){return Kt})),o.d(t,"cssStyleElementMapPropertyPositionFixed",(function(){return qt})),o.d(t,"cssStyleElementSoundCloudPropertyHoverTransition",(function(){return Yt})),o.d(t,"cssStyleContainerPopup2ContainerWidth",(function(){return Xt})),o.d(t,"cssStyleContainerPopup2CloseState",(function(){return Zt})),o.d(t,"cssStyleContainerPopup2ClosePosition",(function(){return no})),o.d(t,"cssStyleContainerPopup2CloseFontSize",(function(){return Qt})),o.d(t,"cssStyleContainerPopup2CloseBgSize",(function(){return eo})),o.d(t,"cssStyleContainerPopup2CloseBorderRadius",(function(){return to})),o.d(t,"cssStyleContainerPopup2CloseColor",(function(){return Jt})),o.d(t,"cssStyleContainerPopup2CloseBgColor",(function(){return oo})),o.d(t,"cssStyleContainerPopup2RowFlexVerticalAlign",(function(){return ao})),o.d(t,"cssStyleContainerPopup2CustomHeight",(function(){return ro})),o.d(t,"cssStyleContainerPopup2CustomHeightOverflow",(function(){return io})),o.d(t,"cssStyleContainerPopup2Custom2Height100",(function(){return lo})),o.d(t,"cssStyleContainerPopup2Custom2MaxHeight100",(function(){return so})),o.d(t,"cssStyleZIndex",(function(){return co})),o.d(t,"cssStyleZIndexStory",(function(){return uo})),o.d(t,"cssStyleFlexVerticalAlign",(function(){return po})),o.d(t,"cssStyleFlexColumnVerticalAlign",(function(){return go})),o.d(t,"cssStyleFlexHorizontalAlign",(function(){return bo})),o.d(t,"cssStyleContentAlign",(function(){return mo})),o.d(t,"cssStyleMarginAlign",(function(){return ho})),o.d(t,"cssStyleExcerptAlign",(function(){return vo})),o.d(t,"cssStyleFlexColumn",(function(){return fo})),o.d(t,"cssStylePadding",(function(){return jo})),o.d(t,"cssStylePaddingFourFields",(function(){return yo})),o.d(t,"cssStylePaddingPreview",(function(){return Oo})),o.d(t,"cssStylePaddingTopForEditorResizer",(function(){return So})),o.d(t,"cssStylePaddingBottomForEditorResizer",(function(){return Co})),o.d(t,"cssStylePaddingRightLeftForEditor",(function(){return xo})),o.d(t,"cssStyleItemPadding",(function(){return Bo})),o.d(t,"cssStyleMargin",(function(){return Po})),o.d(t,"cssStyleItemMargin",(function(){return wo})),o.d(t,"cssStyleDisplayFlex",(function(){return To})),o.d(t,"cssStyleDisplayInlineFlex",(function(){return zo})),o.d(t,"cssStyleDisplayBlock",(function(){return Eo})),o.d(t,"cssStyleVisible",(function(){return ko})),o.d(t,"cssStyleVisibleEditorDisplayNoneOrFlex",(function(){return Ho})),o.d(t,"cssStyleVisibleEditorDisplayNoneOrBlock",(function(){return _o})),o.d(t,"cssStyleVisibleEditorDisplayNoneOrInlineFlex",(function(){return Fo})),o.d(t,"cssStyleVisibleMode",(function(){return Ro})),o.d(t,"cssStyleShowMembershipBlock",(function(){return Mo})),o.d(t,"cssStyleFilter",(function(){return Wo})),o.d(t,"cssStyleFilterSuffixForGlamour",(function(){return Lo})),o.d(t,"cssStyleElementVideoPaddingRatio",(function(){return Io})),o.d(t,"cssStyleElementVideoFilter",(function(){return No})),o.d(t,"cssStyleElementVideoPointerEvents",(function(){return Ao})),o.d(t,"cssStyleElementVideoBgSize",(function(){return Do})),o.d(t,"cssStyleElementVideoIconFontSize",(function(){return Vo})),o.d(t,"cssStyleElementVideoIconWidth",(function(){return $o})),o.d(t,"cssStyleElementVideoIconHeight",(function(){return Go})),o.d(t,"cssStyleElementVideoControlsIconFontSize",(function(){return Jo})),o.d(t,"cssStyleElementVideoBgColorRatio",(function(){return Uo})),o.d(t,"cssStyleElementVideoCoverSrc",(function(){return Ko})),o.d(t,"cssStyleElementVideoCoverPosition",(function(){return qo})),o.d(t,"cssStyleElementVideoPropertyHoverTransition",(function(){return Yo})),o.d(t,"cssStyleVideoControlsBgColor",(function(){return Xo})),o.d(t,"cssStyleVideoIconControls",(function(){return Zo})),o.d(t,"cssStyleElementVideoPlaylistSubTitleVideoTypography2FontFamily",(function(){return Qo})),o.d(t,"cssStyleElementVideoPlaylistSubTitleVideoTypography2FontSize",(function(){return en})),o.d(t,"cssStyleElementVideoPlaylistSubTitleVideoTypography2LineHeight",(function(){return tn})),o.d(t,"cssStyleElementVideoPlaylistSubTitleVideoTypography2FontWeight",(function(){return on})),o.d(t,"cssStyleElementVideoPlaylistSubTitleVideoTypography2LetterSpacing",(function(){return nn})),o.d(t,"cssStyleElementVideoPlaylistBorderItem",(function(){return ln})),o.d(t,"cssStyleElementVideoPlaylistGridItemWidth",(function(){return cn})),o.d(t,"cssStyleSizeWidthPixel",(function(){return an})),o.d(t,"cssStyleElementVideoPlaylistImageSize",(function(){return rn})),o.d(t,"cssStyleSizeWidthVideoBlock",(function(){return sn})),o.d(t,"cssStyleBgIconCoverColor",(function(){return pn})),o.d(t,"cssStyleCoverIconColor",(function(){return dn})),o.d(t,"cssStyleCoverSubTitleColor",(function(){return un})),o.d(t,"cssStyleElementVideoPlaylistItemActiveBg",(function(){return bn})),o.d(t,"cssStyleElementVideoPlaylistBorderItemActive",(function(){return mn})),o.d(t,"cssStyleElementVideoPlaylistItemActiveColor",(function(){return hn})),o.d(t,"cssStyleElementVideoPlaylistItemSubtitleActiveColor",(function(){return gn})),o.d(t,"cssStyleElementMediaIconFontSize",(function(){return vn})),o.d(t,"cssStyleElementMediaPadding",(function(){return fn})),o.d(t,"cssStyleRowMinHeight",(function(){return yn})),o.d(t,"cssStyleRowReverseColumn",(function(){return On})),o.d(t,"cssStylePosition",(function(){return wn})),o.d(t,"cssStylePositionMode",(function(){return Tn})),o.d(t,"cssStyleCustomPosition",(function(){return zn})),o.d(t,"cssStyleCustomWidth",(function(){return En})),o.d(t,"cssStyleOffset",(function(){return kn})),o.d(t,"cssStyleIconSpacing",(function(){return Hn})),o.d(t,"cssStyleIconSize",(function(){return Fn})),o.d(t,"cssStyleSectionMaxWidth",(function(){return Mn})),o.d(t,"cssStyleSectionSliderHeight",(function(){return Ln})),o.d(t,"cssStyleSectionColorDots",(function(){return Wn})),o.d(t,"cssStyleSectionColorArrows",(function(){return In})),o.d(t,"cssStyleSectionPropertyHoverTransition",(function(){return Nn})),o.d(t,"cssStyleSectionToolbarOffset",(function(){return An})),o.d(t,"cssStyleSectionHeightStyle",(function(){return Dn})),o.d(t,"cssStyleSectionPaddingsForEditorResize",(function(){return Vn})),o.d(t,"cssStyleSectionPopupContainerWrap",(function(){return $n})),o.d(t,"cssStyleElementBreadcrumbsArrowSize",(function(){return Gn})),o.d(t,"cssStyleElementBreadcrumbsColorActive",(function(){return Un})),o.d(t,"cssStyleElementBreadcrumbsColorArrows",(function(){return Kn})),o.d(t,"cssStyleElementForm2FlexBasisPercent",(function(){return Yn})),o.d(t,"cssStyleElementForm2SubmitWidth",(function(){return Xn})),o.d(t,"cssStyleElementForm2InputHeight",(function(){return Zn})),o.d(t,"cssStyleElementForm2FieldsLineHeight",(function(){return ta})),o.d(t,"cssStyleElementForm2FieldsLabelFontFamily",(function(){return oa})),o.d(t,"cssStyleElementForm2FieldsLabelFontSize",(function(){return na})),o.d(t,"cssStyleElementForm2FieldsLabelFontWeight",(function(){return ra})),o.d(t,"cssStyleElementForm2FieldsLabelLetterSpacing",(function(){return ia})),o.d(t,"cssStyleElementForm2FieldsLabelAlign",(function(){return Jn})),o.d(t,"cssStyleElementForm2FieldsLabelLineHeight",(function(){return aa})),o.d(t,"cssStyleElementForm2FieldsLabelPadding",(function(){return la})),o.d(t,"cssStyleElementForm2Margin",(function(){return Qn})),o.d(t,"cssStyleElementForm2Padding",(function(){return ea})),o.d(t,"cssStyleElementForm2FieldsBorderRequired",(function(){return ga})),o.d(t,"cssStyleElementForm2FieldsCheckboxColor",(function(){return sa})),o.d(t,"cssStyleElementForm2FieldsCheckboxFontFamily",(function(){return ca})),o.d(t,"cssStyleElementForm2FieldsCheckboxFontSize",(function(){return da})),o.d(t,"cssStyleElementForm2FieldsCheckboxFontWeight",(function(){return ua})),o.d(t,"cssStyleElementForm2FieldsCheckboxLetterSpacing",(function(){return pa})),o.d(t,"cssStyleElementForm2FieldsCheckboxLineHeight",(function(){return ba})),o.d(t,"cssStyleElementForm2FieldsSelectColor",(function(){return ma})),o.d(t,"cssStyleElementForm2FieldsSelectBgColor",(function(){return ha})),o.d(t,"cssStyleElementForm2FieldsSelectChoiceBgColor",(function(){return va})),o.d(t,"cssStyleElementForm2FieldsSelectBorder",(function(){return fa})),o.d(t,"cssStyleElementForm2FieldsSelectBorderRadius",(function(){return ya})),o.d(t,"cssStyleElementForm2FieldsSelectBoxShadow",(function(){return Oa})),o.d(t,"cssStyleElementForm2FieldColumns",(function(){return Sa})),o.d(t,"cssStyleElementForm2StoryButtonHeight",(function(){return Ca})),o.d(t,"cssStyleElementLoginFormMargin",(function(){return xa})),o.d(t,"cssStyleElementLoginFieldPadding",(function(){return ja})),o.d(t,"cssStyleElementLoginLostPasswordColor",(function(){return Ea})),o.d(t,"cssStyleElementLoginLostPasswordAlign",(function(){return ka})),o.d(t,"cssStyleElementLoginLostPasswordTypography2FontFamily",(function(){return Ba})),o.d(t,"cssStyleElementLoginLostPasswordTypography2FontSize",(function(){return Pa})),o.d(t,"cssStyleElementLoginLostPasswordTypography2FontWeight",(function(){return Ta})),o.d(t,"cssStyleElementLoginLostPasswordTypography2LetterSpacing",(function(){return za})),o.d(t,"cssStyleElementLoginLostPasswordTypography2LineHeight",(function(){return wa})),o.d(t,"cssStyleElementLoginAutorizedAlign",(function(){return Ha})),o.d(t,"cssStyleElementLoginTextTypography2FontFamily",(function(){return Fa})),o.d(t,"cssStyleElementLoginTextTypography2FontSize",(function(){return _a})),o.d(t,"cssStyleElementLoginTextTypography2LineHeight",(function(){return Ra})),o.d(t,"cssStyleElementLoginTextTypography2FontWeight",(function(){return Ma})),o.d(t,"cssStyleElementLoginTextTypography2LetterSpacing",(function(){return La})),o.d(t,"cssStyleElementLoginTextColor",(function(){return Wa})),o.d(t,"cssStyleElementLoginLinkColor",(function(){return Ia})),o.d(t,"cssStyleElementPostInfoColorText",(function(){return Aa})),o.d(t,"cssStyleElementPostInfoColorIcons",(function(){return Na})),o.d(t,"cssStyleElementPostInfoSpacing",(function(){return Da})),o.d(t,"cssStyleElementPostNavigation2TitleFontFamily",(function(){return Va})),o.d(t,"cssStyleElementPostNavigation2TitleFontSize",(function(){return $a})),o.d(t,"cssStyleElementPostNavigation2TitleLineHeight",(function(){return Ga})),o.d(t,"cssStyleElementPostNavigation2TitleFontWeight",(function(){return Ua})),o.d(t,"cssStyleElementPostNavigation2TitleLetterSpacing",(function(){return Ka})),o.d(t,"cssStyleElementPostNavigation2PostFontFamily",(function(){return qa})),o.d(t,"cssStyleElementPostNavigation2PostFontSize",(function(){return Ya})),o.d(t,"cssStyleElementPostNavigation2PostLineHeight",(function(){return Xa})),o.d(t,"cssStyleElementPostNavigation2PostFontWeight",(function(){return Za})),o.d(t,"cssStyleElementPostNavigation2PostLetterSpacing",(function(){return Ja})),o.d(t,"cssStyleElementPostNavigationColorTitle",(function(){return Qa})),o.d(t,"cssStyleElementPostNavigationColorPost",(function(){return er})),o.d(t,"cssStyleElementPostNavigationSpacing",(function(){return tr})),o.d(t,"cssStyleElementPostNavigationSeparationHeight",(function(){return or})),o.d(t,"cssStyleElementPostNavigationShowSeparation",(function(){return nr})),o.d(t,"cssStyleElementStarRatingRatingColor",(function(){return ar})),o.d(t,"cssStyleElementStarRatingRatingBackgroundColor",(function(){return rr})),o.d(t,"cssStyleElementStarRatingPropertyHoverTransition",(function(){return sr})),o.d(t,"cssStyleElementStarRatingTextSpacing",(function(){return dr})),o.d(t,"cssStyleElementStarRatingStyle2Background",(function(){return ir})),o.d(t,"cssStyleElementStarRatingStyle2BorderRadius",(function(){return lr})),o.d(t,"cssStyleElementStarRatingDirection",(function(){return cr})),o.d(t,"cssStyleElementTimelineTabContentArrowColor",(function(){return qr})),o.d(t,"cssStyleElementTimelineTabContentArrowCustomColor",(function(){return Yr})),o.d(t,"cssStyleElementTimelineTabContentArrowCustomColor1",(function(){return Xr})),o.d(t,"cssStyleElementTimelineBeforeDisplay",(function(){return kr})),o.d(t,"cssStyleElementTimelineCustomLineOdd",(function(){return Ir})),o.d(t,"cssStyleElementTimelineVerticalTab",(function(){return si})),o.d(t,"cssStyleElementTimelineVerticalLastTab",(function(){return ci})),o.d(t,"cssStyleElementTimelineTabsVerticalContent",(function(){return li})),o.d(t,"cssStyleElementTimelineTabsVerticalNavIcon",(function(){return ii})),o.d(t,"cssStyleElementTimelineTabsHorizontalStyle3",(function(){return ri})),o.d(t,"cssStyleElementTimelineTabHorizontalStyle3Odd",(function(){return ai})),o.d(t,"cssStyleElementTimelineTabCustomStyle",(function(){return ni})),o.d(t,"cssStyleElementTimelineContentBeforeStyle3",(function(){return ei})),o.d(t,"cssStyleElementTimelineVerticalTabBeforeNone",(function(){return di})),o.d(t,"cssStyleElementTimelineVerticalTabBeforeStyle3",(function(){return ui})),o.d(t,"cssStyleElementTimelineNavTitleStyle3",(function(){return oi})),o.d(t,"cssStyleElementTimelineTab",(function(){return Jr})),o.d(t,"cssStyleElementTimelineTabs",(function(){return Zr})),o.d(t,"cssStyleElementTimelineTabContentBefore",(function(){return Qr})),o.d(t,"cssStyleElementTimelineNavTitle",(function(){return ti})),o.d(t,"cssStyleElementTimelineWidth",(function(){return Kr})),o.d(t,"cssStyleElementTimelineIconSize",(function(){return gr})),o.d(t,"cssStyleElementTimelineIconWidth",(function(){return fr})),o.d(t,"cssStyleElementTimelineIconHeight",(function(){return yr})),o.d(t,"cssStyleElementTimelineIconBorderRadius",(function(){return Pr})),o.d(t,"cssStyleElementTimelineNavTitleWidth",(function(){return Or})),o.d(t,"cssStyleElementTimelineLineBgColor",(function(){return Cr})),o.d(t,"cssStyleElementTimelineLineTop",(function(){return xr})),o.d(t,"cssStyleElementTimelineArrowBorder",(function(){return Br})),o.d(t,"cssStyleElementTimelineVerticalCustomTabPositionOdd",(function(){return Vr})),o.d(t,"cssStyleElementTimelineContentSpacing",(function(){return jr})),o.d(t,"cssStyleElementTimelineVerticalCustomContentSpacing",(function(){return Ur})),o.d(t,"cssStyleElementTimelinePaddingForIcon",(function(){return vr})),o.d(t,"cssStyleElementTimelineNavTitleVisible",(function(){return Sr})),o.d(t,"cssStyleElementTimelineVerticalPosition",(function(){return wr})),o.d(t,"cssStyleElementTimelineLineWidthHeightBefore",(function(){return Tr})),o.d(t,"cssStyleElementTimelineLineWidthHeightAfter",(function(){return zr})),o.d(t,"cssStyleElementTimelineVerticalLinePosition",(function(){return Er})),o.d(t,"cssStyleElementTimelineVerticalLineTopPosition",(function(){return Hr})),o.d(t,"cssStyleElementTimelineVerticalLineBottomPosition",(function(){return Fr})),o.d(t,"cssStyleElementTimelineCustomTabWidth",(function(){return _r})),o.d(t,"cssStyleElementTimelineCustomLastTabWidth",(function(){return Rr})),o.d(t,"cssStyleElementTimelineVerticalInvertPosition",(function(){return Mr})),o.d(t,"cssStyleElementTimelineVerticalInvertLinePosition",(function(){return Lr})),o.d(t,"cssStyleElementTimelineCustomLineTop",(function(){return Wr})),o.d(t,"cssStyleElementTimelineCustomContentSpacing",(function(){return Nr})),o.d(t,"cssStyleElementTimelineCustomContentBottomSpacing",(function(){return Ar})),o.d(t,"cssStyleElementTimelineVerticalCustomTabPosition",(function(){return Dr})),o.d(t,"cssStyleElementTimelineVerticalCustomPosition",(function(){return $r})),o.d(t,"cssStyleElementTimelineVerticalStyle3ArrowPosition",(function(){return Gr})),o.d(t,"cssStyleElementSwitcherNavSpacing",(function(){return hi})),o.d(t,"cssStyleElementSwitcherNavBeforeBg",(function(){return mi})),o.d(t,"cssStyleElementSwitcherActiveTextColor",(function(){return gi})),o.d(t,"cssStyleElementSwitcherNav2Width",(function(){return pi})),o.d(t,"cssStyleElementSwitcherNav2Height",(function(){return bi})),o.d(t,"cssStyleElementSwitcherWidth",(function(){return vi})),o.d(t,"cssStyleElementWPPostContentH1Color",(function(){return fi})),o.d(t,"cssStyleElementWPPostContentH2Color",(function(){return yi})),o.d(t,"cssStyleElementWPPostContentH3Color",(function(){return Oi})),o.d(t,"cssStyleElementWPPostContentH4Color",(function(){return Si})),o.d(t,"cssStyleElementWPPostContentH5Color",(function(){return Ci})),o.d(t,"cssStyleElementWPPostContentH6Color",(function(){return xi})),o.d(t,"cssStyleElementWPPostContentParagraphColor",(function(){return ji})),o.d(t,"cssStyleElementWPPostContentTypography2ParagraphFontFamily",(function(){return Bi})),o.d(t,"cssStyleElementWPPostContentTypography2ParagraphFontSize",(function(){return Pi})),o.d(t,"cssStyleElementWPPostContentTypography2ParagraphLineHeight",(function(){return wi})),o.d(t,"cssStyleElementWPPostContentTypography2ParagraphFontWeight",(function(){return Ti})),o.d(t,"cssStyleElementWPPostContentTypography2ParagraphLetterSpacing",(function(){return zi})),o.d(t,"cssStyleElementWPPostContentTypography2H1FontFamily",(function(){return Ei})),o.d(t,"cssStyleElementWPPostContentTypography2H1FontSize",(function(){return ki})),o.d(t,"cssStyleElementWPPostContentTypography2H1LineHeight",(function(){return Hi})),o.d(t,"cssStyleElementWPPostContentTypography2H1FontWeight",(function(){return Fi})),o.d(t,"cssStyleElementWPPostContentTypography2H1LetterSpacing",(function(){return _i})),o.d(t,"cssStyleElementWPPostContentTypography2H2FontFamily",(function(){return Ri})),o.d(t,"cssStyleElementWPPostContentTypography2H2FontSize",(function(){return Mi})),o.d(t,"cssStyleElementWPPostContentTypography2H2LineHeight",(function(){return Li})),o.d(t,"cssStyleElementWPPostContentTypography2H2FontWeight",(function(){return Wi})),o.d(t,"cssStyleElementWPPostContentTypography2H2LetterSpacing",(function(){return Ii})),o.d(t,"cssStyleElementWPPostContentTypography2H3FontFamily",(function(){return Ni})),o.d(t,"cssStyleElementWPPostContentTypography2H3FontSize",(function(){return Ai})),o.d(t,"cssStyleElementWPPostContentTypography2H3LineHeight",(function(){return Di})),o.d(t,"cssStyleElementWPPostContentTypography2H3FontWeight",(function(){return Vi})),o.d(t,"cssStyleElementWPPostContentTypography2H3LetterSpacing",(function(){return $i})),o.d(t,"cssStyleElementWPPostContentTypography2H4FontFamily",(function(){return Gi})),o.d(t,"cssStyleElementWPPostContentTypography2H4FontSize",(function(){return Ui})),o.d(t,"cssStyleElementWPPostContentTypography2H4LineHeight",(function(){return Ki})),o.d(t,"cssStyleElementWPPostContentTypography2H4FontWeight",(function(){return qi})),o.d(t,"cssStyleElementWPPostContentTypography2H4LetterSpacing",(function(){return Yi})),o.d(t,"cssStyleElementWPPostContentTypography2H5FontFamily",(function(){return Xi})),o.d(t,"cssStyleElementWPPostContentTypography2H5FontSize",(function(){return Zi})),o.d(t,"cssStyleElementWPPostContentTypography2H5LineHeight",(function(){return Ji})),o.d(t,"cssStyleElementWPPostContentTypography2H5FontWeight",(function(){return Qi})),o.d(t,"cssStyleElementWPPostContentTypography2H5LetterSpacing",(function(){return el})),o.d(t,"cssStyleElementWPPostContentTypography2H6FontFamily",(function(){return tl})),o.d(t,"cssStyleElementWPPostContentTypography2H6FontSize",(function(){return ol})),o.d(t,"cssStyleElementWPPostContentTypography2H6LineHeight",(function(){return nl})),o.d(t,"cssStyleElementWPPostContentTypography2H6FontWeight",(function(){return al})),o.d(t,"cssStyleElementWPPostContentTypography2H6LetterSpacing",(function(){return rl})),o.d(t,"cssStyleElementWPPostContentFontWeightInherit",(function(){return il})),o.d(t,"cssStyleElementWOOPriceColorSale",(function(){return ll})),o.d(t,"cssStyleElementWOOPriceSaleFontFamily",(function(){return sl})),o.d(t,"cssStyleElementWOOPriceSaleFontSize",(function(){return cl})),o.d(t,"cssStyleElementWOOPriceSaleLineHeight",(function(){return dl})),o.d(t,"cssStyleElementWOOPriceSaleFontWeight",(function(){return ul})),o.d(t,"cssStyleElementWOOPriceSaleLetterSpacing",(function(){return pl})),o.d(t,"cssStyleElementWOOPriceColumn",(function(){return bl})),o.d(t,"cssStyleElementWOOPriceSpacingFirst",(function(){return ml})),o.d(t,"cssStyleElementWOOPriceSpacingLast",(function(){return hl})),o.d(t,"cssStyleElementWOOAttributesAttributesFontFamily",(function(){return gl})),o.d(t,"cssStyleElementWOOAttributesAttributesFontSize",(function(){return vl})),o.d(t,"cssStyleElementWOOAttributesAttributesLineHeight",(function(){return fl})),o.d(t,"cssStyleElementWOOAttributesAttributesFontWeight",(function(){return yl})),o.d(t,"cssStyleElementWOOAttributesAttributesLetterSpacing",(function(){return Ol})),o.d(t,"cssStyleElementWOOAttributesSpacing",(function(){return Sl})),o.d(t,"cssStyleElementWOOAttributesAttributeColor",(function(){return Cl})),o.d(t,"cssStyleElementWOOAttributesBorder",(function(){return xl})),o.d(t,"cssStyleElementWOOAttributesLastElementBorder",(function(){return jl})),o.d(t,"cssStyleElementPostsItemWidth",(function(){return Bl})),o.d(t,"cssStyleElementPostsItemSpacing",(function(){return Pl})),o.d(t,"cssStyleElementPostsPaginationSpacing",(function(){return wl})),o.d(t,"cssStyleElementPostsPaginationLinksOff",(function(){return Tl})),o.d(t,"cssStyleElementPostsPaginationFontFamily",(function(){return zl})),o.d(t,"cssStyleElementPostsPaginationFontSize",(function(){return El})),o.d(t,"cssStyleElementPostsPaginationLineHeight",(function(){return kl})),o.d(t,"cssStyleElementPostsPaginationFontWeight",(function(){return Hl})),o.d(t,"cssStyleElementPostsPaginationLetterSpacing",(function(){return Fl})),o.d(t,"cssStyleElementPostsPaginationColor",(function(){return _l})),o.d(t,"cssStyleElementPostsPaginationBgColor",(function(){return Rl})),o.d(t,"cssStyleElementPostsPaginationBorder",(function(){return Ml})),o.d(t,"cssStyleElementPostsPaginationBorderRadius",(function(){return Ll})),o.d(t,"cssStyleElementPostsFilterDisplay",(function(){return Wl})),o.d(t,"cssStyleElementPostsFilterHorizontalAlign",(function(){return Il})),o.d(t,"cssStyleElementPostsFilterSpacing",(function(){return Nl})),o.d(t,"cssStyleElementPostsFilterAfterSpacing",(function(){return Al})),o.d(t,"cssStyleElementPostsFilterFontFamily",(function(){return Dl})),o.d(t,"cssStyleElementPostsFilterFontSize",(function(){return Vl})),o.d(t,"cssStyleElementPostsFilterLineHeight",(function(){return $l})),o.d(t,"cssStyleElementPostsFilterFontWeight",(function(){return Gl})),o.d(t,"cssStyleElementPostsFilterLetterSpacing",(function(){return Ul})),o.d(t,"cssStyleElementPostsFilterColor",(function(){return Kl})),o.d(t,"cssStyleElementPostsFilterBgColor",(function(){return ql})),o.d(t,"cssStyleElementPostsFilterBorder",(function(){return Yl})),o.d(t,"cssStyleElementPostsFilterBorderRadius",(function(){return Xl})),o.d(t,"cssStyleElementPostsFilterShadow",(function(){return Zl})),o.d(t,"cssStyleElementPostsFilterPaddingFourFields",(function(){return Jl})),o.d(t,"cssStyleElementPostsFilterActiveColor",(function(){return Ql})),o.d(t,"cssStyleElementPostsFilterActiveBgColor",(function(){return es})),o.d(t,"cssStyleElementPostsFilterActiveBorder",(function(){return ts})),o.d(t,"cssStyleElementPostsFilterActiveShadow",(function(){return os})),o.d(t,"cssStyleElementAccordion3FontFamily",(function(){return xs})),o.d(t,"cssStyleElementAccordion3FontSize",(function(){return js})),o.d(t,"cssStyleElementAccordion3LineHeight",(function(){return Bs})),o.d(t,"cssStyleElementAccordion3FontWeight",(function(){return Ps})),o.d(t,"cssStyleElementAccordion3LetterSpacing",(function(){return ws})),o.d(t,"cssStyleElementAccordionFilterColor",(function(){return as})),o.d(t,"cssStyleElementAccordionFilterBgColor",(function(){return cs})),o.d(t,"cssStyleElementAccordionFilterBorder",(function(){return ds})),o.d(t,"cssStyleElementAccordionFilterBorderRadius",(function(){return us})),o.d(t,"cssStyleElementAccordionFilterShadow",(function(){return ps})),o.d(t,"cssStyleElementAccordionMarginTop",(function(){return bs})),o.d(t,"cssStyleElementAccordionSpacing",(function(){return ms})),o.d(t,"cssStyleElementAccordionFilterSpacing",(function(){return hs})),o.d(t,"cssStyleElementAccordionFilterAfterSpacing",(function(){return gs})),o.d(t,"cssStyleElementAccordionNavAlign",(function(){return vs})),o.d(t,"cssStyleElementAccordionNavTextAlign",(function(){return fs})),o.d(t,"cssStyleElementAccordionNavIconSpacing",(function(){return ys})),o.d(t,"cssStyleElementAccordionNavIconSize",(function(){return Os})),o.d(t,"cssStyleElementAccordionFilterHorizontalAlign",(function(){return Ss})),o.d(t,"cssStyleElementAccordionFilterPaddingFourFields",(function(){return Cs})),o.d(t,"cssStyleElementAccordionFilterActiveColor",(function(){return rs})),o.d(t,"cssStyleElementAccordionFilterActiveBgColor",(function(){return is})),o.d(t,"cssStyleElementAccordionFilterActiveBorder",(function(){return ls})),o.d(t,"cssStyleElementAccordionFilterActiveShadow",(function(){return ss})),o.d(t,"cssStyleElementAccordionActiveColor",(function(){return Ts})),o.d(t,"cssStyleElementAccordionActiveBgColor",(function(){return zs})),o.d(t,"cssStyleElementAccordionActiveBorder",(function(){return Es})),o.d(t,"cssStyleElementAccordionActiveShadow",(function(){return ks})),o.d(t,"cssStyleElementAccordionAnimDuration",(function(){return Hs})),o.d(t,"cssStyleElementTabsItemsBorderWidth",(function(){return Fs})),o.d(t,"cssStyleElementTabsBtnSpacing",(function(){return _s})),o.d(t,"cssStyleElementTabsBtnIconSize",(function(){return Rs})),o.d(t,"cssStyleElementTabsBtnActiveBorderBottomColor",(function(){return Ms})),o.d(t,"cssStyleElementTabsBtnActiveBorderRightColor",(function(){return Ls})),o.d(t,"cssStyleElementTabsBtnActiveBorderLeftColor",(function(){return Ws})),o.d(t,"cssStyleElementTabsActiveBeforeAfterColor",(function(){return Is})),o.d(t,"cssStyleElementTabsActiveBeforeHeight",(function(){return Ns})),o.d(t,"cssStyleElementTabsActiveBeforeWidth",(function(){return As})),o.d(t,"cssStyleElementTabsBeforeAfterRightWidth",(function(){return Ds})),o.d(t,"cssStyleElementTabsBeforeAfterLeftWidth",(function(){return Vs})),o.d(t,"cssStyleElementTabsBorderColor",(function(){return $s})),o.d(t,"cssStyleElementTabsBorderWidth",(function(){return Gs})),o.d(t,"cssStyleElementTabsBorderMobileWidth",(function(){return Us})),o.d(t,"cssStyleElementTabsEmptyContent",(function(){return Ks})),o.d(t,"cssStyleElementTabsBtnIconPosition",(function(){return qs})),o.d(t,"cssStyleElementTabsBtnIconJustifyContent",(function(){return Ys})),o.d(t,"cssStyleElementTabsBeforeAfterTop",(function(){return Xs})),o.d(t,"cssStyleElementTabsBeforeAfterBottom",(function(){return Zs})),o.d(t,"cssStyleElementTabsAfterSpacing",(function(){return Js})),o.d(t,"cssStyleElementTabsSpacing",(function(){return ec})),o.d(t,"cssStyleElementTabsAfterSpacingVertical",(function(){return Qs})),o.d(t,"cssStyleElementTabsNavAlign",(function(){return tc})),o.d(t,"cssStyleElementTabsNavBorderBottom",(function(){return nc})),o.d(t,"cssStyleElementTabsNavStyle3Before",(function(){return ac})),o.d(t,"cssStyleElementTabsPadding",(function(){return oc})),o.d(t,"cssStyleElementTabsActiveColor",(function(){return rc})),o.d(t,"cssStyleElementTabsActiveBgColor",(function(){return ic})),o.d(t,"cssStyleElementTabsActiveBorderColor",(function(){return sc})),o.d(t,"cssStyleElementTabsActiveShadow",(function(){return lc})),o.d(t,"cssStyleElementCommentsNameFontFamily",(function(){return cc})),o.d(t,"cssStyleElementCommentsNameFontSize",(function(){return dc})),o.d(t,"cssStyleElementCommentsNameLineHeight",(function(){return uc})),o.d(t,"cssStyleElementCommentsNameFontWeight",(function(){return pc})),o.d(t,"cssStyleElementCommentsNameLetterSpacing",(function(){return bc})),o.d(t,"cssStyleElementCommentsDateFontFamily",(function(){return yc})),o.d(t,"cssStyleElementCommentsDateFontSize",(function(){return Oc})),o.d(t,"cssStyleElementCommentsDateLineHeight",(function(){return Sc})),o.d(t,"cssStyleElementCommentsDateFontWeight",(function(){return Cc})),o.d(t,"cssStyleElementCommentsDateLetterSpacing",(function(){return xc})),o.d(t,"cssStyleElementCommentsCommentFontFamily",(function(){return mc})),o.d(t,"cssStyleElementCommentsCommentFontSize",(function(){return hc})),o.d(t,"cssStyleElementCommentsCommentLineHeight",(function(){return gc})),o.d(t,"cssStyleElementCommentsCommentFontWeight",(function(){return vc})),o.d(t,"cssStyleElementCommentsCommentLetterSpacing",(function(){return fc})),o.d(t,"cssStyleElementCommentsReplyFontFamily",(function(){return jc})),o.d(t,"cssStyleElementCommentsReplyFontSize",(function(){return Bc})),o.d(t,"cssStyleElementCommentsReplyLineHeight",(function(){return Pc})),o.d(t,"cssStyleElementCommentsReplyFontWeight",(function(){return wc})),o.d(t,"cssStyleElementCommentsReplyLetterSpacing",(function(){return Tc})),o.d(t,"cssStyleElementCommentsPostButtonFontFamily",(function(){return zc})),o.d(t,"cssStyleElementCommentsPostButtonFontSize",(function(){return Ec})),o.d(t,"cssStyleElementCommentsPostButtonLineHeight",(function(){return kc})),o.d(t,"cssStyleElementCommentsPostButtonFontWeight",(function(){return Hc})),o.d(t,"cssStyleElementCommentsPostButtonLetterSpacing",(function(){return Fc})),o.d(t,"cssStyleElementCommentsLogoSize",(function(){return _c})),o.d(t,"cssStyleElementCommentsWidthContainer",(function(){return Rc})),o.d(t,"cssStyleElementCommentsPostButtonColor",(function(){return Mc})),o.d(t,"cssStyleElementCommentsPostButtonBg",(function(){return Lc})),o.d(t,"cssStyleElementCommentsColorLink",(function(){return Wc})),o.d(t,"cssStyleElementCommentsNameColor",(function(){return Ic})),o.d(t,"cssStyleElementCommentsCommentsColor",(function(){return Nc})),o.d(t,"cssStyleElementCommentsChildMargin",(function(){return Ac})),o.d(t,"cssStyleElementCommentsStarsColor",(function(){return Dc})),o.d(t,"cssStyleElementCommentsStarsBgColor",(function(){return Vc})),o.d(t,"cssStyleElementCommentsStarsSize",(function(){return $c})),o.d(t,"cssStyleElementSearchAutocompleteColor",(function(){return Gc})),o.d(t,"cssStyleElementSearchMinWidth",(function(){return Uc})),o.d(t,"cssStyleElementSearchMinHeight",(function(){return Kc})),o.d(t,"cssStyleElementSearchPropertyHoverTransition",(function(){return qc})),o.d(t,"cssStyleElementSearchLineHeight",(function(){return Yc})),o.d(t,"cssStyleElementWOOProductMetaType",(function(){return Xc})),o.d(t,"cssStyleElementWOOProductMetaCategoryFontFamily",(function(){return Zc})),o.d(t,"cssStyleElementWOOProductMetaCategoryFontSize",(function(){return Jc})),o.d(t,"cssStyleElementWOOProductMetaCategoryLineHeight",(function(){return Qc})),o.d(t,"cssStyleElementWOOProductMetaCategoryFontWeight",(function(){return ed})),o.d(t,"cssStyleElementWOOProductMetaCategoryLetterSpacing",(function(){return td})),o.d(t,"cssStyleElementWOOProductMetaValueFontFamily",(function(){return od})),o.d(t,"cssStyleElementWOOProductMetaValueFontSize",(function(){return nd})),o.d(t,"cssStyleElementWOOProductMetaValueLineHeight",(function(){return ad})),o.d(t,"cssStyleElementWOOProductMetaValueFontWeight",(function(){return rd})),o.d(t,"cssStyleElementWOOProductMetaValueLetterSpacing",(function(){return id})),o.d(t,"cssStyleElementWOOProductMetaTopSpacing",(function(){return ld})),o.d(t,"cssStyleElementWOOProductMetaRightSpacing",(function(){return sd})),o.d(t,"cssStyleElementWOOProductMetaRightSpacingInline",(function(){return cd})),o.d(t,"cssStyleElementWOOProductMetaCategoryColor",(function(){return dd})),o.d(t,"cssStyleElementWOOProductMetaValueColor",(function(){return ud})),o.d(t,"cssStyleElementWOOProductMetaDividers",(function(){return pd})),o.d(t,"cssStyleElementWOORatingSize",(function(){return bd})),o.d(t,"cssStyleElementWOORatingTextColor",(function(){return md})),o.d(t,"cssStyleElementWOORatingSpacing",(function(){return hd})),o.d(t,"cssStyleElementWOORatingBgStarColor",(function(){return gd})),o.d(t,"cssStyleElementWOOCartIconColor",(function(){return vd})),o.d(t,"cssStyleElementWOOCartSubtotalDisabled",(function(){return fd})),o.d(t,"cssStyleElementWOOCartPurchasesDisabled",(function(){return yd})),o.d(t,"cssStyleElementWOOCartTransitionProperty",(function(){return Od})),o.d(t,"cssStyleElementWOOCartPurchasesColor",(function(){return Sd})),o.d(t,"cssStyleElementWOOCartPurchasesFontFamily",(function(){return Cd})),o.d(t,"cssStyleElementWOOCartPurchasesFontSize",(function(){return xd})),o.d(t,"cssStyleElementWOOCartPurchasesLineHeight",(function(){return jd})),o.d(t,"cssStyleElementWOOCartPurchasesFontWeight",(function(){return Bd})),o.d(t,"cssStyleElementWOOCartPurchasesLetterSpacing",(function(){return Pd})),o.d(t,"cssStyleElementWOOCartTitleFontFamily",(function(){return wd})),o.d(t,"cssStyleElementWOOCartTitleFontSize",(function(){return Td})),o.d(t,"cssStyleElementWOOCartTitleLineHeight",(function(){return zd})),o.d(t,"cssStyleElementWOOCartTitleFontWeight",(function(){return Ed})),o.d(t,"cssStyleElementWOOCartTitleLetterSpacing",(function(){return kd})),o.d(t,"cssStyleElementWOOCartCostFontFamily",(function(){return Hd})),o.d(t,"cssStyleElementWOOCartCostFontSize",(function(){return Fd})),o.d(t,"cssStyleElementWOOCartCostLineHeight",(function(){return _d})),o.d(t,"cssStyleElementWOOCartCostFontWeight",(function(){return Rd})),o.d(t,"cssStyleElementWOOCartCostLetterSpacing",(function(){return Md})),o.d(t,"cssStyleElementWOOCartSubtotalFontFamily",(function(){return Ld})),o.d(t,"cssStyleElementWOOCartSubtotalFontSize",(function(){return Wd})),o.d(t,"cssStyleElementWOOCartSubtotalLineHeight",(function(){return Id})),o.d(t,"cssStyleElementWOOCartSubtotalFontWeight",(function(){return Nd})),o.d(t,"cssStyleElementWOOCartSubtotalLetterSpacing",(function(){return Ad})),o.d(t,"cssStyleElementWOOCartButtonFontFamily",(function(){return Dd})),o.d(t,"cssStyleElementWOOCartButtonFontSize",(function(){return Vd})),o.d(t,"cssStyleElementWOOCartButtonLineHeight",(function(){return $d})),o.d(t,"cssStyleElementWOOCartButtonFontWeight",(function(){return Gd})),o.d(t,"cssStyleElementWOOCartButtonLetterSpacing",(function(){return Ud})),o.d(t,"cssStyleElementWOOCartTitleColor",(function(){return Kd})),o.d(t,"cssStyleElementWOOCartCostColor",(function(){return qd})),o.d(t,"cssStyleElementWOOCartSubtotalColor",(function(){return Yd})),o.d(t,"cssStyleElementWOOCartButtonColor",(function(){return Xd})),o.d(t,"cssStyleElementWOOCartButtonBgColor",(function(){return Zd})),o.d(t,"cssStyleElementWOOCartButtonDirection",(function(){return Jd})),o.d(t,"cssStyleElementWOOCartButtonSpacing",(function(){return Qd})),o.d(t,"cssStyleElementWOOCartButtonBorderRadius",(function(){return eu})),o.d(t,"cssStyleElementWOOCartSidebarHorizontalAlign",(function(){return tu})),o.d(t,"cssStyleElementWOOCartSidebarVerticalAlign",(function(){return ou})),o.d(t,"cssStyleElementWOOCartSidebarWidth",(function(){return nu})),o.d(t,"cssStyleElementWOOCartSidebarHeight",(function(){return au})),o.d(t,"cssStyleElementWOOCartBubbleColor",(function(){return ru})),o.d(t,"cssStyleElementWOOCartBubbleBg",(function(){return iu})),o.d(t,"cssStyleWrapperCustomHeight",(function(){return su})),o.d(t,"cssStyleWrapperContainerFlex",(function(){return uu})),o.d(t,"cssStyleWrapperFixedFlex",(function(){return cu})),o.d(t,"cssStyleWrapperBorderFlex",(function(){return du})),o.d(t,"cssStyleWrapperContainerSize",(function(){return pu})),o.d(t,"cssStyleElementMenuAlign",(function(){return bu})),o.d(t,"cssStyleElementMenuMode",(function(){return fu})),o.d(t,"cssStyleElementMenuSize",(function(){return yu})),o.d(t,"cssStyleElementMenuDropdown",(function(){return hp})),o.d(t,"cssStyleElementMenuDropdownOpened",(function(){return vp})),o.d(t,"cssStyleElementMenuInnerDropdown",(function(){return gp})),o.d(t,"cssStyleElementMenuDropdownInnerOpened",(function(){return fp})),o.d(t,"cssStyleElementMenuDropdownArrow",(function(){return yp})),o.d(t,"cssStyleElementMenuShow",(function(){return vu})),o.d(t,"cssStyleElementMenuShowIcon",(function(){return gu})),o.d(t,"cssStyleElementMenuIconSpacing",(function(){return mu})),o.d(t,"cssStyleElementMenuIconSize",(function(){return hu})),o.d(t,"cssStyleElementMenuBgColor",(function(){return Ou})),o.d(t,"cssStyleElementMenuLinkBgColor",(function(){return Su})),o.d(t,"cssStyleElementMenuPadding",(function(){return xu})),o.d(t,"cssStyleElementMenuActiveColor",(function(){return ju})),o.d(t,"cssStyleElementMenuActiveBgColor",(function(){return Pu})),o.d(t,"cssStyleElementMenuActiveLinkBgColor",(function(){return Bu})),o.d(t,"cssStyleElementMenuActiveBorder",(function(){return wu})),o.d(t,"cssStyleElementMenuCurrentColor",(function(){return Tu})),o.d(t,"cssStyleElementMenuCurrentLinkBgColor",(function(){return Eu})),o.d(t,"cssStyleElementMenuCurrentBgColor",(function(){return zu})),o.d(t,"cssStyleElementMenuCurrentBorder",(function(){return ku})),o.d(t,"cssStyleElementMenuBorder",(function(){return Cu})),o.d(t,"cssStyleElementMMenuFontFamily",(function(){return Fu})),o.d(t,"cssStyleElementMMenuFontSize",(function(){return _u})),o.d(t,"cssStyleElementMMenuLineHeight",(function(){return Ru})),o.d(t,"cssStyleElementMMenuFontWeight",(function(){return Mu})),o.d(t,"cssStyleElementMMenuLetterSpacing",(function(){return Lu})),o.d(t,"cssStyleElementMMenuColor",(function(){return Wu})),o.d(t,"cssStyleElementMMenuHoverColor",(function(){return Iu})),o.d(t,"cssStyleElementMMenuActiveColor",(function(){return Nu})),o.d(t,"cssStyleElementMMenuBorderColor",(function(){return Au})),o.d(t,"cssStyleElementMMenuBackgroundColor",(function(){return Du})),o.d(t,"cssStyleElementMMenuItemHorizontalAlign",(function(){return Vu})),o.d(t,"cssStyleElementMMenuIconColor",(function(){return $u})),o.d(t,"cssStyleElementMMenuSize",(function(){return Hu})),o.d(t,"cssStyleElementMMenuIconSpacing",(function(){return Gu})),o.d(t,"cssStyleElementMMenuIconSize",(function(){return Uu})),o.d(t,"cssStyleElementMMenuBtnNext",(function(){return Ku})),o.d(t,"cssStyleElementMMenuListViewMargin",(function(){return qu})),o.d(t,"cssStyleElementMMenuItemPadding",(function(){return Yu})),o.d(t,"cssStyleElementMMenuItemPaddingTopZero",(function(){return Xu})),o.d(t,"cssStyleElementMMenuItemPaddingBottomZero",(function(){return Zu})),o.d(t,"cssStyleElementMMenuPadding",(function(){return Ju})),o.d(t,"cssStyleElementMenuSubMenuFontFamily",(function(){return Qu})),o.d(t,"cssStyleElementMenuSubMenuFontSize",(function(){return ep})),o.d(t,"cssStyleElementMenuSubMenuLineHeight",(function(){return tp})),o.d(t,"cssStyleElementMenuSubMenuFontWeight",(function(){return op})),o.d(t,"cssStyleElementMenuSubMenuLetterSpacing",(function(){return np})),o.d(t,"cssStyleElementMenuSubMenuColor",(function(){return ap})),o.d(t,"cssStyleElementMenuSubMenuHoverColor",(function(){return rp})),o.d(t,"cssStyleElementMenuSubMenuIconSpacing",(function(){return ip})),o.d(t,"cssStyleElementMenuSubMenuIconSize",(function(){return lp})),o.d(t,"cssStyleElementMenuSubMenuBgColor",(function(){return sp})),o.d(t,"cssStyleElementMenuSubMenuHoverBgColor",(function(){return cp})),o.d(t,"cssStyleElementMenuSubMenuBorderColor",(function(){return dp})),o.d(t,"cssStyleElementMenuSubMenuBorderBottom",(function(){return up})),o.d(t,"cssStyleElementMenuSubMenuCurrentColor",(function(){return pp})),o.d(t,"cssStyleElementMenuSubMenuCurrentBgColor",(function(){return bp})),o.d(t,"cssStyleElementMenuSubMenuCurrentBoxShadow",(function(){return mp})),o.d(t,"cssStyleMenuDropdownBeforePositionLeft",(function(){return xp})),o.d(t,"cssStyleMenuDropdownBeforePositionRight",(function(){return jp})),o.d(t,"cssStyleMenuDropdownPosition",(function(){return Op})),o.d(t,"cssStyleMenuDropdownPositionLeft",(function(){return Sp})),o.d(t,"cssStyleMenuDropdownPositionRight",(function(){return Cp})),o.d(t,"cssStyleMenuFirstDropdownPosition",(function(){return Bp})),o.d(t,"cssStyleMenuFirstDropdownPositionLeft",(function(){return Pp})),o.d(t,"cssStyleMenuFirstDropdownPositionRight",(function(){return wp})),o.d(t,"cssStyleMenuFirstDropdownBeforePositionLeft",(function(){return Tp})),o.d(t,"cssStyleMenuFirstDropdownBeforePositionRight",(function(){return zp})),o.d(t,"cssStyleElementMegaMenuWidth",(function(){return Ep})),o.d(t,"cssStyleElementMegaMenuOffsetTop",(function(){return kp})),o.d(t,"cssStyleElementMegaMenuOpened",(function(){return Fp})),o.d(t,"cssStyleElementMegaMenuHeight",(function(){return Hp})),o.d(t,"cssStyleElementTableWidth",(function(){return _p})),o.d(t,"cssStyleElementTableIconSize",(function(){return Rp})),o.d(t,"cssStyleElementTableSpacing",(function(){return Mp})),o.d(t,"cssStyleElementTableBtnIconPosition",(function(){return Lp})),o.d(t,"cssStyleElementTableCustomFlexHorizontalAlign",(function(){return Wp})),o.d(t,"cssStyleElementTableAsideWidth",(function(){return Ip})),o.d(t,"cssStyleElementTableEvenBgColor",(function(){return Np})),o.d(t,"cssStyleElementTableEvenColor",(function(){return Ap})),o.d(t,"cssStyleTablePadding",(function(){return Dp})),o.d(t,"cssStyleElementMenuSimpleItemPadding",(function(){return Vp})),o.d(t,"cssStyleElementMenuSimpleColorBars",(function(){return $p})),o.d(t,"cssStyleElementMenuSimpleWidth",(function(){return Gp})),o.d(t,"cssStyleElementMenuSimpleActiveColor",(function(){return Up})),o.d(t,"cssStyleElementImageMaxWidthPreview",(function(){return qp})),o.d(t,"cssStyleElementImageHeightPreview",(function(){return Yp})),o.d(t,"cssStyleElementImageMaxWidthEditor",(function(){return Zp})),o.d(t,"cssStyleElementImageHeightEditor",(function(){return Jp})),o.d(t,"cssStyleElementImageBorderRadius",(function(){return Xp})),o.d(t,"cssStyleElementImageWidthWrapper",(function(){return Qp})),o.d(t,"cssStyleElementImageHeightWrapper",(function(){return eb})),o.d(t,"cssStyleElementImageMarginLeft",(function(){return tb})),o.d(t,"cssStyleElementImageMarginTop",(function(){return ob})),o.d(t,"cssStyleElementImagePictureSize",(function(){return nb})),o.d(t,"cssStyleElementImageTransitionProperty",(function(){return ab})),o.d(t,"cssStyleElementImageFilter",(function(){return rb})),o.d(t,"cssStyleAnimation",(function(){return ib})),o.d(t,"cssStyleAnimationDuration",(function(){return lb})),o.d(t,"cssStyleAnimationDelay",(function(){return sb})),o.d(t,"cssStyleRotate",(function(){return ub})),o.d(t,"cssStyleElementWOOAddToCartSize",(function(){return pb})),o.d(t,"cssStyleElementWOOAddToCartSpacing",(function(){return mb})),o.d(t,"cssStyleElementWOOAddToCartInputSize",(function(){return hb})),o.d(t,"cssStyleElementWOOAddToCartInputPosition",(function(){return gb})),o.d(t,"cssStyleElementWOOAddToCartInputFontFamily",(function(){return fb})),o.d(t,"cssStyleElementWOOAddToCartInputFontSize",(function(){return yb})),o.d(t,"cssStyleElementWOOAddToCartInputLineHeight",(function(){return Ob})),o.d(t,"cssStyleElementWOOAddToCartInputFontWeight",(function(){return Sb})),o.d(t,"cssStyleElementWOOAddToCartInputLetterSpacing",(function(){return Cb})),o.d(t,"cssStyleElementWOOAddToCartInputAlign",(function(){return vb})),o.d(t,"cssStyleElementWOOAddToCartInputColor",(function(){return xb})),o.d(t,"cssStyleElementWOOAddToCartInputBg",(function(){return Gb})),o.d(t,"cssStyleElementWOOAddToCartInputBorder",(function(){return Kb})),o.d(t,"cssStyleElementWOOAddToCartInputRadius",(function(){return bb})),o.d(t,"cssStyleElementWOOAddToCartInputBoxShadow",(function(){return qb})),o.d(t,"cssStyleElementWOOAddToCartButtonColor",(function(){return jb})),o.d(t,"cssStyleElementWOOAddToCartLabelFontFamily",(function(){return Bb})),o.d(t,"cssStyleElementWOOAddToCartLabelFontSize",(function(){return Pb})),o.d(t,"cssStyleElementWOOAddToCartLabelLineHeight",(function(){return wb})),o.d(t,"cssStyleElementWOOAddToCartLabelFontWeight",(function(){return Tb})),o.d(t,"cssStyleElementWOOAddToCartLabelLetterSpacing",(function(){return zb})),o.d(t,"cssStyleElementWOOAddToCartValueFontFamily",(function(){return Eb})),o.d(t,"cssStyleElementWOOAddToCartValueFontSize",(function(){return kb})),o.d(t,"cssStyleElementWOOAddToCartValueLineHeight",(function(){return Hb})),o.d(t,"cssStyleElementWOOAddToCartValueFontWeight",(function(){return Fb})),o.d(t,"cssStyleElementWOOAddToCartValueLetterSpacing",(function(){return _b})),o.d(t,"cssStyleElementWOOAddToCartLabelColor",(function(){return Rb})),o.d(t,"cssStyleElementWOOAddToCartValueColor",(function(){return Mb})),o.d(t,"cssStyleElementWOOAddToCartClearFontFamily",(function(){return Lb})),o.d(t,"cssStyleElementWOOAddToCartClearFontSize",(function(){return Wb})),o.d(t,"cssStyleElementWOOAddToCartClearLineHeight",(function(){return Ib})),o.d(t,"cssStyleElementWOOAddToCartClearFontWeight",(function(){return Nb})),o.d(t,"cssStyleElementWOOAddToCartClearLetterSpacing",(function(){return Ab})),o.d(t,"cssStyleElementWOOAddToCartClearColor",(function(){return Db})),o.d(t,"cssStyleElementWOOAddToCartTableMargin",(function(){return Vb})),o.d(t,"cssStyleElementWOOAddToCartTableBorder",(function(){return $b})),o.d(t,"cssStyleElementWOOAddToCartTableBg",(function(){return Ub})),o.d(t,"cssStyleElementWOOAddToCartTableBoxShadow",(function(){return Yb})),o.d(t,"cssStyleElementWOOAddToCartBorder",(function(){return Xb})),o.d(t,"cssStyleElementWOOAddToCartBorderRadius",(function(){return Zb})),o.d(t,"cssStyleElementWOOGalleryBorderRadiusThumbnail",(function(){return Qb})),o.d(t,"cssStyleElementWOOGalleryBorderThumbnail",(function(){return Jb})),o.d(t,"cssStyleElementWOOGalleryBoxShadowThumbnail",(function(){return em})),o.d(t,"cssStyleElementWOOGallerySpacing",(function(){return tm})),o.d(t,"cssStyleElementWOOGalleryParentSize",(function(){return om})),o.d(t,"cssStyleElementWOOGalleryBetweenThumbnail",(function(){return nm})),o.d(t,"cssStyleElementWOOGalleryThumbnailSize",(function(){return am})),o.d(t,"cssStyleElementWOOGalleryChildStyle",(function(){return rm})),o.d(t,"cssStyleElementWOOGallerySpacingStyleLeftRigth",(function(){return im})),o.d(t,"cssStyleElementWOOGalleryZoomReposition",(function(){return lm}));var n={};o.r(n),o.d(n,"renderStyles",(function(){return b})),o.d(n,"css",(function(){return g})),o.d(n,"tmpCSSFromCache",(function(){return v})),o.d(n,"cssStyleSizeWidthPercent",(function(){return z})),o.d(n,"cssStyleSizeWidthPx",(function(){return E})),o.d(n,"cssStyleSizeMaxWidthPercent",(function(){return H})),o.d(n,"cssStyleSizeWidthStoryOnly",(function(){return k})),o.d(n,"cssStyleSizeHeightPx",(function(){return F})),o.d(n,"cssStyleSizeMinHeightPx",(function(){return _})),o.d(n,"cssStyleSizeMaxWidthSize",(function(){return R})),o.d(n,"cssStyleSizeSizePercent",(function(){return M})),o.d(n,"cssStyleSizeMaxWidthContainer",(function(){return I})),o.d(n,"cssStyleSizeTextSpacing",(function(){return A})),o.d(n,"cssStyleSizeSpacing",(function(){return N})),o.d(n,"cssStyleSizeHeightPxOnly",(function(){return D})),o.d(n,"cssStyleSizeHeightPercentOnly",(function(){return V})),o.d(n,"cssStyleSizeSize",(function(){return L})),o.d(n,"cssStyleSizeWidth",(function(){return W})),o.d(n,"cssStyleElementLineBorder",(function(){return $})),o.d(n,"cssStyleTypographyElementCountdownLabelFontSize",(function(){return te})),o.d(n,"cssStyleNumberTypography2FontFamily",(function(){return ae})),o.d(n,"cssStyleNumberTypography2FontSize",(function(){return re})),o.d(n,"cssStyleNumberTypography2LetterSpacing",(function(){return se})),o.d(n,"cssStyleNumberTypography2FontWeight",(function(){return le})),o.d(n,"cssStyleNumberTypography2LineHeight",(function(){return ie})),o.d(n,"cssStyleTitleTypography2FontFamily",(function(){return ce})),o.d(n,"cssStyleTitleTypography2FontSize",(function(){return de})),o.d(n,"cssStyleTitleTypography2LetterSpacing",(function(){return be})),o.d(n,"cssStyleTitleTypography2FontWeight",(function(){return pe})),o.d(n,"cssStyleTitleTypography2LineHeight",(function(){return ue})),o.d(n,"cssStyleMessageTypography2FontFamily",(function(){return me})),o.d(n,"cssStyleMessageTypography2FontSize",(function(){return he})),o.d(n,"cssStyleMessageTypography2LetterSpacing",(function(){return fe})),o.d(n,"cssStyleMessageTypography2FontWeight",(function(){return ve})),o.d(n,"cssStyleMessageTypography2LineHeight",(function(){return ge})),o.d(n,"cssStyleElementCountDown2NumberColor",(function(){return ye})),o.d(n,"cssStyleElementCountDown2TitleColor",(function(){return Oe})),o.d(n,"cssStyleElementCountDown2MessageColor",(function(){return Se})),o.d(n,"cssStyleElementCountDown2SpacingLeft",(function(){return oe})),o.d(n,"cssStyleElementCountDown2SpacingRight",(function(){return ne})),o.d(n,"cssStyleElementCountDown2HoverTransitionProperty",(function(){return Ce})),o.d(n,"cssStyleElementCounterChartEnd",(function(){return xe})),o.d(n,"cssStyleElementCounterChartWidth",(function(){return je})),o.d(n,"cssStyleElementCounterFillColor",(function(){return Be})),o.d(n,"cssStyleElementCounterStrokeColor",(function(){return Pe})),o.d(n,"cssStyleElementCounterTransitionHoverProperty",(function(){return we})),o.d(n,"cssStyleElementIconBoxFlexDirection",(function(){return Te})),o.d(n,"cssStyleElementIconBoxMarginRight",(function(){return ze})),o.d(n,"cssStyleElementIconBoxMarginLeft",(function(){return Ee})),o.d(n,"cssStyleBorder",(function(){return ke})),o.d(n,"cssStyleBorderTransparentColor",(function(){return He})),o.d(n,"cssStyleElementImageGallery3FontFamily",(function(){return Ke})),o.d(n,"cssStyleElementImageGallery3FontSize",(function(){return qe})),o.d(n,"cssStyleElementImageGallery3LineHeight",(function(){return Ye})),o.d(n,"cssStyleElementImageGallery3FontWeight",(function(){return Xe})),o.d(n,"cssStyleElementImageGallery3LetterSpacing",(function(){return Ze})),o.d(n,"cssStyleElementImageGalleryWidth",(function(){return _e})),o.d(n,"cssStyleElementImageGalleryMargin",(function(){return Re})),o.d(n,"cssStyleElementImageGalleryItemWidth",(function(){return Me})),o.d(n,"cssStyleElementImageGalleryItemPadding",(function(){return Le})),o.d(n,"cssStyleElementImageGalleryFilterSpacing",(function(){return We})),o.d(n,"cssStyleElementImageGalleryFilterAfterSpacing",(function(){return Ie})),o.d(n,"cssStyleElementImageGalleryFilterHorizontalAlign",(function(){return Ne})),o.d(n,"cssStyleElementImageGalleryPaddingFourFields",(function(){return Ae})),o.d(n,"cssStyleElementImageGalleryBorderRadius",(function(){return Ue})),o.d(n,"cssStyleElementImageGalleryFilterColor",(function(){return De})),o.d(n,"cssStyleElementImageGalleryFilterBgColor",(function(){return Ve})),o.d(n,"cssStyleElementImageGalleryFilterBoxShadow",(function(){return $e})),o.d(n,"cssStyleElementImageGalleryFilterBorder",(function(){return Ge})),o.d(n,"cssStyleElementImageGalleryFilterActiveColor",(function(){return Je})),o.d(n,"cssStyleElementImageGalleryFilterActiveBgColor",(function(){return Qe})),o.d(n,"cssStyleElementImageGalleryFilterActiveBorder",(function(){return et})),o.d(n,"cssStyleElementImageGalleryFilterActiveShadow",(function(){return tt})),o.d(n,"cssStyleBorderRadius",(function(){return Fe})),o.d(n,"cssStyleBgColor",(function(){return ot})),o.d(n,"cssStyleBgColorHex",(function(){return nt})),o.d(n,"cssStyleBg2Color",(function(){return at})),o.d(n,"cssStyleBgGradient",(function(){return rt})),o.d(n,"cssStyleBgImage",(function(){return it})),o.d(n,"cssStyleBgMediaImage",(function(){return lt})),o.d(n,"cssStyleBgImagePosition",(function(){return st})),o.d(n,"cssStyleBgImageAttachment",(function(){return ct})),o.d(n,"cssStyleBgMediaMap",(function(){return dt})),o.d(n,"cssStyleBgMediaVideo",(function(){return ut})),o.d(n,"cssStyleColor",(function(){return pt})),o.d(n,"cssStyleLabelColor",(function(){return bt})),o.d(n,"cssStyleBoxShadow",(function(){return ht})),o.d(n,"cssStyleBoxShadowSuffixForGlamour",(function(){return mt})),o.d(n,"cssStyleBoxShadowSection",(function(){return gt})),o.d(n,"cssStyleShapeTopType",(function(){return vt})),o.d(n,"cssStyleShapeTopHeight",(function(){return ft})),o.d(n,"cssStyleShapeTopFlip",(function(){return yt})),o.d(n,"cssStyleShapeTopIndex",(function(){return Ot})),o.d(n,"cssStyleShapeBottomType",(function(){return St})),o.d(n,"cssStyleShapeBottomHeight",(function(){return Ct})),o.d(n,"cssStyleShapeBottomFlip",(function(){return xt})),o.d(n,"cssStyleShapeBottomIndex",(function(){return jt})),o.d(n,"cssStyleHoverTransition",(function(){return Bt})),o.d(n,"cssStylePropertyHoverTransition",(function(){return Pt})),o.d(n,"cssStyleTypographyFontFamily",(function(){return wt})),o.d(n,"cssStyleTypographyFontSize",(function(){return Tt})),o.d(n,"cssStyleTypographyLineHeight",(function(){return zt})),o.d(n,"cssStyleTypographyFontWeight",(function(){return Et})),o.d(n,"cssStyleTypographyLetterSpacing",(function(){return kt})),o.d(n,"cssStyleTypography2FontFamily",(function(){return G})),o.d(n,"cssStyleTypography2FontSize",(function(){return U})),o.d(n,"cssStyleTypography2LineHeight",(function(){return K})),o.d(n,"cssStyleTypography2FontWeight",(function(){return q})),o.d(n,"cssStyleTypography2LetterSpacing",(function(){return Y})),o.d(n,"cssStyleTypography3FontFamily",(function(){return X})),o.d(n,"cssStyleTypography3FontSize",(function(){return Z})),o.d(n,"cssStyleTypography3LineHeight",(function(){return J})),o.d(n,"cssStyleTypography3FontWeight",(function(){return Q})),o.d(n,"cssStyleTypography3LetterSpacing",(function(){return ee})),o.d(n,"cssStyleElementProgressBarPadding",(function(){return Ht})),o.d(n,"cssStyleSizeProgressBarMaxWidthPercent",(function(){return Ft})),o.d(n,"cssStyleElementProgressBarPropertyHoverTransition",(function(){return _t})),o.d(n,"cssStyleElementButtonBorderRadius",(function(){return Rt})),o.d(n,"cssStyleElementButtonIconPosition",(function(){return Mt})),o.d(n,"cssStyleElementButtonIconFontSize",(function(){return Lt})),o.d(n,"cssStyleElementButtonIconMargin",(function(){return Wt})),o.d(n,"cssStyleElementIconStrokeWidth",(function(){return It})),o.d(n,"cssStyleElementButtonPropertyHoverTransition",(function(){return Nt})),o.d(n,"cssStyleElementButtonPropertyContentAlign",(function(){return At})),o.d(n,"cssStyleElementFacebookButtonPropertyHoverTransition",(function(){return Dt})),o.d(n,"cssStyleElementFacebookCommentsPropertyHoverTransition",(function(){return Vt})),o.d(n,"cssStyleElementFacebookEmbedPropertyHoverTransition",(function(){return $t})),o.d(n,"cssStyleElementFacebookGroupPropertyHoverTransition",(function(){return Gt})),o.d(n,"cssStyleElementFacebookPagePropertyHoverTransition",(function(){return Ut})),o.d(n,"cssStyleElementMapPropertyHoverTransition",(function(){return Kt})),o.d(n,"cssStyleElementMapPropertyPositionFixed",(function(){return qt})),o.d(n,"cssStyleElementSoundCloudPropertyHoverTransition",(function(){return Yt})),o.d(n,"cssStyleContainerPopup2ContainerWidth",(function(){return Xt})),o.d(n,"cssStyleContainerPopup2CloseState",(function(){return Zt})),o.d(n,"cssStyleContainerPopup2ClosePosition",(function(){return no})),o.d(n,"cssStyleContainerPopup2CloseFontSize",(function(){return Qt})),o.d(n,"cssStyleContainerPopup2CloseBgSize",(function(){return eo})),o.d(n,"cssStyleContainerPopup2CloseBorderRadius",(function(){return to})),o.d(n,"cssStyleContainerPopup2CloseColor",(function(){return Jt})),o.d(n,"cssStyleContainerPopup2CloseBgColor",(function(){return oo})),o.d(n,"cssStyleContainerPopup2RowFlexVerticalAlign",(function(){return ao})),o.d(n,"cssStyleContainerPopup2CustomHeight",(function(){return ro})),o.d(n,"cssStyleContainerPopup2CustomHeightOverflow",(function(){return io})),o.d(n,"cssStyleContainerPopup2Custom2Height100",(function(){return lo})),o.d(n,"cssStyleContainerPopup2Custom2MaxHeight100",(function(){return so})),o.d(n,"cssStyleZIndex",(function(){return co})),o.d(n,"cssStyleZIndexStory",(function(){return uo})),o.d(n,"cssStyleFlexVerticalAlign",(function(){return po})),o.d(n,"cssStyleFlexColumnVerticalAlign",(function(){return go})),o.d(n,"cssStyleFlexHorizontalAlign",(function(){return bo})),o.d(n,"cssStyleContentAlign",(function(){return mo})),o.d(n,"cssStyleMarginAlign",(function(){return ho})),o.d(n,"cssStyleExcerptAlign",(function(){return vo})),o.d(n,"cssStyleFlexColumn",(function(){return fo})),o.d(n,"cssStylePadding",(function(){return jo})),o.d(n,"cssStylePaddingFourFields",(function(){return yo})),o.d(n,"cssStylePaddingPreview",(function(){return Oo})),o.d(n,"cssStylePaddingTopForEditorResizer",(function(){return So})),o.d(n,"cssStylePaddingBottomForEditorResizer",(function(){return Co})),o.d(n,"cssStylePaddingRightLeftForEditor",(function(){return xo})),o.d(n,"cssStyleItemPadding",(function(){return Bo})),o.d(n,"cssStyleMargin",(function(){return Po})),o.d(n,"cssStyleItemMargin",(function(){return wo})),o.d(n,"cssStyleDisplayFlex",(function(){return To})),o.d(n,"cssStyleDisplayInlineFlex",(function(){return zo})),o.d(n,"cssStyleDisplayBlock",(function(){return Eo})),o.d(n,"cssStyleVisible",(function(){return ko})),o.d(n,"cssStyleVisibleEditorDisplayNoneOrFlex",(function(){return Ho})),o.d(n,"cssStyleVisibleEditorDisplayNoneOrBlock",(function(){return _o})),o.d(n,"cssStyleVisibleEditorDisplayNoneOrInlineFlex",(function(){return Fo})),o.d(n,"cssStyleVisibleMode",(function(){return Ro})),o.d(n,"cssStyleShowMembershipBlock",(function(){return Mo})),o.d(n,"cssStyleFilter",(function(){return Wo})),o.d(n,"cssStyleFilterSuffixForGlamour",(function(){return Lo})),o.d(n,"cssStyleElementVideoPaddingRatio",(function(){return Io})),o.d(n,"cssStyleElementVideoFilter",(function(){return No})),o.d(n,"cssStyleElementVideoPointerEvents",(function(){return Ao})),o.d(n,"cssStyleElementVideoBgSize",(function(){return Do})),o.d(n,"cssStyleElementVideoIconFontSize",(function(){return Vo})),o.d(n,"cssStyleElementVideoIconWidth",(function(){return $o})),o.d(n,"cssStyleElementVideoIconHeight",(function(){return Go})),o.d(n,"cssStyleElementVideoControlsIconFontSize",(function(){return Jo})),o.d(n,"cssStyleElementVideoBgColorRatio",(function(){return Uo})),o.d(n,"cssStyleElementVideoCoverSrc",(function(){return Ko})),o.d(n,"cssStyleElementVideoCoverPosition",(function(){return qo})),o.d(n,"cssStyleElementVideoPropertyHoverTransition",(function(){return Yo})),o.d(n,"cssStyleVideoControlsBgColor",(function(){return Xo})),o.d(n,"cssStyleVideoIconControls",(function(){return Zo})),o.d(n,"cssStyleElementVideoPlaylistSubTitleVideoTypography2FontFamily",(function(){return Qo})),o.d(n,"cssStyleElementVideoPlaylistSubTitleVideoTypography2FontSize",(function(){return en})),o.d(n,"cssStyleElementVideoPlaylistSubTitleVideoTypography2LineHeight",(function(){return tn})),o.d(n,"cssStyleElementVideoPlaylistSubTitleVideoTypography2FontWeight",(function(){return on})),o.d(n,"cssStyleElementVideoPlaylistSubTitleVideoTypography2LetterSpacing",(function(){return nn})),o.d(n,"cssStyleElementVideoPlaylistBorderItem",(function(){return ln})),o.d(n,"cssStyleElementVideoPlaylistGridItemWidth",(function(){return cn})),o.d(n,"cssStyleSizeWidthPixel",(function(){return an})),o.d(n,"cssStyleElementVideoPlaylistImageSize",(function(){return rn})),o.d(n,"cssStyleSizeWidthVideoBlock",(function(){return sn})),o.d(n,"cssStyleBgIconCoverColor",(function(){return pn})),o.d(n,"cssStyleCoverIconColor",(function(){return dn})),o.d(n,"cssStyleCoverSubTitleColor",(function(){return un})),o.d(n,"cssStyleElementVideoPlaylistItemActiveBg",(function(){return bn})),o.d(n,"cssStyleElementVideoPlaylistBorderItemActive",(function(){return mn})),o.d(n,"cssStyleElementVideoPlaylistItemActiveColor",(function(){return hn})),o.d(n,"cssStyleElementVideoPlaylistItemSubtitleActiveColor",(function(){return gn})),o.d(n,"cssStyleElementMediaIconFontSize",(function(){return vn})),o.d(n,"cssStyleElementMediaPadding",(function(){return fn})),o.d(n,"cssStyleRowMinHeight",(function(){return yn})),o.d(n,"cssStyleRowReverseColumn",(function(){return On})),o.d(n,"cssStylePosition",(function(){return wn})),o.d(n,"cssStylePositionMode",(function(){return Tn})),o.d(n,"cssStyleCustomPosition",(function(){return zn})),o.d(n,"cssStyleCustomWidth",(function(){return En})),o.d(n,"cssStyleOffset",(function(){return kn})),o.d(n,"cssStyleIconSpacing",(function(){return Hn})),o.d(n,"cssStyleIconSize",(function(){return Fn})),o.d(n,"cssStyleSectionMaxWidth",(function(){return Mn})),o.d(n,"cssStyleSectionSliderHeight",(function(){return Ln})),o.d(n,"cssStyleSectionColorDots",(function(){return Wn})),o.d(n,"cssStyleSectionColorArrows",(function(){return In})),o.d(n,"cssStyleSectionPropertyHoverTransition",(function(){return Nn})),o.d(n,"cssStyleSectionToolbarOffset",(function(){return An})),o.d(n,"cssStyleSectionHeightStyle",(function(){return Dn})),o.d(n,"cssStyleSectionPaddingsForEditorResize",(function(){return Vn})),o.d(n,"cssStyleSectionPopupContainerWrap",(function(){return $n})),o.d(n,"cssStyleElementBreadcrumbsArrowSize",(function(){return Gn})),o.d(n,"cssStyleElementBreadcrumbsColorActive",(function(){return Un})),o.d(n,"cssStyleElementBreadcrumbsColorArrows",(function(){return Kn})),o.d(n,"cssStyleElementForm2FlexBasisPercent",(function(){return Yn})),o.d(n,"cssStyleElementForm2SubmitWidth",(function(){return Xn})),o.d(n,"cssStyleElementForm2InputHeight",(function(){return Zn})),o.d(n,"cssStyleElementForm2FieldsLineHeight",(function(){return ta})),o.d(n,"cssStyleElementForm2FieldsLabelFontFamily",(function(){return oa})),o.d(n,"cssStyleElementForm2FieldsLabelFontSize",(function(){return na})),o.d(n,"cssStyleElementForm2FieldsLabelFontWeight",(function(){return ra})),o.d(n,"cssStyleElementForm2FieldsLabelLetterSpacing",(function(){return ia})),o.d(n,"cssStyleElementForm2FieldsLabelAlign",(function(){return Jn})),o.d(n,"cssStyleElementForm2FieldsLabelLineHeight",(function(){return aa})),o.d(n,"cssStyleElementForm2FieldsLabelPadding",(function(){return la})),o.d(n,"cssStyleElementForm2Margin",(function(){return Qn})),o.d(n,"cssStyleElementForm2Padding",(function(){return ea})),o.d(n,"cssStyleElementForm2FieldsBorderRequired",(function(){return ga})),o.d(n,"cssStyleElementForm2FieldsCheckboxColor",(function(){return sa})),o.d(n,"cssStyleElementForm2FieldsCheckboxFontFamily",(function(){return ca})),o.d(n,"cssStyleElementForm2FieldsCheckboxFontSize",(function(){return da})),o.d(n,"cssStyleElementForm2FieldsCheckboxFontWeight",(function(){return ua})),o.d(n,"cssStyleElementForm2FieldsCheckboxLetterSpacing",(function(){return pa})),o.d(n,"cssStyleElementForm2FieldsCheckboxLineHeight",(function(){return ba})),o.d(n,"cssStyleElementForm2FieldsSelectColor",(function(){return ma})),o.d(n,"cssStyleElementForm2FieldsSelectBgColor",(function(){return ha})),o.d(n,"cssStyleElementForm2FieldsSelectChoiceBgColor",(function(){return va})),o.d(n,"cssStyleElementForm2FieldsSelectBorder",(function(){return fa})),o.d(n,"cssStyleElementForm2FieldsSelectBorderRadius",(function(){return ya})),o.d(n,"cssStyleElementForm2FieldsSelectBoxShadow",(function(){return Oa})),o.d(n,"cssStyleElementForm2FieldColumns",(function(){return Sa})),o.d(n,"cssStyleElementForm2StoryButtonHeight",(function(){return Ca})),o.d(n,"cssStyleElementLoginFormMargin",(function(){return xa})),o.d(n,"cssStyleElementLoginFieldPadding",(function(){return ja})),o.d(n,"cssStyleElementLoginLostPasswordColor",(function(){return Ea})),o.d(n,"cssStyleElementLoginLostPasswordAlign",(function(){return ka})),o.d(n,"cssStyleElementLoginLostPasswordTypography2FontFamily",(function(){return Ba})),o.d(n,"cssStyleElementLoginLostPasswordTypography2FontSize",(function(){return Pa})),o.d(n,"cssStyleElementLoginLostPasswordTypography2FontWeight",(function(){return Ta})),o.d(n,"cssStyleElementLoginLostPasswordTypography2LetterSpacing",(function(){return za})),o.d(n,"cssStyleElementLoginLostPasswordTypography2LineHeight",(function(){return wa})),o.d(n,"cssStyleElementLoginAutorizedAlign",(function(){return Ha})),o.d(n,"cssStyleElementLoginTextTypography2FontFamily",(function(){return Fa})),o.d(n,"cssStyleElementLoginTextTypography2FontSize",(function(){return _a})),o.d(n,"cssStyleElementLoginTextTypography2LineHeight",(function(){return Ra})),o.d(n,"cssStyleElementLoginTextTypography2FontWeight",(function(){return Ma})),o.d(n,"cssStyleElementLoginTextTypography2LetterSpacing",(function(){return La})),o.d(n,"cssStyleElementLoginTextColor",(function(){return Wa})),o.d(n,"cssStyleElementLoginLinkColor",(function(){return Ia})),o.d(n,"cssStyleElementPostInfoColorText",(function(){return Aa})),o.d(n,"cssStyleElementPostInfoColorIcons",(function(){return Na})),o.d(n,"cssStyleElementPostInfoSpacing",(function(){return Da})),o.d(n,"cssStyleElementPostNavigation2TitleFontFamily",(function(){return Va})),o.d(n,"cssStyleElementPostNavigation2TitleFontSize",(function(){return $a})),o.d(n,"cssStyleElementPostNavigation2TitleLineHeight",(function(){return Ga})),o.d(n,"cssStyleElementPostNavigation2TitleFontWeight",(function(){return Ua})),o.d(n,"cssStyleElementPostNavigation2TitleLetterSpacing",(function(){return Ka})),o.d(n,"cssStyleElementPostNavigation2PostFontFamily",(function(){return qa})),o.d(n,"cssStyleElementPostNavigation2PostFontSize",(function(){return Ya})),o.d(n,"cssStyleElementPostNavigation2PostLineHeight",(function(){return Xa})),o.d(n,"cssStyleElementPostNavigation2PostFontWeight",(function(){return Za})),o.d(n,"cssStyleElementPostNavigation2PostLetterSpacing",(function(){return Ja})),o.d(n,"cssStyleElementPostNavigationColorTitle",(function(){return Qa})),o.d(n,"cssStyleElementPostNavigationColorPost",(function(){return er})),o.d(n,"cssStyleElementPostNavigationSpacing",(function(){return tr})),o.d(n,"cssStyleElementPostNavigationSeparationHeight",(function(){return or})),o.d(n,"cssStyleElementPostNavigationShowSeparation",(function(){return nr})),o.d(n,"cssStyleElementStarRatingRatingColor",(function(){return ar})),o.d(n,"cssStyleElementStarRatingRatingBackgroundColor",(function(){return rr})),o.d(n,"cssStyleElementStarRatingPropertyHoverTransition",(function(){return sr})),o.d(n,"cssStyleElementStarRatingTextSpacing",(function(){return dr})),o.d(n,"cssStyleElementStarRatingStyle2Background",(function(){return ir})),o.d(n,"cssStyleElementStarRatingStyle2BorderRadius",(function(){return lr})),o.d(n,"cssStyleElementStarRatingDirection",(function(){return cr})),o.d(n,"cssStyleElementTimelineTabContentArrowColor",(function(){return qr})),o.d(n,"cssStyleElementTimelineTabContentArrowCustomColor",(function(){return Yr})),o.d(n,"cssStyleElementTimelineTabContentArrowCustomColor1",(function(){return Xr})),o.d(n,"cssStyleElementTimelineBeforeDisplay",(function(){return kr})),o.d(n,"cssStyleElementTimelineCustomLineOdd",(function(){return Ir})),o.d(n,"cssStyleElementTimelineVerticalTab",(function(){return si})),o.d(n,"cssStyleElementTimelineVerticalLastTab",(function(){return ci})),o.d(n,"cssStyleElementTimelineTabsVerticalContent",(function(){return li})),o.d(n,"cssStyleElementTimelineTabsVerticalNavIcon",(function(){return ii})),o.d(n,"cssStyleElementTimelineTabsHorizontalStyle3",(function(){return ri})),o.d(n,"cssStyleElementTimelineTabHorizontalStyle3Odd",(function(){return ai})),o.d(n,"cssStyleElementTimelineTabCustomStyle",(function(){return ni})),o.d(n,"cssStyleElementTimelineContentBeforeStyle3",(function(){return ei})),o.d(n,"cssStyleElementTimelineVerticalTabBeforeNone",(function(){return di})),o.d(n,"cssStyleElementTimelineVerticalTabBeforeStyle3",(function(){return ui})),o.d(n,"cssStyleElementTimelineNavTitleStyle3",(function(){return oi})),o.d(n,"cssStyleElementTimelineTab",(function(){return Jr})),o.d(n,"cssStyleElementTimelineTabs",(function(){return Zr})),o.d(n,"cssStyleElementTimelineTabContentBefore",(function(){return Qr})),o.d(n,"cssStyleElementTimelineNavTitle",(function(){return ti})),o.d(n,"cssStyleElementTimelineWidth",(function(){return Kr})),o.d(n,"cssStyleElementTimelineIconSize",(function(){return gr})),o.d(n,"cssStyleElementTimelineIconWidth",(function(){return fr})),o.d(n,"cssStyleElementTimelineIconHeight",(function(){return yr})),o.d(n,"cssStyleElementTimelineIconBorderRadius",(function(){return Pr})),o.d(n,"cssStyleElementTimelineNavTitleWidth",(function(){return Or})),o.d(n,"cssStyleElementTimelineLineBgColor",(function(){return Cr})),o.d(n,"cssStyleElementTimelineLineTop",(function(){return xr})),o.d(n,"cssStyleElementTimelineArrowBorder",(function(){return Br})),o.d(n,"cssStyleElementTimelineVerticalCustomTabPositionOdd",(function(){return Vr})),o.d(n,"cssStyleElementTimelineContentSpacing",(function(){return jr})),o.d(n,"cssStyleElementTimelineVerticalCustomContentSpacing",(function(){return Ur})),o.d(n,"cssStyleElementTimelinePaddingForIcon",(function(){return vr})),o.d(n,"cssStyleElementTimelineNavTitleVisible",(function(){return Sr})),o.d(n,"cssStyleElementTimelineVerticalPosition",(function(){return wr})),o.d(n,"cssStyleElementTimelineLineWidthHeightBefore",(function(){return Tr})),o.d(n,"cssStyleElementTimelineLineWidthHeightAfter",(function(){return zr})),o.d(n,"cssStyleElementTimelineVerticalLinePosition",(function(){return Er})),o.d(n,"cssStyleElementTimelineVerticalLineTopPosition",(function(){return Hr})),o.d(n,"cssStyleElementTimelineVerticalLineBottomPosition",(function(){return Fr})),o.d(n,"cssStyleElementTimelineCustomTabWidth",(function(){return _r})),o.d(n,"cssStyleElementTimelineCustomLastTabWidth",(function(){return Rr})),o.d(n,"cssStyleElementTimelineVerticalInvertPosition",(function(){return Mr})),o.d(n,"cssStyleElementTimelineVerticalInvertLinePosition",(function(){return Lr})),o.d(n,"cssStyleElementTimelineCustomLineTop",(function(){return Wr})),o.d(n,"cssStyleElementTimelineCustomContentSpacing",(function(){return Nr})),o.d(n,"cssStyleElementTimelineCustomContentBottomSpacing",(function(){return Ar})),o.d(n,"cssStyleElementTimelineVerticalCustomTabPosition",(function(){return Dr})),o.d(n,"cssStyleElementTimelineVerticalCustomPosition",(function(){return $r})),o.d(n,"cssStyleElementTimelineVerticalStyle3ArrowPosition",(function(){return Gr})),o.d(n,"cssStyleElementSwitcherNavSpacing",(function(){return hi})),o.d(n,"cssStyleElementSwitcherNavBeforeBg",(function(){return mi})),o.d(n,"cssStyleElementSwitcherActiveTextColor",(function(){return gi})),o.d(n,"cssStyleElementSwitcherNav2Width",(function(){return pi})),o.d(n,"cssStyleElementSwitcherNav2Height",(function(){return bi})),o.d(n,"cssStyleElementSwitcherWidth",(function(){return vi})),o.d(n,"cssStyleElementWPPostContentH1Color",(function(){return fi})),o.d(n,"cssStyleElementWPPostContentH2Color",(function(){return yi})),o.d(n,"cssStyleElementWPPostContentH3Color",(function(){return Oi})),o.d(n,"cssStyleElementWPPostContentH4Color",(function(){return Si})),o.d(n,"cssStyleElementWPPostContentH5Color",(function(){return Ci})),o.d(n,"cssStyleElementWPPostContentH6Color",(function(){return xi})),o.d(n,"cssStyleElementWPPostContentParagraphColor",(function(){return ji})),o.d(n,"cssStyleElementWPPostContentTypography2ParagraphFontFamily",(function(){return Bi})),o.d(n,"cssStyleElementWPPostContentTypography2ParagraphFontSize",(function(){return Pi})),o.d(n,"cssStyleElementWPPostContentTypography2ParagraphLineHeight",(function(){return wi})),o.d(n,"cssStyleElementWPPostContentTypography2ParagraphFontWeight",(function(){return Ti})),o.d(n,"cssStyleElementWPPostContentTypography2ParagraphLetterSpacing",(function(){return zi})),o.d(n,"cssStyleElementWPPostContentTypography2H1FontFamily",(function(){return Ei})),o.d(n,"cssStyleElementWPPostContentTypography2H1FontSize",(function(){return ki})),o.d(n,"cssStyleElementWPPostContentTypography2H1LineHeight",(function(){return Hi})),o.d(n,"cssStyleElementWPPostContentTypography2H1FontWeight",(function(){return Fi})),o.d(n,"cssStyleElementWPPostContentTypography2H1LetterSpacing",(function(){return _i})),o.d(n,"cssStyleElementWPPostContentTypography2H2FontFamily",(function(){return Ri})),o.d(n,"cssStyleElementWPPostContentTypography2H2FontSize",(function(){return Mi})),o.d(n,"cssStyleElementWPPostContentTypography2H2LineHeight",(function(){return Li})),o.d(n,"cssStyleElementWPPostContentTypography2H2FontWeight",(function(){return Wi})),o.d(n,"cssStyleElementWPPostContentTypography2H2LetterSpacing",(function(){return Ii})),o.d(n,"cssStyleElementWPPostContentTypography2H3FontFamily",(function(){return Ni})),o.d(n,"cssStyleElementWPPostContentTypography2H3FontSize",(function(){return Ai})),o.d(n,"cssStyleElementWPPostContentTypography2H3LineHeight",(function(){return Di})),o.d(n,"cssStyleElementWPPostContentTypography2H3FontWeight",(function(){return Vi})),o.d(n,"cssStyleElementWPPostContentTypography2H3LetterSpacing",(function(){return $i})),o.d(n,"cssStyleElementWPPostContentTypography2H4FontFamily",(function(){return Gi})),o.d(n,"cssStyleElementWPPostContentTypography2H4FontSize",(function(){return Ui})),o.d(n,"cssStyleElementWPPostContentTypography2H4LineHeight",(function(){return Ki})),o.d(n,"cssStyleElementWPPostContentTypography2H4FontWeight",(function(){return qi})),o.d(n,"cssStyleElementWPPostContentTypography2H4LetterSpacing",(function(){return Yi})),o.d(n,"cssStyleElementWPPostContentTypography2H5FontFamily",(function(){return Xi})),o.d(n,"cssStyleElementWPPostContentTypography2H5FontSize",(function(){return Zi})),o.d(n,"cssStyleElementWPPostContentTypography2H5LineHeight",(function(){return Ji})),o.d(n,"cssStyleElementWPPostContentTypography2H5FontWeight",(function(){return Qi})),o.d(n,"cssStyleElementWPPostContentTypography2H5LetterSpacing",(function(){return el})),o.d(n,"cssStyleElementWPPostContentTypography2H6FontFamily",(function(){return tl})),o.d(n,"cssStyleElementWPPostContentTypography2H6FontSize",(function(){return ol})),o.d(n,"cssStyleElementWPPostContentTypography2H6LineHeight",(function(){return nl})),o.d(n,"cssStyleElementWPPostContentTypography2H6FontWeight",(function(){return al})),o.d(n,"cssStyleElementWPPostContentTypography2H6LetterSpacing",(function(){return rl})),o.d(n,"cssStyleElementWPPostContentFontWeightInherit",(function(){return il})),o.d(n,"cssStyleElementWOOPriceColorSale",(function(){return ll})),o.d(n,"cssStyleElementWOOPriceSaleFontFamily",(function(){return sl})),o.d(n,"cssStyleElementWOOPriceSaleFontSize",(function(){return cl})),o.d(n,"cssStyleElementWOOPriceSaleLineHeight",(function(){return dl})),o.d(n,"cssStyleElementWOOPriceSaleFontWeight",(function(){return ul})),o.d(n,"cssStyleElementWOOPriceSaleLetterSpacing",(function(){return pl})),o.d(n,"cssStyleElementWOOPriceColumn",(function(){return bl})),o.d(n,"cssStyleElementWOOPriceSpacingFirst",(function(){return ml})),o.d(n,"cssStyleElementWOOPriceSpacingLast",(function(){return hl})),o.d(n,"cssStyleElementWOOAttributesAttributesFontFamily",(function(){return gl})),o.d(n,"cssStyleElementWOOAttributesAttributesFontSize",(function(){return vl})),o.d(n,"cssStyleElementWOOAttributesAttributesLineHeight",(function(){return fl})),o.d(n,"cssStyleElementWOOAttributesAttributesFontWeight",(function(){return yl})),o.d(n,"cssStyleElementWOOAttributesAttributesLetterSpacing",(function(){return Ol})),o.d(n,"cssStyleElementWOOAttributesSpacing",(function(){return Sl})),o.d(n,"cssStyleElementWOOAttributesAttributeColor",(function(){return Cl})),o.d(n,"cssStyleElementWOOAttributesBorder",(function(){return xl})),o.d(n,"cssStyleElementWOOAttributesLastElementBorder",(function(){return jl})),o.d(n,"cssStyleElementPostsItemWidth",(function(){return Bl})),o.d(n,"cssStyleElementPostsItemSpacing",(function(){return Pl})),o.d(n,"cssStyleElementPostsPaginationSpacing",(function(){return wl})),o.d(n,"cssStyleElementPostsPaginationLinksOff",(function(){return Tl})),o.d(n,"cssStyleElementPostsPaginationFontFamily",(function(){return zl})),o.d(n,"cssStyleElementPostsPaginationFontSize",(function(){return El})),o.d(n,"cssStyleElementPostsPaginationLineHeight",(function(){return kl})),o.d(n,"cssStyleElementPostsPaginationFontWeight",(function(){return Hl})),o.d(n,"cssStyleElementPostsPaginationLetterSpacing",(function(){return Fl})),o.d(n,"cssStyleElementPostsPaginationColor",(function(){return _l})),o.d(n,"cssStyleElementPostsPaginationBgColor",(function(){return Rl})),o.d(n,"cssStyleElementPostsPaginationBorder",(function(){return Ml})),o.d(n,"cssStyleElementPostsPaginationBorderRadius",(function(){return Ll})),o.d(n,"cssStyleElementPostsFilterDisplay",(function(){return Wl})),o.d(n,"cssStyleElementPostsFilterHorizontalAlign",(function(){return Il})),o.d(n,"cssStyleElementPostsFilterSpacing",(function(){return Nl})),o.d(n,"cssStyleElementPostsFilterAfterSpacing",(function(){return Al})),o.d(n,"cssStyleElementPostsFilterFontFamily",(function(){return Dl})),o.d(n,"cssStyleElementPostsFilterFontSize",(function(){return Vl})),o.d(n,"cssStyleElementPostsFilterLineHeight",(function(){return $l})),o.d(n,"cssStyleElementPostsFilterFontWeight",(function(){return Gl})),o.d(n,"cssStyleElementPostsFilterLetterSpacing",(function(){return Ul})),o.d(n,"cssStyleElementPostsFilterColor",(function(){return Kl})),o.d(n,"cssStyleElementPostsFilterBgColor",(function(){return ql})),o.d(n,"cssStyleElementPostsFilterBorder",(function(){return Yl})),o.d(n,"cssStyleElementPostsFilterBorderRadius",(function(){return Xl})),o.d(n,"cssStyleElementPostsFilterShadow",(function(){return Zl})),o.d(n,"cssStyleElementPostsFilterPaddingFourFields",(function(){return Jl})),o.d(n,"cssStyleElementPostsFilterActiveColor",(function(){return Ql})),o.d(n,"cssStyleElementPostsFilterActiveBgColor",(function(){return es})),o.d(n,"cssStyleElementPostsFilterActiveBorder",(function(){return ts})),o.d(n,"cssStyleElementPostsFilterActiveShadow",(function(){return os})),o.d(n,"cssStyleElementAccordion3FontFamily",(function(){return xs})),o.d(n,"cssStyleElementAccordion3FontSize",(function(){return js})),o.d(n,"cssStyleElementAccordion3LineHeight",(function(){return Bs})),o.d(n,"cssStyleElementAccordion3FontWeight",(function(){return Ps})),o.d(n,"cssStyleElementAccordion3LetterSpacing",(function(){return ws})),o.d(n,"cssStyleElementAccordionFilterColor",(function(){return as})),o.d(n,"cssStyleElementAccordionFilterBgColor",(function(){return cs})),o.d(n,"cssStyleElementAccordionFilterBorder",(function(){return ds})),o.d(n,"cssStyleElementAccordionFilterBorderRadius",(function(){return us})),o.d(n,"cssStyleElementAccordionFilterShadow",(function(){return ps})),o.d(n,"cssStyleElementAccordionMarginTop",(function(){return bs})),o.d(n,"cssStyleElementAccordionSpacing",(function(){return ms})),o.d(n,"cssStyleElementAccordionFilterSpacing",(function(){return hs})),o.d(n,"cssStyleElementAccordionFilterAfterSpacing",(function(){return gs})),o.d(n,"cssStyleElementAccordionNavAlign",(function(){return vs})),o.d(n,"cssStyleElementAccordionNavTextAlign",(function(){return fs})),o.d(n,"cssStyleElementAccordionNavIconSpacing",(function(){return ys})),o.d(n,"cssStyleElementAccordionNavIconSize",(function(){return Os})),o.d(n,"cssStyleElementAccordionFilterHorizontalAlign",(function(){return Ss})),o.d(n,"cssStyleElementAccordionFilterPaddingFourFields",(function(){return Cs})),o.d(n,"cssStyleElementAccordionFilterActiveColor",(function(){return rs})),o.d(n,"cssStyleElementAccordionFilterActiveBgColor",(function(){return is})),o.d(n,"cssStyleElementAccordionFilterActiveBorder",(function(){return ls})),o.d(n,"cssStyleElementAccordionFilterActiveShadow",(function(){return ss})),o.d(n,"cssStyleElementAccordionActiveColor",(function(){return Ts})),o.d(n,"cssStyleElementAccordionActiveBgColor",(function(){return zs})),o.d(n,"cssStyleElementAccordionActiveBorder",(function(){return Es})),o.d(n,"cssStyleElementAccordionActiveShadow",(function(){return ks})),o.d(n,"cssStyleElementAccordionAnimDuration",(function(){return Hs})),o.d(n,"cssStyleElementTabsItemsBorderWidth",(function(){return Fs})),o.d(n,"cssStyleElementTabsBtnSpacing",(function(){return _s})),o.d(n,"cssStyleElementTabsBtnIconSize",(function(){return Rs})),o.d(n,"cssStyleElementTabsBtnActiveBorderBottomColor",(function(){return Ms})),o.d(n,"cssStyleElementTabsBtnActiveBorderRightColor",(function(){return Ls})),o.d(n,"cssStyleElementTabsBtnActiveBorderLeftColor",(function(){return Ws})),o.d(n,"cssStyleElementTabsActiveBeforeAfterColor",(function(){return Is})),o.d(n,"cssStyleElementTabsActiveBeforeHeight",(function(){return Ns})),o.d(n,"cssStyleElementTabsActiveBeforeWidth",(function(){return As})),o.d(n,"cssStyleElementTabsBeforeAfterRightWidth",(function(){return Ds})),o.d(n,"cssStyleElementTabsBeforeAfterLeftWidth",(function(){return Vs})),o.d(n,"cssStyleElementTabsBorderColor",(function(){return $s})),o.d(n,"cssStyleElementTabsBorderWidth",(function(){return Gs})),o.d(n,"cssStyleElementTabsBorderMobileWidth",(function(){return Us})),o.d(n,"cssStyleElementTabsEmptyContent",(function(){return Ks})),o.d(n,"cssStyleElementTabsBtnIconPosition",(function(){return qs})),o.d(n,"cssStyleElementTabsBtnIconJustifyContent",(function(){return Ys})),o.d(n,"cssStyleElementTabsBeforeAfterTop",(function(){return Xs})),o.d(n,"cssStyleElementTabsBeforeAfterBottom",(function(){return Zs})),o.d(n,"cssStyleElementTabsAfterSpacing",(function(){return Js})),o.d(n,"cssStyleElementTabsSpacing",(function(){return ec})),o.d(n,"cssStyleElementTabsAfterSpacingVertical",(function(){return Qs})),o.d(n,"cssStyleElementTabsNavAlign",(function(){return tc})),o.d(n,"cssStyleElementTabsNavBorderBottom",(function(){return nc})),o.d(n,"cssStyleElementTabsNavStyle3Before",(function(){return ac})),o.d(n,"cssStyleElementTabsPadding",(function(){return oc})),o.d(n,"cssStyleElementTabsActiveColor",(function(){return rc})),o.d(n,"cssStyleElementTabsActiveBgColor",(function(){return ic})),o.d(n,"cssStyleElementTabsActiveBorderColor",(function(){return sc})),o.d(n,"cssStyleElementTabsActiveShadow",(function(){return lc})),o.d(n,"cssStyleElementCommentsNameFontFamily",(function(){return cc})),o.d(n,"cssStyleElementCommentsNameFontSize",(function(){return dc})),o.d(n,"cssStyleElementCommentsNameLineHeight",(function(){return uc})),o.d(n,"cssStyleElementCommentsNameFontWeight",(function(){return pc})),o.d(n,"cssStyleElementCommentsNameLetterSpacing",(function(){return bc})),o.d(n,"cssStyleElementCommentsDateFontFamily",(function(){return yc})),o.d(n,"cssStyleElementCommentsDateFontSize",(function(){return Oc})),o.d(n,"cssStyleElementCommentsDateLineHeight",(function(){return Sc})),o.d(n,"cssStyleElementCommentsDateFontWeight",(function(){return Cc})),o.d(n,"cssStyleElementCommentsDateLetterSpacing",(function(){return xc})),o.d(n,"cssStyleElementCommentsCommentFontFamily",(function(){return mc})),o.d(n,"cssStyleElementCommentsCommentFontSize",(function(){return hc})),o.d(n,"cssStyleElementCommentsCommentLineHeight",(function(){return gc})),o.d(n,"cssStyleElementCommentsCommentFontWeight",(function(){return vc})),o.d(n,"cssStyleElementCommentsCommentLetterSpacing",(function(){return fc})),o.d(n,"cssStyleElementCommentsReplyFontFamily",(function(){return jc})),o.d(n,"cssStyleElementCommentsReplyFontSize",(function(){return Bc})),o.d(n,"cssStyleElementCommentsReplyLineHeight",(function(){return Pc})),o.d(n,"cssStyleElementCommentsReplyFontWeight",(function(){return wc})),o.d(n,"cssStyleElementCommentsReplyLetterSpacing",(function(){return Tc})),o.d(n,"cssStyleElementCommentsPostButtonFontFamily",(function(){return zc})),o.d(n,"cssStyleElementCommentsPostButtonFontSize",(function(){return Ec})),o.d(n,"cssStyleElementCommentsPostButtonLineHeight",(function(){return kc})),o.d(n,"cssStyleElementCommentsPostButtonFontWeight",(function(){return Hc})),o.d(n,"cssStyleElementCommentsPostButtonLetterSpacing",(function(){return Fc})),o.d(n,"cssStyleElementCommentsLogoSize",(function(){return _c})),o.d(n,"cssStyleElementCommentsWidthContainer",(function(){return Rc})),o.d(n,"cssStyleElementCommentsPostButtonColor",(function(){return Mc})),o.d(n,"cssStyleElementCommentsPostButtonBg",(function(){return Lc})),o.d(n,"cssStyleElementCommentsColorLink",(function(){return Wc})),o.d(n,"cssStyleElementCommentsNameColor",(function(){return Ic})),o.d(n,"cssStyleElementCommentsCommentsColor",(function(){return Nc})),o.d(n,"cssStyleElementCommentsChildMargin",(function(){return Ac})),o.d(n,"cssStyleElementCommentsStarsColor",(function(){return Dc})),o.d(n,"cssStyleElementCommentsStarsBgColor",(function(){return Vc})),o.d(n,"cssStyleElementCommentsStarsSize",(function(){return $c})),o.d(n,"cssStyleElementSearchAutocompleteColor",(function(){return Gc})),o.d(n,"cssStyleElementSearchMinWidth",(function(){return Uc})),o.d(n,"cssStyleElementSearchMinHeight",(function(){return Kc})),o.d(n,"cssStyleElementSearchPropertyHoverTransition",(function(){return qc})),o.d(n,"cssStyleElementSearchLineHeight",(function(){return Yc})),o.d(n,"cssStyleElementWOOProductMetaType",(function(){return Xc})),o.d(n,"cssStyleElementWOOProductMetaCategoryFontFamily",(function(){return Zc})),o.d(n,"cssStyleElementWOOProductMetaCategoryFontSize",(function(){return Jc})),o.d(n,"cssStyleElementWOOProductMetaCategoryLineHeight",(function(){return Qc})),o.d(n,"cssStyleElementWOOProductMetaCategoryFontWeight",(function(){return ed})),o.d(n,"cssStyleElementWOOProductMetaCategoryLetterSpacing",(function(){return td})),o.d(n,"cssStyleElementWOOProductMetaValueFontFamily",(function(){return od})),o.d(n,"cssStyleElementWOOProductMetaValueFontSize",(function(){return nd})),o.d(n,"cssStyleElementWOOProductMetaValueLineHeight",(function(){return ad})),o.d(n,"cssStyleElementWOOProductMetaValueFontWeight",(function(){return rd})),o.d(n,"cssStyleElementWOOProductMetaValueLetterSpacing",(function(){return id})),o.d(n,"cssStyleElementWOOProductMetaTopSpacing",(function(){return ld})),o.d(n,"cssStyleElementWOOProductMetaRightSpacing",(function(){return sd})),o.d(n,"cssStyleElementWOOProductMetaRightSpacingInline",(function(){return cd})),o.d(n,"cssStyleElementWOOProductMetaCategoryColor",(function(){return dd})),o.d(n,"cssStyleElementWOOProductMetaValueColor",(function(){return ud})),o.d(n,"cssStyleElementWOOProductMetaDividers",(function(){return pd})),o.d(n,"cssStyleElementWOORatingSize",(function(){return bd})),o.d(n,"cssStyleElementWOORatingTextColor",(function(){return md})),o.d(n,"cssStyleElementWOORatingSpacing",(function(){return hd})),o.d(n,"cssStyleElementWOORatingBgStarColor",(function(){return gd})),o.d(n,"cssStyleElementWOOCartIconColor",(function(){return vd})),o.d(n,"cssStyleElementWOOCartSubtotalDisabled",(function(){return fd})),o.d(n,"cssStyleElementWOOCartPurchasesDisabled",(function(){return yd})),o.d(n,"cssStyleElementWOOCartTransitionProperty",(function(){return Od})),o.d(n,"cssStyleElementWOOCartPurchasesColor",(function(){return Sd})),o.d(n,"cssStyleElementWOOCartPurchasesFontFamily",(function(){return Cd})),o.d(n,"cssStyleElementWOOCartPurchasesFontSize",(function(){return xd})),o.d(n,"cssStyleElementWOOCartPurchasesLineHeight",(function(){return jd})),o.d(n,"cssStyleElementWOOCartPurchasesFontWeight",(function(){return Bd})),o.d(n,"cssStyleElementWOOCartPurchasesLetterSpacing",(function(){return Pd})),o.d(n,"cssStyleElementWOOCartTitleFontFamily",(function(){return wd})),o.d(n,"cssStyleElementWOOCartTitleFontSize",(function(){return Td})),o.d(n,"cssStyleElementWOOCartTitleLineHeight",(function(){return zd})),o.d(n,"cssStyleElementWOOCartTitleFontWeight",(function(){return Ed})),o.d(n,"cssStyleElementWOOCartTitleLetterSpacing",(function(){return kd})),o.d(n,"cssStyleElementWOOCartCostFontFamily",(function(){return Hd})),o.d(n,"cssStyleElementWOOCartCostFontSize",(function(){return Fd})),o.d(n,"cssStyleElementWOOCartCostLineHeight",(function(){return _d})),o.d(n,"cssStyleElementWOOCartCostFontWeight",(function(){return Rd})),o.d(n,"cssStyleElementWOOCartCostLetterSpacing",(function(){return Md})),o.d(n,"cssStyleElementWOOCartSubtotalFontFamily",(function(){return Ld})),o.d(n,"cssStyleElementWOOCartSubtotalFontSize",(function(){return Wd})),o.d(n,"cssStyleElementWOOCartSubtotalLineHeight",(function(){return Id})),o.d(n,"cssStyleElementWOOCartSubtotalFontWeight",(function(){return Nd})),o.d(n,"cssStyleElementWOOCartSubtotalLetterSpacing",(function(){return Ad})),o.d(n,"cssStyleElementWOOCartButtonFontFamily",(function(){return Dd})),o.d(n,"cssStyleElementWOOCartButtonFontSize",(function(){return Vd})),o.d(n,"cssStyleElementWOOCartButtonLineHeight",(function(){return $d})),o.d(n,"cssStyleElementWOOCartButtonFontWeight",(function(){return Gd})),o.d(n,"cssStyleElementWOOCartButtonLetterSpacing",(function(){return Ud})),o.d(n,"cssStyleElementWOOCartTitleColor",(function(){return Kd})),o.d(n,"cssStyleElementWOOCartCostColor",(function(){return qd})),o.d(n,"cssStyleElementWOOCartSubtotalColor",(function(){return Yd})),o.d(n,"cssStyleElementWOOCartButtonColor",(function(){return Xd})),o.d(n,"cssStyleElementWOOCartButtonBgColor",(function(){return Zd})),o.d(n,"cssStyleElementWOOCartButtonDirection",(function(){return Jd})),o.d(n,"cssStyleElementWOOCartButtonSpacing",(function(){return Qd})),o.d(n,"cssStyleElementWOOCartButtonBorderRadius",(function(){return eu})),o.d(n,"cssStyleElementWOOCartSidebarHorizontalAlign",(function(){return tu})),o.d(n,"cssStyleElementWOOCartSidebarVerticalAlign",(function(){return ou})),o.d(n,"cssStyleElementWOOCartSidebarWidth",(function(){return nu})),o.d(n,"cssStyleElementWOOCartSidebarHeight",(function(){return au})),o.d(n,"cssStyleElementWOOCartBubbleColor",(function(){return ru})),o.d(n,"cssStyleElementWOOCartBubbleBg",(function(){return iu})),o.d(n,"cssStyleWrapperCustomHeight",(function(){return su})),o.d(n,"cssStyleWrapperContainerFlex",(function(){return uu})),o.d(n,"cssStyleWrapperFixedFlex",(function(){return cu})),o.d(n,"cssStyleWrapperBorderFlex",(function(){return du})),o.d(n,"cssStyleWrapperContainerSize",(function(){return pu})),o.d(n,"cssStyleElementMenuAlign",(function(){return bu})),o.d(n,"cssStyleElementMenuMode",(function(){return fu})),o.d(n,"cssStyleElementMenuSize",(function(){return yu})),o.d(n,"cssStyleElementMenuDropdown",(function(){return hp})),o.d(n,"cssStyleElementMenuDropdownOpened",(function(){return vp})),o.d(n,"cssStyleElementMenuInnerDropdown",(function(){return gp})),o.d(n,"cssStyleElementMenuDropdownInnerOpened",(function(){return fp})),o.d(n,"cssStyleElementMenuDropdownArrow",(function(){return yp})),o.d(n,"cssStyleElementMenuShow",(function(){return vu})),o.d(n,"cssStyleElementMenuShowIcon",(function(){return gu})),o.d(n,"cssStyleElementMenuIconSpacing",(function(){return mu})),o.d(n,"cssStyleElementMenuIconSize",(function(){return hu})),o.d(n,"cssStyleElementMenuBgColor",(function(){return Ou})),o.d(n,"cssStyleElementMenuLinkBgColor",(function(){return Su})),o.d(n,"cssStyleElementMenuPadding",(function(){return xu})),o.d(n,"cssStyleElementMenuActiveColor",(function(){return ju})),o.d(n,"cssStyleElementMenuActiveBgColor",(function(){return Pu})),o.d(n,"cssStyleElementMenuActiveLinkBgColor",(function(){return Bu})),o.d(n,"cssStyleElementMenuActiveBorder",(function(){return wu})),o.d(n,"cssStyleElementMenuCurrentColor",(function(){return Tu})),o.d(n,"cssStyleElementMenuCurrentLinkBgColor",(function(){return Eu})),o.d(n,"cssStyleElementMenuCurrentBgColor",(function(){return zu})),o.d(n,"cssStyleElementMenuCurrentBorder",(function(){return ku})),o.d(n,"cssStyleElementMenuBorder",(function(){return Cu})),o.d(n,"cssStyleElementMMenuFontFamily",(function(){return Fu})),o.d(n,"cssStyleElementMMenuFontSize",(function(){return _u})),o.d(n,"cssStyleElementMMenuLineHeight",(function(){return Ru})),o.d(n,"cssStyleElementMMenuFontWeight",(function(){return Mu})),o.d(n,"cssStyleElementMMenuLetterSpacing",(function(){return Lu})),o.d(n,"cssStyleElementMMenuColor",(function(){return Wu})),o.d(n,"cssStyleElementMMenuHoverColor",(function(){return Iu})),o.d(n,"cssStyleElementMMenuActiveColor",(function(){return Nu})),o.d(n,"cssStyleElementMMenuBorderColor",(function(){return Au})),o.d(n,"cssStyleElementMMenuBackgroundColor",(function(){return Du})),o.d(n,"cssStyleElementMMenuItemHorizontalAlign",(function(){return Vu})),o.d(n,"cssStyleElementMMenuIconColor",(function(){return $u})),o.d(n,"cssStyleElementMMenuSize",(function(){return Hu})),o.d(n,"cssStyleElementMMenuIconSpacing",(function(){return Gu})),o.d(n,"cssStyleElementMMenuIconSize",(function(){return Uu})),o.d(n,"cssStyleElementMMenuBtnNext",(function(){return Ku})),o.d(n,"cssStyleElementMMenuListViewMargin",(function(){return qu})),o.d(n,"cssStyleElementMMenuItemPadding",(function(){return Yu})),o.d(n,"cssStyleElementMMenuItemPaddingTopZero",(function(){return Xu})),o.d(n,"cssStyleElementMMenuItemPaddingBottomZero",(function(){return Zu})),o.d(n,"cssStyleElementMMenuPadding",(function(){return Ju})),o.d(n,"cssStyleElementMenuSubMenuFontFamily",(function(){return Qu})),o.d(n,"cssStyleElementMenuSubMenuFontSize",(function(){return ep})),o.d(n,"cssStyleElementMenuSubMenuLineHeight",(function(){return tp})),o.d(n,"cssStyleElementMenuSubMenuFontWeight",(function(){return op})),o.d(n,"cssStyleElementMenuSubMenuLetterSpacing",(function(){return np})),o.d(n,"cssStyleElementMenuSubMenuColor",(function(){return ap})),o.d(n,"cssStyleElementMenuSubMenuHoverColor",(function(){return rp})),o.d(n,"cssStyleElementMenuSubMenuIconSpacing",(function(){return ip})),o.d(n,"cssStyleElementMenuSubMenuIconSize",(function(){return lp})),o.d(n,"cssStyleElementMenuSubMenuBgColor",(function(){return sp})),o.d(n,"cssStyleElementMenuSubMenuHoverBgColor",(function(){return cp})),o.d(n,"cssStyleElementMenuSubMenuBorderColor",(function(){return dp})),o.d(n,"cssStyleElementMenuSubMenuBorderBottom",(function(){return up})),o.d(n,"cssStyleElementMenuSubMenuCurrentColor",(function(){return pp})),o.d(n,"cssStyleElementMenuSubMenuCurrentBgColor",(function(){return bp})),o.d(n,"cssStyleElementMenuSubMenuCurrentBoxShadow",(function(){return mp})),o.d(n,"cssStyleMenuDropdownBeforePositionLeft",(function(){return xp})),o.d(n,"cssStyleMenuDropdownBeforePositionRight",(function(){return jp})),o.d(n,"cssStyleMenuDropdownPosition",(function(){return Op})),o.d(n,"cssStyleMenuDropdownPositionLeft",(function(){return Sp})),o.d(n,"cssStyleMenuDropdownPositionRight",(function(){return Cp})),o.d(n,"cssStyleMenuFirstDropdownPosition",(function(){return Bp})),o.d(n,"cssStyleMenuFirstDropdownPositionLeft",(function(){return Pp})),o.d(n,"cssStyleMenuFirstDropdownPositionRight",(function(){return wp})),o.d(n,"cssStyleMenuFirstDropdownBeforePositionLeft",(function(){return Tp})),o.d(n,"cssStyleMenuFirstDropdownBeforePositionRight",(function(){return zp})),o.d(n,"cssStyleElementMegaMenuWidth",(function(){return Ep})),o.d(n,"cssStyleElementMegaMenuOffsetTop",(function(){return kp})),o.d(n,"cssStyleElementMegaMenuOpened",(function(){return Fp})),o.d(n,"cssStyleElementMegaMenuHeight",(function(){return Hp})),o.d(n,"cssStyleElementTableWidth",(function(){return _p})),o.d(n,"cssStyleElementTableIconSize",(function(){return Rp})),o.d(n,"cssStyleElementTableSpacing",(function(){return Mp})),o.d(n,"cssStyleElementTableBtnIconPosition",(function(){return Lp})),o.d(n,"cssStyleElementTableCustomFlexHorizontalAlign",(function(){return Wp})),o.d(n,"cssStyleElementTableAsideWidth",(function(){return Ip})),o.d(n,"cssStyleElementTableEvenBgColor",(function(){return Np})),o.d(n,"cssStyleElementTableEvenColor",(function(){return Ap})),o.d(n,"cssStyleTablePadding",(function(){return Dp})),o.d(n,"cssStyleElementMenuSimpleItemPadding",(function(){return Vp})),o.d(n,"cssStyleElementMenuSimpleColorBars",(function(){return $p})),o.d(n,"cssStyleElementMenuSimpleWidth",(function(){return Gp})),o.d(n,"cssStyleElementMenuSimpleActiveColor",(function(){return Up})),o.d(n,"cssStyleElementImageMaxWidthPreview",(function(){return qp})),o.d(n,"cssStyleElementImageHeightPreview",(function(){return Yp})),o.d(n,"cssStyleElementImageMaxWidthEditor",(function(){return Zp})),o.d(n,"cssStyleElementImageHeightEditor",(function(){return Jp})),o.d(n,"cssStyleElementImageBorderRadius",(function(){return Xp})),o.d(n,"cssStyleElementImageWidthWrapper",(function(){return Qp})),o.d(n,"cssStyleElementImageHeightWrapper",(function(){return eb})),o.d(n,"cssStyleElementImageMarginLeft",(function(){return tb})),o.d(n,"cssStyleElementImageMarginTop",(function(){return ob})),o.d(n,"cssStyleElementImagePictureSize",(function(){return nb})),o.d(n,"cssStyleElementImageTransitionProperty",(function(){return ab})),o.d(n,"cssStyleElementImageFilter",(function(){return rb})),o.d(n,"cssStyleAnimation",(function(){return ib})),o.d(n,"cssStyleAnimationDuration",(function(){return lb})),o.d(n,"cssStyleAnimationDelay",(function(){return sb})),o.d(n,"cssStyleRotate",(function(){return ub})),o.d(n,"cssStyleElementWOOAddToCartSize",(function(){return pb})),o.d(n,"cssStyleElementWOOAddToCartSpacing",(function(){return mb})),o.d(n,"cssStyleElementWOOAddToCartInputSize",(function(){return hb})),o.d(n,"cssStyleElementWOOAddToCartInputPosition",(function(){return gb})),o.d(n,"cssStyleElementWOOAddToCartInputFontFamily",(function(){return fb})),o.d(n,"cssStyleElementWOOAddToCartInputFontSize",(function(){return yb})),o.d(n,"cssStyleElementWOOAddToCartInputLineHeight",(function(){return Ob})),o.d(n,"cssStyleElementWOOAddToCartInputFontWeight",(function(){return Sb})),o.d(n,"cssStyleElementWOOAddToCartInputLetterSpacing",(function(){return Cb})),o.d(n,"cssStyleElementWOOAddToCartInputAlign",(function(){return vb})),o.d(n,"cssStyleElementWOOAddToCartInputColor",(function(){return xb})),o.d(n,"cssStyleElementWOOAddToCartInputBg",(function(){return Gb})),o.d(n,"cssStyleElementWOOAddToCartInputBorder",(function(){return Kb})),o.d(n,"cssStyleElementWOOAddToCartInputRadius",(function(){return bb})),o.d(n,"cssStyleElementWOOAddToCartInputBoxShadow",(function(){return qb})),o.d(n,"cssStyleElementWOOAddToCartButtonColor",(function(){return jb})),o.d(n,"cssStyleElementWOOAddToCartLabelFontFamily",(function(){return Bb})),o.d(n,"cssStyleElementWOOAddToCartLabelFontSize",(function(){return Pb})),o.d(n,"cssStyleElementWOOAddToCartLabelLineHeight",(function(){return wb})),o.d(n,"cssStyleElementWOOAddToCartLabelFontWeight",(function(){return Tb})),o.d(n,"cssStyleElementWOOAddToCartLabelLetterSpacing",(function(){return zb})),o.d(n,"cssStyleElementWOOAddToCartValueFontFamily",(function(){return Eb})),o.d(n,"cssStyleElementWOOAddToCartValueFontSize",(function(){return kb})),o.d(n,"cssStyleElementWOOAddToCartValueLineHeight",(function(){return Hb})),o.d(n,"cssStyleElementWOOAddToCartValueFontWeight",(function(){return Fb})),o.d(n,"cssStyleElementWOOAddToCartValueLetterSpacing",(function(){return _b})),o.d(n,"cssStyleElementWOOAddToCartLabelColor",(function(){return Rb})),o.d(n,"cssStyleElementWOOAddToCartValueColor",(function(){return Mb})),o.d(n,"cssStyleElementWOOAddToCartClearFontFamily",(function(){return Lb})),o.d(n,"cssStyleElementWOOAddToCartClearFontSize",(function(){return Wb})),o.d(n,"cssStyleElementWOOAddToCartClearLineHeight",(function(){return Ib})),o.d(n,"cssStyleElementWOOAddToCartClearFontWeight",(function(){return Nb})),o.d(n,"cssStyleElementWOOAddToCartClearLetterSpacing",(function(){return Ab})),o.d(n,"cssStyleElementWOOAddToCartClearColor",(function(){return Db})),o.d(n,"cssStyleElementWOOAddToCartTableMargin",(function(){return Vb})),o.d(n,"cssStyleElementWOOAddToCartTableBorder",(function(){return $b})),o.d(n,"cssStyleElementWOOAddToCartTableBg",(function(){return Ub})),o.d(n,"cssStyleElementWOOAddToCartTableBoxShadow",(function(){return Yb})),o.d(n,"cssStyleElementWOOAddToCartBorder",(function(){return Xb})),o.d(n,"cssStyleElementWOOAddToCartBorderRadius",(function(){return Zb})),o.d(n,"cssStyleElementWOOGalleryBorderRadiusThumbnail",(function(){return Qb})),o.d(n,"cssStyleElementWOOGalleryBorderThumbnail",(function(){return Jb})),o.d(n,"cssStyleElementWOOGalleryBoxShadowThumbnail",(function(){return em})),o.d(n,"cssStyleElementWOOGallerySpacing",(function(){return tm})),o.d(n,"cssStyleElementWOOGalleryParentSize",(function(){return om})),o.d(n,"cssStyleElementWOOGalleryBetweenThumbnail",(function(){return nm})),o.d(n,"cssStyleElementWOOGalleryThumbnailSize",(function(){return am})),o.d(n,"cssStyleElementWOOGalleryChildStyle",(function(){return rm})),o.d(n,"cssStyleElementWOOGallerySpacingStyleLeftRigth",(function(){return im})),o.d(n,"cssStyleElementWOOGalleryZoomReposition",(function(){return lm}));var a=o(57);function r(e){return function(e,t){let o=1540483477,n=t^e.length,a=e.length,r=0;for(;a>=4;){let t=i(e,r);t=s(t,o),t^=t>>>24,t=s(t,o),n=s(n,o),n^=t,r+=4,a-=4}switch(a){case 3:n^=l(e,r),n^=e.charCodeAt(r+2)<<16,n=s(n,o);break;case 2:n^=l(e,r),n=s(n,o);break;case 1:n^=e.charCodeAt(r),n=s(n,o)}return n^=n>>>13,n=s(n,o),n^=n>>>15,n>>>0}(e).toString(36)}function i(e,t){return e.charCodeAt(t++)+(e.charCodeAt(t++)<<8)+(e.charCodeAt(t++)<<16)+(e.charCodeAt(t)<<24)}function l(e,t){return e.charCodeAt(t++)+(e.charCodeAt(t++)<<8)}function s(e,t){return(65535&(e|=0))*(t|=0)+(((e>>>16)*t&65535)<<16)|0}var c=o(14);const d=c.g?{desktop:1500}:{desktop:1500,tablet:991,mobile:767},u=c.g?{normal:"normal"}:{normal:"normal",hover:"hover"};let p={};function b({v:e,vs:t,vd:o,styles:a,props:r}){if(o){const{defaultCSS:i,rulesCSS:l,customCSS:s}=function({v:e,vs:t,vd:o,styles:a,props:r}){let i="",l="",s="",c={},b={},g={},v="";Object.entries(d).forEach((function([d,p]){Object.entries(u).forEach((function([u,p]){"desktop"!==d&&"normal"!==u||Object.entries(a).forEach((function([a,p]){Object.entries(p).forEach((function([p,m]){m.forEach((function(p){const m=p.split("|||");v=2===m.length?m[1]:"";const f=m[0];if(!n[f])throw`The style function ${f} is missing`;i=n[f]({v:e,device:d,state:u,mode:v,props:r}),c=h({legacy:c,out:i,styleKey:a,state:u,currentStyle:p}),l=n[f]({v:t,device:d,state:u,mode:v,props:r}),b=h({legacy:b,out:l,styleKey:a,state:u,currentStyle:p}),s=n[f]({v:o,device:d,state:u,mode:v,props:r}),g=h({legacy:g,out:s,styleKey:a,state:u,currentStyle:p})}))}))}))}))}));const f=m({v:void 0,styles:a,legacy:g});p=g;const y=m({v:t,styles:a,legacy:b});p=b;const O=m({v:e,styles:a,legacy:c});return{defaultCSS:f,rulesCSS:y,customCSS:O}}({v:e,vs:t,vd:o,styles:a,props:r});return[i,l,s]}throw new Error("this should not happen. we must have accidentally omitted some element")}function m({v:e,styles:t,legacy:o}){let n="",a="",r="",i="",l="",s=0,c="",b="";return Object.entries(d).forEach((function([d,m],h,g){Object.entries(u).forEach((function([u,h]){o[u]&&(r="",i="",Object.entries(o[u]).forEach((function([l,c]){let d;n="",a="",Object.entries(c).forEach((function([r,i]){let c=i[s];e&&JSON.stringify(p[u][l][r])===JSON.stringify(o[u][l][r])&&(c=""),n+=t[l].standart&&-1!==t[l].standart.indexOf(r)&&""!==c&&void 0!==c?c:"",a+=t[l].interval&&-1!==t[l].interval.indexOf(r)&&""!==c&&void 0!==c?c:""})),d="normal"===u?l.replace(":hover","")+"{":l+"{",""!==n&&(r+=d+n+"}"),""!==a&&(i+=d+a+"}")}))),""!==r&&(c="desktop"===d&&"hover"===u?`@media(min-width:${g[s+1][1]}px){`:"desktop"===d?"":s===g.length-1?`@media(max-width:${m}px){`:`@media(max-width:${g[s][1]}px) and (min-width:${g[s+1][1]+1}px){`,l+=c+r+(""!==c?"}":"")),""!==i&&(b=g.length>1?0===s?`@media(min-width:${g[s+1][1]}px){`:s===g.length-1?`@media(max-width:${m}px){`:`@media(max-width:${g[s][1]}px) and (min-width:${g[s+1][1]+1}px){`:"",l+=b+i+(""!==b?"}":""))})),s++})),l}function h({legacy:e,out:t,styleKey:o,state:n,currentStyle:a}){return"hover"===n&&e.normal&&e.normal[o]&&e.normal[o][a]&&(t=e.normal[o][a][0]===t?"":t),e[n]?e[n][o]?e[n][o][a]?e[n][o][a].push(t):e[n][o][a]=[t]:e[n][o]={[a]:[t]}:e[n]={[o]:{[a]:[t]}},e}function g(e,t,[o,n,i]){let l,s,c;if(o)if(l=O.get(e),l){const{node:e,className:t,cssText:n}=l,a=f(o,t);a!==n&&(g.isServer||(e.childNodes[0].nodeValue=a),l.cssText=a)}else{const t="brz-css-"+Object(a.a)(5),n=f(o,t);let r;g.isServer||(r=document.createElement("style"),r.appendChild(document.createTextNode("")),r.childNodes[0].nodeValue=n,y("default",r)),l={node:r,className:t,cssText:n},S.default.push(l),O.set(e,l)}if(n){const e=r(n);if(s=O.get(e),!s){const t="brz-css-"+Object(a.a)(5),o=f(n,t);let r;g.isServer||(r=document.createElement("style"),r.appendChild(document.createTextNode("")),r.childNodes[0].nodeValue=o,y("rules",r)),s={node:r,className:t,cssText:o},S.rules.push(s),O.set(e,s)}}if(i)if(c=O.get(t),c){const{node:e,className:t,cssText:o}=c,n=f(i,t);n!==o&&(g.isServer||(e.childNodes[0].nodeValue=n),c.cssText=n)}else{const e="brz-css-"+Object(a.a)(5),o=f(i,e);let n;g.isServer||(n=document.createElement("style"),n.appendChild(document.createTextNode("")),n.childNodes[0].nodeValue=o,y("custom",n)),c={node:n,className:e,cssText:o},S.custom.push(c),O.set(t,c)}return[...l?[l.className]:[],...s?[s.className]:[],...c?[c.className]:[]].join(" ")}function v(){let e="";for(const t of["default","rules","custom"])for(const{cssText:o}of S[t])e+=o,e+="\n";return e}function f(e,t){return e.replace(/&&/gm,"."+t)}function y(e,t){const o=S.default,n=S.rules,a=S.custom;let r;switch(e){case"default":r=o.length>0?o[o.length-1].node:null;break;case"rules":r=n.length>0?n[n.length-1].node:o.length>0?o[o.length-1].node:null;break;case"custom":r=a.length>0?a[a.length-1].node:n.length>0?n[n.length-1].node:o.length>0?o[o.length-1].node:null;break;default:throw new Error("invalid tujur css node type: "+e)}r?r.insertAdjacentElement("afterend",t):document.head.appendChild(t)}const O=new Map,S={default:[],rules:[],custom:[]};var C=o(2),x=o(4),j=o(39),B=o(41),P=o(3);function w(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function T(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?w(Object(o),!0).forEach((function(t){Object(C.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):w(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function z(e){const t=Object(x.Td)(e);return void 0===t?"":`width:${t}%;`}function E(e){const t=Object(x.Td)(e);return void 0===t?"":`width:${t}px;`}function k(e){const t=Object(x.Td)(e);return c.g&&void 0!==t?`width:${t}%;`:""}function H(e){const t=Object(x.Td)(e);return void 0===t?"":`max-width:${t}%;`}function F(e){var t;return null!==(t=Object(j.b)(e=>`height:${e}px;`,Object(x.Pd)(e)))&&void 0!==t?t:""}function _(e){var t;return null!==(t=Object(j.b)(e=>`min-height:${e}px;`,Object(x.Pd)(e)))&&void 0!==t?t:""}function R(e){const t=Object(x.Qd)(e),o=B.d(Object(P.defaultValueValue)(T({key:"sizeSuffix"},e)))||"%";return void 0===t?"":`max-width:${t}${o};`}function M(e){const t=Object(x.Qd)(e);return void 0===t?"":`width:${t}%;`}function L(e){const t=Object(x.Qd)(e),o=B.d(Object(P.defaultValueValue)(T({key:"sizeSuffix"},e)));return void 0!==t&&o?`width:${t}${o};`:""}function W(e){const t=Object(x.Td)(e),o=B.d(Object(P.defaultValueValue)(T({key:"widthSuffix"},e)));return void 0===t?"":`width:${t}${o||"%"};`}function I(e){const t=Object(x.Od)(e);return"desktop"===e.device?`max-width: ${t}%;`:""}function N(e){var t;return null!==(t=Object(j.b)(e=>`margin-right: ${e}px;`,Object(x.Rd)(e)))&&void 0!==t?t:""}function A(e){var t;return null!==(t=Object(j.b)(e=>`margin-right: ${e}px;`,Object(x.Sd)(e)))&&void 0!==t?t:""}function D(e){var t;const o=B.d(Object(P.defaultValueValue)(T({key:"heightSuffix"},e)));return"px"===o?null!==(t=Object(j.b)(e=>`height:${e}${o};`,Object(x.Pd)(e)))&&void 0!==t?t:"":"%"===o?"height: unset;":""}function V(e){var t;const o=B.d(Object(P.defaultValueValue)(T({key:"heightSuffix"},e)));return"%"===o?null!==(t=Object(j.b)(e=>`content: ""; display:block; width: 0; padding-top:${e}${o};`,Object(x.Pd)(e)))&&void 0!==t?t:"":"px"===o?"height: unset;":""}function $({v:e,device:t,state:o}){const n=Object(x.u)({v:e,device:t,state:o,current:"top"}),a=Object(x.r)({v:e,device:t,state:o}),r=Object(x.n)({v:e,device:t,state:o});return void 0===n?"":`border-top:${n}px ${a} ${r};`}function G({v:e,device:t,prefix:o=""}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:o})};`:""}function U({v:e,device:t,prefix:o=""}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:o})}px;`}function K({v:e,device:t,prefix:o=""}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:o})};`}function q({v:e,device:t,prefix:o=""}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:o})};`}function Y({v:e,device:t,prefix:o=""}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:o})}px;`}function X({v:e,device:t}){return G({v:e,device:t,prefix:"typography"})}function Z({v:e,device:t}){return U({v:e,device:t,prefix:"typography"})}function J({v:e,device:t}){return K({v:e,device:t,prefix:"typography"})}function Q({v:e,device:t}){return q({v:e,device:t,prefix:"typography"})}function ee({v:e,device:t}){return Y({v:e,device:t,prefix:"typography"})}function te({v:e,device:t}){return`font-size:${Object(x.Zd)({v:e,device:t})};`}function oe({v:e,device:t}){return`margin-left:${Object(x.bb)({v:e,device:t})};`}function ne({v:e,device:t}){return`margin-right:${Object(x.bb)({v:e,device:t})};`}function ae({v:e,device:t}){return G({v:e,device:t,prefix:"number"})}function re({v:e,device:t}){return U({v:e,device:t,prefix:"number"})}function ie({v:e,device:t}){return K({v:e,device:t,prefix:"number"})}function le({v:e,device:t}){return q({v:e,device:t,prefix:"number"})}function se({v:e,device:t}){return Y({v:e,device:t,prefix:"number"})}function ce({v:e,device:t}){return G({v:e,device:t,prefix:"title"})}function de({v:e,device:t}){return U({v:e,device:t,prefix:"title"})}function ue({v:e,device:t}){return K({v:e,device:t,prefix:"title"})}function pe({v:e,device:t}){return q({v:e,device:t,prefix:"title"})}function be({v:e,device:t}){return Y({v:e,device:t,prefix:"title"})}function me({v:e,device:t}){return G({v:e,device:t,prefix:"message"})}function he({v:e,device:t}){return U({v:e,device:t,prefix:"message"})}function ge({v:e,device:t}){return K({v:e,device:t,prefix:"message"})}function ve({v:e,device:t}){return q({v:e,device:t,prefix:"message"})}function fe({v:e,device:t}){return Y({v:e,device:t,prefix:"message"})}function ye({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"numberColor"})}function Oe({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"titleColor"})}function Se({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"messageColor"})}function Ce(){return"transition-property: color, background-color, border, box-shadow;"}function xe({v:e}){return`stroke-dasharray: calc(${e.end} + 0.5) 100;`}function je({v:e}){return`stroke-width: ${e.strokeWidth} !important;`}function Be({v:e,device:t,state:o,prefix:n="fillColor"}){const a=Object(x.cb)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`fill:${a};`}function Pe({v:e,device:t,state:o,prefix:n="strokeColor"}){const a=Object(x.db)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`stroke:${a};`}function we(){return"transition-property: color, fill, stroke"}function Te({v:e,device:t,state:o}){return`flex-direction:${Object(x.fb)({v:e,device:t,state:o})};`}function ze({v:e,device:t,state:o}){return`margin-right:${Object(x.hb)({v:e,device:t,state:o})};`}function Ee({v:e,device:t,state:o}){return`margin-left:${Object(x.gb)({v:e,device:t,state:o})};`}function ke({v:e,device:t,state:o,prefix:n="",borderColor:a="color"}){let r="",i=0,l=0,s=0,c=0,d=Object(x.t)({v:e,device:t,state:o,prefix:n}),u="",p=0,b=0,m=0,h=0,g=!1,v="",f="";const y=Object(x.r)({v:e,device:t,state:o,prefix:n});if(a="transparent"===a?"transparent":Object(x.n)({v:e,device:t,state:o,prefix:n}),"grouped"===d){const a=Object(x.s)({v:e,device:t,state:o,prefix:n});i=a,l=a,s=a,c=a}else i=Object(x.u)({v:e,device:t,state:o,prefix:n,current:"top"}),l=Object(x.u)({v:e,device:t,state:o,prefix:n,current:"right"}),s=Object(x.u)({v:e,device:t,state:o,prefix:n,current:"bottom"}),c=Object(x.u)({v:e,device:t,state:o,prefix:n,current:"left"});if("normal"===o){if(v=Object(x.r)({v:e,device:t,prefix:n,state:"hover"}),f="transparent"===a?"transparent":Object(x.n)({v:e,device:t,prefix:n,state:"hover"}),u=Object(x.t)({v:e,device:t,prefix:n,state:"hover"}),"grouped"===u){const o=Object(x.s)({v:e,device:t,state:"hover"});p=o,b=o,m=o,h=o}else p=Object(x.u)({v:e,device:t,prefix:n,state:"hover",current:"top"}),b=Object(x.u)({v:e,device:t,prefix:n,state:"hover",current:"right"}),m=Object(x.u)({v:e,device:t,prefix:n,state:"hover",current:"bottom"}),h=Object(x.u)({v:e,device:t,prefix:n,state:"hover",current:"left"});g=(p>0||b>0||m>0||h>0)&&""!==v}return r=void 0===i||void 0===l||void 0===s||void 0===c||void 0===y||void 0===a?"":i===l&&i===s&&i===c&&i>0&&""!==y?`border:${i}px ${y} ${a};`:(i>0||l>0||s>0||c>0)&&""!==y?`border-width:${i}px ${l}px ${s}px ${c}px;border-style:${y};border-color:${a};`:(i===l&&i===s&&i===c&&0===i||""===y)&&g?`border:0px ${v} ${f};`:`border:0px solid ${a};`,r}function He({v:e,device:t,state:o,prefix:n="",borderColor:a="transparent"}){return ke({v:e,device:t,state:o,prefix:n,borderColor:a})}function Fe({v:e,device:t,state:o,prefix:n=""}){let a=0,r=0,i=0,l=0;if("grouped"===Object(x.p)({v:e,device:t,state:o,prefix:n})){const s=Object(x.o)({v:e,device:t,state:o,prefix:n});a=s,r=s,i=s,l=s}else a=Object(x.q)({v:e,device:t,state:o,prefix:n,current:"topLeft"}),r=Object(x.q)({v:e,device:t,state:o,prefix:n,current:"topRight"}),i=Object(x.q)({v:e,device:t,state:o,prefix:n,current:"bottomLeft"}),l=Object(x.q)({v:e,device:t,state:o,prefix:n,current:"bottomRight"});return void 0===a?"":a===r&&a===i&&a===l&&a>0?`border-radius: ${a}px;`:a>0||r>0||i>0||l>0?`border-radius:${a}px ${r}px ${l}px ${i}px;`:"border-radius:0;"}function _e({v:e,device:t,state:o}){return`width:calc(100% + ${Object(x.lb)({v:e,device:t,state:o})}px);`}function Re({v:e,device:t,state:o}){return`margin:-${Object(x.lb)({v:e,device:t,state:o})/2}px;`}function Me({v:e,device:t,state:o}){const n=Object(x.kb)({v:e,device:t,state:o});return`width:${n>1?100/n:100}%;`}function Le({v:e,device:t,state:o}){return`padding:${Object(x.lb)({v:e,device:t,state:o})/2}px;`}function We({v:e,device:t,state:o}){const n=(a="filterSpacing",Object(P.defaultValueValue)({v:e,key:a,device:t,state:o}));var a;return`margin: 1px ${n}px 0 ${n}px;`}function Ie({v:e,device:t,state:o}){var n;return`margin-bottom:${n="afterFilterSpacing",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o})}px;`}function Ne({v:e,device:t,state:o}){const n=Object(x.jb)({v:e,device:t,state:o}),a=Object(x.c)({v:e,device:t,state:o,prefix:"filter"});switch(n){case"style-2":return"center"===a?"":"left"===a?"margin-right: auto;":"margin-left: auto;";default:{const e={left:"flex-start",center:"center",right:"flex-end"};return`justify-content:${void 0===a?a:e[a]};`}}}function Ae({v:e,device:t,state:o}){return yo({v:e,device:t,state:o,prefix:"filter"})}function De({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"filterColor"})}function Ve({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"filterBg"})}function $e({v:e,device:t,state:o}){return ht({v:e,device:t,state:o,prefix:"filter"})}function Ge({v:e,device:t,state:o}){return ke({v:e,device:t,state:o,prefix:"filter"})}function Ue({v:e,device:t,state:o}){return Fe({v:e,device:t,state:o,prefix:"filter"})}function Ke({v:e,device:t}){return G({v:e,device:t,prefix:"filter"})}function qe({v:e,device:t}){return U({v:e,device:t,prefix:"filter"})}function Ye({v:e,device:t}){return K({v:e,device:t,prefix:"filter"})}function Xe({v:e,device:t}){return q({v:e,device:t,prefix:"filter"})}function Ze({v:e,device:t}){return Y({v:e,device:t,prefix:"filter"})}function Je({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"activeFilterColor"})}function Qe({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"activeFilterBg"})}function et({v:e,device:t,state:o}){return ke({v:e,device:t,state:o,prefix:"activeFilter"})}function tt({v:e,device:t,state:o}){return ht({v:e,device:t,state:o,prefix:"activeFilter"})}function ot({v:e,device:t,state:o,prefix:n="bg"}){const a=Object(x.h)({v:e,device:t,state:o,prefix:n}),r=Object(x.j)({v:e,device:t,state:o});return void 0===a||"none"!==r?"background-color:transparent;":`background-color:${a};`}function nt({v:e,device:t,state:o,prefix:n="bg"}){const a=Object(x.i)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`background-color:${a};`}function at({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"bg2"})}function rt({v:e,device:t,state:o}){return`background-image:${Object(x.j)({v:e,device:t,state:o})};`}function it({v:e,device:t,state:o}){return`background-image:${Object(x.k)({v:e,device:t,state:o})};`}function lt({v:e,device:t}){return"image"===Object(x.qd)({v:e,device:t})?"display: block;":"display: none;"}function st({v:e,device:t,state:o}){const n=Object(x.k)({v:e,device:t,state:o}),a=Object(x.l)({v:e,device:t,state:o}),r=Object(x.m)({v:e,device:t,state:o});return"none"===n?"":`background-position:${a} ${r};`}function ct({v:e,device:t,props:o}){const{isSlider:n}=o.meta.section,a=Object(x.g)({v:e,isSlider:n});return"desktop"!==t||void 0===a?"":`background-attachment:${a};`}function dt({v:e,device:t}){return`display: ${"map"===Object(x.qd)({v:e,device:t})?"block":"none"};`}function ut({v:e,device:t}){return`display: ${"video"===Object(x.qd)({v:e,device:t})?"block":"none"};`}function pt({v:e,device:t,state:o,prefix:n}){const a=Object(x.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function bt({v:e,device:t,state:o}){const n=Object(x.B)({v:e,device:t,state:o,prefix:"labelColor"});return void 0===n?"":`color:${n};`}function mt({v:e,device:t,state:o,prefix:n=""}){const a=Object(x.z)({v:e,device:t,state:o,prefix:n}),r=Object(x.w)({v:e,device:t,state:o,prefix:n}),i=Object(x.v)({v:e,device:t,state:o,prefix:n}),l=Object(x.y)({v:e,device:t,state:o,prefix:n}),s="inset"===a?-1*Object(x.x)({v:e,device:t,state:o,prefix:n}):Object(x.x)({v:e,device:t,state:o,prefix:n}),c="inset"===a?-1*Object(x.A)({v:e,device:t,state:o,prefix:n}):Object(x.A)({v:e,device:t,state:o,prefix:n});if(""===a||"off"===a||0===s&&0===c&&0===i&&0===l)return"";return`${"inset"===a?"inset ":""}${s}px ${c}px ${i}px ${l}px ${r};`}function ht({v:e,device:t,state:o,prefix:n=""}){const a=mt({v:e,device:t,state:o,prefix:n});return""===a?"":`box-shadow:${a};`}function gt({v:e,device:t,state:o,prefix:n=""}){const a=Object(x.z)({v:e,device:t,state:o,prefix:n}),r=Object(x.A)({v:e,device:t,state:o,prefix:n}),i=Object(x.v)({v:e,device:t,state:o,prefix:n}),l=Object(x.w)({v:e,device:t,state:o,prefix:n}),s=r<0?-i:i;return""===a||"off"===a||0===r&&0===i?"":0===r?`box-shadow:inset 0 ${r+s}px ${i}px -${i}px ${l}, inset 0 -${r+s}px ${i}px -${i}px ${l};display: block;`:`box-shadow:inset 0 ${r+s}px ${i}px -${i}px ${l}, inset 0 0 0 0 ${l};display: block;`}function vt({v:e,device:t,state:o}){const n=Object(x.Kd)({v:e,device:t,state:o}),a=Object(x.Jd)({v:e,device:t,state:o});return void 0===n?"":"none"===n?"background-image: none;":`background-image: url(${a});`}function ft({v:e,device:t,state:o}){const n=Object(x.Gd)({v:e,device:t,state:o}),a=Object(x.Hd)({v:e,device:t,state:o});return`background-size: 100% ${n}${a}; height: ${n}${a};`}function yt({v:e,device:t,state:o}){return`transform: ${"on"===Object(x.Fd)({v:e,device:t,state:o})?"rotateX(0deg) rotateY(-180deg)":"rotateX(0deg) rotateY(0deg)"};`}function Ot({v:e,device:t,state:o}){return`z-index: ${Object(x.Id)({v:e,device:t,state:o})};`}function St({v:e,device:t,state:o}){const n=Object(x.Ed)({v:e,device:t,state:o}),a=Object(x.Dd)({v:e,device:t,state:o});return void 0===n?"":"none"===n?"background-image: none;":`background-image: url(${a});`}function Ct({v:e,device:t,state:o}){const n=Object(x.Ad)({v:e,device:t,state:o}),a=Object(x.Bd)({v:e,device:t,state:o});return`background-size: 100% ${n}${a}; height: ${n}${a};`}function xt({v:e,device:t,state:o}){return`transform: ${"on"===Object(x.zd)({v:e,device:t,state:o})?"rotateX(-180deg) rotateY(0deg)":"rotateX(-180deg) rotateY(-180deg)"};`}function jt({v:e,device:t,state:o}){return`z-index: ${Object(x.Cd)({v:e,device:t,state:o})};`}function Bt({v:e,device:t,state:o}){const n=Object(x.ad)({v:e,device:t,state:o});return void 0===n?"":`transition-duration:0.${n}s;`}function Pt(){return"transition-property: filter, box-shadow, background, border-radius, border-color;"}function wt({v:e,device:t,state:o}){const n=Object(x.ae)({v:e,device:t,state:o});return void 0===n?"":`font-family:${n};`}function Tt({v:e,device:t,state:o}){const n=Object(x.be)({v:e,device:t,state:o});return void 0===n?"":`font-size:${n}px;`}function zt({v:e,device:t,state:o}){const n=Object(x.ee)({v:e,device:t,state:o});return void 0===n?"":`line-height:${n};`}function Et({v:e,device:t,state:o}){const n=Object(x.ce)({v:e,device:t,state:o});return void 0===n?"":`font-weight:${n};`}function kt({v:e,device:t,state:o}){const n=Object(x.de)({v:e,device:t,state:o});return void 0===n?"":`letter-spacing:${n}px;`}function Ht({v:e,device:t,state:o}){const n=Object(x.ud)({v:e,device:t,state:o,current:"paddingTop"}),a=Object(x.ud)({v:e,device:t,state:o,current:"paddingRight"});return void 0===n&&void 0===a?"":`padding:${n}px ${a}px;`}function Ft({v:e,device:t,state:o}){const n=Object(x.Ib)({v:e,device:t,state:o});return void 0===n?"":`max-width:${n}%;`}function _t(){return"transition-property: color, box-shadow, background, border;"}function Rt({v:e,device:t,state:o}){const n=Object(x.R)({v:e,device:t,state:o});return void 0===n?"":`border-radius:${n}px;`}function Mt({v:e,device:t,state:o}){const n=Object(x.V)({v:e,device:t,state:o});return void 0===n?"":`flex-flow:${n};`}function Lt({v:e,device:t,state:o}){const n=Object(x.S)({v:e,device:t,state:o});return void 0===n?"":`font-size:${n}px;`}function Wt({v:e,device:t,state:o}){const n=Object(x.U)({v:e,device:t,state:o}),a=Object(x.T)({v:e,device:t,state:o});return void 0===n||void 0===a?"":"left"===n?`margin-right:${a}px;margin-left:0;`:`margin-left:${a}px;margin-right:0;`}function It({v:e,device:t,state:o}){const n=Object(x.ib)({v:e,device:t,state:o});return void 0===n?"":`stroke-width:${n};`}function Nt(){return"transition-property: color, box-shadow, background, border-color;"}function At(){return"align-items: center; justify-content: center;"}function Dt(){return"transition-property:box-shadow;"}function Vt(){return"transition-property:color,border,box-shadow;"}function $t(){return"transition-property:border, box-shadow;"}function Gt(){return"transition-property:box-shadow;"}function Ut(){return"transition-property:box-shadow;"}function Kt(){return"transition-property:filter, box-shadow, border-radius, border;"}function qt({v:e,device:t,state:o}){return["fixed","absolute"].includes(Object(P.defaultValueValue)({v:e,key:"elementPosition",device:t,state:o}))?"height: unset":""}function Yt(){return"transition-property: box-shadow, border, border-radius;"}function Xt({v:e,device:t,state:o}){const n=Object(x.O)({v:e,device:t,state:o}),a=Object(x.P)({v:e,device:t,state:o});return void 0===n?"":`width:${n}${a};`}function Zt({v:e,device:t,state:o}){const n=Object(x.J)({v:e,device:t,state:o});return void 0===n?"":`display:${n};`}function Jt({v:e,device:t,state:o}){const n=Object(x.B)({v:e,device:t,state:o,prefix:"closeColor"});return void 0===n?"":`color:${n};`}function Qt({v:e,device:t,state:o}){const n=Object(x.F)({v:e,device:t,state:o}),a=Object(x.D)({v:e,device:t,state:o});return void 0===n||void 0===a?"":`font-size:${n+2*a}px;`}function eo({v:e,device:t,state:o}){const n=Object(x.D)({v:e,device:t,state:o});return void 0===n?"":`padding:${n}px;`}function to({v:e,device:t,state:o}){const n=Object(x.E)({v:e,device:t,state:o});return void 0===n?"":`border-radius:${n}px;`}function oo({v:e,device:t,state:o}){const n=Object(x.h)({v:e,device:t,prefix:"closeBg",state:o});return void 0===n?"":`background-color:${n};`}function no({v:e,device:t,state:o}){const n=Object(x.C)({v:e,device:t,state:o}),a=Object(x.G)({v:e,device:t,state:o}),r=Object(x.H)({v:e,device:t,state:o}),i=Object(x.K)({v:e,device:t,state:o}),l=Object(x.L)({v:e,device:t,state:o}),s=Object(x.F)({v:e,device:t,state:o}),c=Object(x.D)({v:e,device:t,state:o}),d=Object(x.I)({v:e,device:t,state:o}),u=`${"outside"===d?-i-s-2*c:i}${l}`,p=`${"outside"===d?-a-s-2*c:a}${r}`;switch(n){case"topLeft":return`top:${u};left:${p};right:auto;bottom:auto;`;case"topRight":return`top:${u};right:${p};left:auto;bottom:auto;`;case"bottomLeft":return`bottom:${u};left:${p};right:auto;top:auto;`;case"bottomRight":return`bottom:${u};right:${p};left:auto;top:auto;`}}function ao({v:e,device:t,state:o}){const n=Object(x.b)({v:e,device:t,state:o,prefix:"popupRow"});return void 0===n?"":`align-items:${n};`}function ro({v:e,device:t,state:o}){const n=Object(x.Q)({v:e,device:t,state:o}),a=Object(x.M)({v:e,device:t,state:o}),r=Object(x.N)({v:e,device:t,state:o});return"custom2"===n?`height: ${a}${r};`:""}function io({v:e,device:t,state:o}){return"custom2"===Object(x.Q)({v:e,device:t,state:o})?"max-height: 100%; overflow-x: hidden; overflow-y: auto;":""}function lo({v:e,device:t,state:o}){return"custom2"===Object(x.Q)({v:e,device:t,state:o})?"height: 100%;":""}function so({v:e,device:t,state:o}){return"custom2"===Object(x.Q)({v:e,device:t,state:o})?"max-height: 100%;":""}function co({v:e,device:t,state:o}){const n=Object(x.fe)({v:e,device:t,state:o}),a="relative"===(r="elementPosition",Object(P.defaultValueValue)({v:e,key:r,device:t,state:o}));var r;return 0===n&&a?"z-index: auto;":`z-index: ${n+(a?0:11)};`}function uo({v:e,device:t,state:o}){return`z-index: ${Object(x.fe)({v:e,device:t,state:o})+1};`}function po({v:e,device:t,state:o}){const n=Object(x.b)({v:e,device:t,state:o});return void 0===n?"":`align-items:${n};`}function bo({v:e,device:t,state:o}){const n=Object(x.a)({v:e,device:t,state:o});return void 0===n?"":`justify-content:${n};`}function mo({v:e,device:t,state:o}){const n=Object(x.c)({v:e,device:t,state:o,prefix:"content"});return void 0===n?"":`text-align:${n};`}function ho({v:e,device:t,state:o,prefix:n=""}){const a=Object(x.c)({v:e,device:t,state:o,prefix:n});return void 0===a?"":{left:"margin-right: auto; margin-left: 0;",center:"margin-left: auto; margin-right: auto;",right:"margin-left: auto; margin-right: 0;"}[a]}function go({v:e,device:t,state:o}){const n=Object(x.b)({v:e,device:t,state:o});return void 0===n?"":`justify-content:${n};`}function vo({v:e,device:t,state:o}){const n=Object(x.c)({v:e,device:t,state:o,prefix:"excerpt"});return void 0===n?"":`text-align:${n};`}function fo({v:e,device:t,state:o}){const n=Object(x.Td)({v:e,device:t,state:o});return n>0?`flex:1 1 ${n}%;`:""}function yo({v:e,device:t,state:o,prefix:n=""}){const a=jo({v:e,device:t,state:o,prefix:n}),r=a.paddingTop===a.paddingRight&&a.paddingTop===a.paddingBottom&&a.paddingTop===a.paddingLeft&&a.paddingTop>0;return 0===a.paddingTop&&0===a.paddingRight&&0===a.paddingBottom&&0===a.paddingLeft?"padding:0;":r?`padding:${a.paddingTop}${a.paddingTopSuffix};`:`padding:${a.paddingTop}${a.paddingTopSuffix} ${a.paddingRight}${a.paddingRightSuffix} ${a.paddingBottom}${a.paddingBottomSuffix} ${a.paddingLeft}${a.paddingLeftSuffix};`}function Oo({v:e,device:t,state:o}){0}function So({v:e,device:t,state:o}){{let n="";const a=jo({v:e,device:t,state:o});return n=`height:${a.paddingTop}${a.paddingTopSuffix};`,n}}function Co({v:e,device:t,state:o}){{let n="";const a=jo({v:e,device:t,state:o});return n=`height:${a.paddingBottom}${a.paddingBottomSuffix};`,n}}function xo({v:e,device:t,state:o}){{let n="";const a=jo({v:e,device:t,state:o});return n=`padding-right:${a.paddingRight}${a.paddingRightSuffix};padding-left:${a.paddingLeft}${a.paddingLeftSuffix};`,n}}function jo({v:e,device:t,state:o,prefix:n=""}){let a=0,r=0,i=0,l=0,s="px",c="px",d="px",u="px";if("grouped"===Object(x.td)({v:e,device:t,state:o,prefix:n})){const p=Object(x.rd)({v:e,device:t,state:o,prefix:n}),b=Object(x.sd)({v:e,device:t,state:o,prefix:n});a=p,r=p,i=p,l=p,s=b,c=b,d=b,u=b}else a=Object(x.ud)({v:e,device:t,state:o,prefix:n,current:"paddingTop"}),r=Object(x.ud)({v:e,device:t,state:o,prefix:n,current:"paddingRight"}),i=Object(x.ud)({v:e,device:t,state:o,prefix:n,current:"paddingBottom"}),l=Object(x.ud)({v:e,device:t,state:o,prefix:n,current:"paddingLeft"}),s=Object(x.vd)({v:e,device:t,state:o,prefix:n,current:"paddingTopSuffix"}),c=Object(x.vd)({v:e,device:t,state:o,prefix:n,current:"paddingRightSuffix"}),d=Object(x.vd)({v:e,device:t,state:o,prefix:n,current:"paddingBottomSuffix"}),u=Object(x.vd)({v:e,device:t,state:o,prefix:n,current:"paddingLeftSuffix"});return{paddingTop:a,paddingRight:r,paddingBottom:i,paddingLeft:l,paddingTopSuffix:s,paddingRightSuffix:c,paddingBottomSuffix:d,paddingLeftSuffix:u}}function Bo({v:e,device:t,state:o}){return`padding:${Object(x.kd)({v:e,device:t,state:o})} ${Object(x.jd)({v:e,device:t,state:o})} ${Object(x.hd)({v:e,device:t,state:o})} ${Object(x.id)({v:e,device:t,state:o})};`}function Po({v:e,device:t,state:o}){let n="",a="",r=0,i=0,l=0,s=0,c="",d="",u="",p="";a=Object(x.nd)({v:e,device:t,state:o}),"grouped"===a?(s=Object(x.od)({v:e,device:t,state:o,current:"marginLeft"}),"auto"===s?(r=l=Object(x.ld)({v:e,device:t,state:o}),s=i="auto",c=u=Object(x.md)({v:e,device:t,state:o})):(r=i=l=s=Object(x.ld)({v:e,device:t,state:o}),c=d=u=p=Object(x.md)({v:e,device:t,state:o}))):(r=Object(x.od)({v:e,device:t,state:o,current:"marginTop"}),i=Object(x.od)({v:e,device:t,state:o,current:"marginRight"}),l=Object(x.od)({v:e,device:t,state:o,current:"marginBottom"}),s=Object(x.od)({v:e,device:t,state:o,current:"marginLeft"}),c=Object(x.pd)({v:e,device:t,state:o,current:"marginTopSuffix"}),d=Object(x.pd)({v:e,device:t,state:o,current:"marginRightSuffix"}),u=Object(x.pd)({v:e,device:t,state:o,current:"marginBottomSuffix"}),p=Object(x.pd)({v:e,device:t,state:o,current:"marginLeftSuffix"}));return n=void 0===r?"":r===i&&r===l&&r===s&&0!==r?`margin:${r}${c};`:0!==r||0!==i||0!==l||0!==s?`margin:${r}${c} ${i}${d} ${l}${u} ${s}${p};`:"margin:0;",n}function wo({v:e,device:t,state:o}){return`margin:${Object(x.gd)({v:e,device:t,state:o})} ${Object(x.fd)({v:e,device:t,state:o})} ${Object(x.dd)({v:e,device:t,state:o})} ${Object(x.ed)({v:e,device:t,state:o})};`}function To(){return"display:flex;"}function zo(){return"display:inline-flex;"}function Eo(){return"display:block;"}function ko({v:e,device:t,state:o}){let n="";{const a=Object(x.Ld)({v:e,device:t,state:o}),r=Object(x.Md)({v:e,device:t,state:o});n=""!==a?`filter:${a};opacity:${r};`:""}return n}function Ho({v:e,device:t,state:o,mode:n="editor"}){const a=Object(x.Ld)({v:e,device:t,state:o});return"editor"===n&&""!==a?"display:var(--elements-visibility, flex);":""}function Fo({v:e,device:t,state:o,mode:n="editor"}){const a=Object(x.Ld)({v:e,device:t,state:o});return"editor"===n&&""!==a?"display:var(--elements-visibility, inline-flex);":""}function _o({v:e,device:t,state:o,mode:n="editor"}){const a=Object(x.Ld)({v:e,device:t,state:o});return"editor"===n&&""!==a?"display:var(--elements-visibility, block);":""}function Ro({v:e,device:t,state:o,mode:n="editor"}){const a=ko({v:e,device:t,state:o});return"editor"===n?a:""}function Mo({v:e}){const{membership:t,membershipRoles:o}=e,n=JSON.parse(o||"[]");if("off"===t||0===n.length)return"";return`display: var(--role-default ${n.map(e=>", var(--role-"+e).join("")}, none${")".repeat(n.length+1)};`}function Lo({v:e,device:t,state:o,prefix:n=""}){const a=Object(x.Wc)({v:e,device:t,state:o,prefix:n}),r=Object(x.Yc)({v:e,device:t,state:o,prefix:n}),i=Object(x.Zc)({v:e,device:t,state:o,prefix:n}),l=Object(x.Xc)({v:e,device:t,state:o,prefix:n});return 100===a&&0===r&&100===i&&100===l?"":`brightness(${a}%) hue-rotate(${r}deg) saturate(${i}%) contrast(${l}%)`}function Wo({v:e,device:t,state:o,prefix:n=""}){const a=Lo({v:e,device:t,state:o,prefix:n});return""===a?"":`filter:${a};`}function Io({v:e,device:t,state:o}){const n=Object(x.wc)({v:e,device:t,state:o});return void 0===n?"":`padding-top:${n};`}function No({v:e,device:t,state:o}){const n=Object(x.Wc)({v:e,device:t,state:o}),a=Object(x.Yc)({v:e,device:t,state:o}),r=Object(x.Zc)({v:e,device:t,state:o}),i=Object(x.Xc)({v:e,device:t,state:o});return void 0===n&&void 0===a&&void 0===r&&void 0===i?"":`filter:brightness(${n}%) hue-rotate(${a}deg) saturate(${r}%) contrast(${i}%);`}function Ao(){return Object(x.xc)()}function Do({v:e,device:t,state:o}){const n=Object(x.qc)({v:e,device:t,state:o});return void 0===n?"":`background-size:${n}%;`}function Vo({v:e,device:t,state:o}){const n=Object(x.sc)({v:e,device:t,state:o});return void 0===n?"":`font-size:${n}px;`}function $o({v:e,device:t,state:o}){const n=Object(x.uc)({v:e,device:t,state:o});return void 0===n?"":`width:${n}px;`}function Go({v:e,device:t,state:o}){const n=Object(x.tc)({v:e,device:t,state:o});return void 0===n?"":`height:${n}px;`}function Uo({v:e,device:t,state:o}){const n=Object(x.mc)({v:e,device:t,state:o});return void 0===n?"":`background-color:${n};`}function Ko({v:e,device:t,state:o}){const n=Object(x.pc)({v:e,device:t,state:o});return void 0===n?"":`background-image:${n};`}function qo({v:e,device:t,state:o}){const n=Object(x.nc)({v:e,device:t,state:o}),a=Object(x.oc)({v:e,device:t,state:o});return void 0===n&&void 0===a?"":`background-position:${n}% ${a}%;`}function Yo(){return"transition-property: box-shadow, border, border-radius;"}function Xo({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"controlsBg"})}function Zo({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"iconControlsColor"})}function Jo({v:e,device:t,state:o}){const n=Object(x.rc)({v:e,device:t,state:o});return void 0===n?"":`font-size:${n}px;`}function Qo({v:e,device:t}){return G({v:e,device:t,prefix:"subTitle"})}function en({v:e,device:t}){return U({v:e,device:t,prefix:"subTitle"})}function tn({v:e,device:t}){return K({v:e,device:t,prefix:"subTitle"})}function on({v:e,device:t}){return q({v:e,device:t,prefix:"subTitle"})}function nn({v:e,device:t}){return Y({v:e,device:t,prefix:"subTitle"})}function an({v:e,device:t,state:o}){const n=Object(x.Nd)({v:e,device:t,state:o});return void 0===n?"":`width:${n}px;`}function rn({v:e,device:t,state:o}){const n=Object(x.vc)({v:e,device:t,state:o});return void 0===n?"":`max-width:${n}px; flex: 1 1 ${n}px;`}function ln({v:e,device:t,state:o}){return ke({v:e,device:t,state:o,prefix:"item"})}function sn({v:e,device:t,state:o}){const n=Object(x.Nd)({v:e,device:t,state:o});return void 0===n?"":`width: calc(100% - ${n}px);`}function cn({v:e,device:t}){const o=Object(P.defaultValueValue)({v:e,key:"gridColumn",device:t}),n=o>1?100/o:100;return`max-width:${n}%; flex: 0 0 ${n}%;`}function dn({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"iconColor"})}function un({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"subTitleColor"})}function pn({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"iconBg"})}function bn({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"activeBg"})}function mn({v:e,device:t,state:o}){return ke({v:e,device:t,state:o,prefix:"activeItem"})}function hn({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"activeColor"})}function gn({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"activeSubTitleColor"})}function vn({v:e,device:t,state:o}){const n=Object(x.rb)({v:e,device:t,state:o});return void 0===n?"":`font-size:${n}px;`}function fn({v:e,device:t,state:o}){const n=Object(x.ud)({v:e,device:t,state:o,current:"paddingTop"}),a=Object(x.ud)({v:e,device:t,state:o,current:"paddingRight"});return void 0===n&&void 0===a?"":`padding:${n}px ${a}px;`}function yn({v:e,device:t}){const o=Object(x.Y)({v:e,device:t});return`min-height: ${"custom"===o?`${Object(x.W)({v:e,device:t})}${Object(x.X)({v:e,device:t})}`:"fullHeight"===o?"100vh":"auto"};`}function On({v:e,device:t,state:o}){const n="on"===Object(x.xd)({v:e,device:t,state:o})?"row-reverse":"row",a="on"===Object(x.yd)({v:e,device:t})?"wrap-reverse":"wrap",r="on"===Object(x.wd)({v:e,device:t})?"flex-end":"flex-start";return"desktop"!==t?`flex-direction:${n};flex-wrap:${a};justify-content:${r};`:""}var Sn=o(48),Cn=o(132),xn=o(214),jn=o(215);function Bn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Pn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Bn(Object(o),!0).forEach((function(t){Object(C.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Bn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function wn(e){return Object(x.fe)(e)?"position:relative;":"position:static;"}function Tn(){return"position:relative;"}function zn(e){const t=Cn.a((o="elementPosition",Object(P.defaultValueValue)(Pn({key:o},e))));var o;return void 0===t?"":`position:${t};`}function En(e){const t=t=>Object(P.defaultValueValue)(Pn({key:t},e)),o=t("elementPosition"),n=Sn.b(t("width")),a=B.d(t("widthSuffix"));return void 0!==n&&a&&"relative"!==o?`width:${n}${a};`:""}function kn(e){var t,o;const n=t=>Object(P.defaultValueValue)(Pn({key:t},e)),a=Cn.a(n("elementPosition"));if(!a||"relative"===a)return"";const r=xn.a(n("offsetYAlignment")),i=Sn.b(n("offsetY")),l=null!==(t=B.d(n("offsetYSuffix")))&&void 0!==t?t:"px",s=jn.a(n("offsetXAlignment")),c=Sn.b(n("offsetX")),d=null!==(o=B.d(n("offsetXSuffix")))&&void 0!==o?o:"px",u=r?{top:"unset",bottom:"unset",[r]:`${i}${l}`}:{},p=s?{right:"unset",left:"unset",[s]:`${c}${d}`}:{};return Object.entries(Pn(Pn({},u),p)).map(([e,t])=>t?`${e}: ${t};`:"").join("")}function Hn({v:e,device:t,state:o}){return`margin-right: ${Object(x.cd)({v:e,device:t,state:o})}px;`}function Fn({v:e,device:t,state:o}){const n=Object(x.bd)({v:e,device:t,state:o});return void 0===n?"":`font-size:${n}px;`}var _n=o(30);const Rn=e=>void 0!==e;function Mn({v:e,device:t,state:o}){const n=Object(x.Mb)({v:e,device:t,state:o}),a=Object(x.Lb)({v:e,device:t,state:o});let r=`calc(${a/100} * var(--brz-section-container-max-width, 1170px));`;return t!==_n.c&&t!==_n.b||(r=a+"%"),"boxed"===n?"max-width: "+r:"max-width: 100%;"}function Ln({v:e}){const t="on"===Object(x.Qb)({v:e})?"height":"min-height",o="on"===Object(x.Nb)({v:e})?"100vh":"100%";return Rn(o)?`${t}: ${o};`:""}function Wn({v:e,device:t,state:o,prefix:n="sliderDotsColor"}){const a=Object(x.B)({v:e,device:t,state:o,prefix:n});return Rn(a)?`color: ${a};`:""}function In({v:e,device:t,state:o,prefix:n="sliderArrowsColor"}){const a=Object(x.B)({v:e,device:t,state:o,prefix:n});return Rn(a)?`color: ${a};`:""}function Nn(){return"transition-property: filter, background, border, border-radius;"}function An({v:e,device:t,state:o}){let n,a;if("grouped"===Object(x.nd)({v:e,device:t,state:o})?(n=Object(x.ld)({v:e,device:t,state:o}),a=Object(x.md)({v:e,device:t,state:o})):(n=Object(x.od)({v:e,device:t,state:o,current:"marginTop"}),a=Object(x.pd)({v:e,device:t,state:o,current:"marginTopSuffix"})),!Rn(n))return"";if(n<0){let t=42-n;if("%"===a){const o=document.querySelector(`[data-uid="${e._id}"]`);if(o){t=42+o.getBoundingClientRect().width/100*-n}}return`grid-template-rows: minmax(calc(100% - 42px), ${t}px) 42px;`}return"grid-template-rows: minmax(calc(100% - 42px), 42px) 42px;"}function Dn({v:e,device:t}){const o=Object(x.Nb)({v:e,device:t});return`min-height: ${"custom"===o?`${Object(x.Ob)({v:e,device:t})}${Object(x.Pb)({v:e,device:t})}`:"on"===o?"100vh":"auto"};`}function Vn({v:e,device:t,state:o}){{const{paddingLeft:n,paddingLeftSuffix:a,paddingRight:r,paddingRightSuffix:i}=jo({v:e,device:t,state:o}),l=`${n}${a}`,s=`${r}${i}`;return`margin-left: -${l}; margin-right: -${s}; width: calc(100% + ${s} + ${l});`}}function $n(){return"max-width: 1170px; height: 100%;"}function Gn({v:e,device:t,state:o}){return`font-size: ${Object(x.Vd)({v:e,device:t,state:o})/2}px;`}function Un({v:e,device:t,state:o,prefix:n="activeColor"}){return`color: ${Object(x.B)({v:e,device:t,state:o,prefix:n})};`}function Kn({v:e,device:t,state:o,prefix:n="arrowsColor"}){return`color: ${Object(x.B)({v:e,device:t,state:o,prefix:n})};`}var qn=o(18);function Yn({v:e,device:t,state:o}){const n=Object(x.Td)({v:e,device:t,state:o});return void 0===n?"":`flex-basis:${n}%;`}function Xn({v:e,device:t,state:o}){const n=Object(x.Td)({v:e,device:t,state:o,prefix:"submit"});return void 0===n?"":`max-width:${n}%;flex-basis:${n}%;`}function Zn({v:e,device:t,state:o}){const n=(a="type",Object(P.defaultValueValue)({v:e,key:a,device:t,state:o}));var a;const r=Object(x.Pd)({v:e,device:t,state:o});return void 0===r||void 0===n?"":"Paragraph"===n?`height:${r}px!important;`:"height:auto;"}function Jn({v:e,device:t,state:o}){const n=Object(x.c)({v:e,device:t,state:o,prefix:"label"});return void 0===n?"":`text-align:${n};`}function Qn({v:e,device:t,state:o}){const{paddingTop:n,paddingRight:a,paddingBottom:r,paddingLeft:i}=jo({v:e,device:t,state:o});return void 0===n||void 0===a||void 0===r||void 0===i||c.g?"":`margin:-${n}px -${a/2}px\n -${r}px -${i/2}px;`}function ea({v:e,device:t,state:o}){const{paddingTop:n,paddingRight:a,paddingBottom:r,paddingLeft:i,paddingTopSuffix:l,paddingRightSuffix:s,paddingBottomSuffix:d,paddingLeftSuffix:u}=jo({v:e,device:t,state:o});return void 0===n||void 0===a||void 0===r||void 0===i?"":c.g?`padding:0 0 ${r}${d} 0;`:`padding:${n}${l}\n ${a/2}${s}\n ${r}${d}\n ${i/2}${u};`}function ta({v:e,device:t,state:o}){const n=Object(x.Yd)({v:e,device:t}),a=Object(x.Vd)({v:e,device:t}),{paddingTop:r,paddingBottom:i}=jo({v:e,device:t,state:o}),l=function({v:e,device:t,state:o,prefix:n=""}){let a=0,r=0;if("grouped"===Object(x.t)({v:e,device:t,state:o,prefix:n})){const i=Object(x.s)({v:e,device:t,state:o,prefix:n});a=i,r=i}else a=Object(x.u)({v:e,device:t,state:o,prefix:n,current:"top"}),r=Object(x.u)({v:e,device:t,state:o,prefix:n,current:"bottom"});return a+r}({v:e,device:t,state:o});return`min-height:${Math.round(a*n*10)/10+r+i+l}px;`}function oa({v:e,device:t}){return G({v:e,device:t,prefix:"label"})}function na({v:e,device:t}){return U({v:e,device:t,prefix:"label"})}function aa({v:e,device:t}){return K({v:e,device:t,prefix:"label"})}function ra({v:e,device:t}){return q({v:e,device:t,prefix:"label"})}function ia({v:e,device:t}){return Y({v:e,device:t,prefix:"label"})}function la({v:e,device:t,state:o}){return yo({v:e,device:t,state:o,prefix:"label"})}function sa({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"checkboxColor"})}function ca({v:e,device:t}){return G({v:e,device:t,prefix:"checkbox"})}function da({v:e,device:t}){return U({v:e,device:t,prefix:"checkbox"})}function ua({v:e,device:t}){return K({v:e,device:t,prefix:"checkbox"})}function pa({v:e,device:t}){return q({v:e,device:t,prefix:"checkbox"})}function ba({v:e,device:t}){return Y({v:e,device:t,prefix:"checkbox"})}function ma({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"selectColor"})}function ha({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"selectBg"})}function ga({v:e,device:t,state:o}){const n=Object(x.s)({v:e,device:t,state:o});return void 0===n||0===n?"border: 2px solid #f00":"border-color: #f00"}function va({v:e,device:t,state:o}){const n=Object(x.i)({v:e,device:t,state:o,prefix:"selectBg"});return void 0===n?"":`background-color:${Object(qn.c)(n,.2)};`}function fa({v:e,device:t,state:o}){const n=Object(x.u)({v:e,device:t,state:o,prefix:"select",current:"top"}),a=Object(x.r)({v:e,device:t,state:o,prefix:"select"}),r=Object(x.n)({v:e,device:t,state:o,prefix:"select"});return void 0===n?"":`border-bottom:${n}px ${a} ${r};`}function ya({v:e,device:t,state:o}){return Fe({v:e,device:t,state:o,prefix:"select"})}function Oa({v:e,device:t,state:o}){return ht({v:e,device:t,state:o,prefix:"select"})}function Sa({v:e,device:t,state:o}){const n=Object(x.eb)({v:e,device:t,state:o});return void 0===n?"":`flex-basis:${100/n}%;`}function Ca({v:e}){return`content: ""; padding-top: ${e.submitHeight}%;`}function xa({v:e,device:t,state:o}){const{paddingTop:n,paddingRight:a,paddingBottom:r,paddingLeft:i}=jo({v:e,device:t,state:o,prefix:"field"});return void 0===n||void 0===a||void 0===r||void 0===i?"":`margin:-${n}px -${a/2}px\n -${r}px -${i/2}px;`}function ja({v:e,device:t,state:o}){const{paddingTop:n,paddingRight:a,paddingBottom:r,paddingLeft:i,paddingTopSuffix:l,paddingRightSuffix:s,paddingBottomSuffix:c,paddingLeftSuffix:d}=jo({v:e,device:t,state:o,prefix:"field"});return void 0===n||void 0===a||void 0===r||void 0===i?"":`padding:${n}${l}\n ${a/2}${s}\n ${r}${c}\n ${i/2}${d};`}function Ba({v:e,device:t}){return G({v:e,device:t,prefix:"lost"})}function Pa({v:e,device:t}){return U({v:e,device:t,prefix:"lost"})}function wa({v:e,device:t}){return K({v:e,device:t,prefix:"lost"})}function Ta({v:e,device:t}){return q({v:e,device:t,prefix:"lost"})}function za({v:e,device:t}){return Y({v:e,device:t,prefix:"lost"})}function Ea({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"lostColor"})}function ka({v:e,device:t,state:o}){const n=Object(x.c)({v:e,device:t,state:o,prefix:"lost"});return void 0===n?"":`text-align:${n};`}function Ha({v:e,device:t,state:o}){const n=Object(x.c)({v:e,device:t,state:o,prefix:"autorized"});return void 0===n?"":`text-align:${n};`}function Fa({v:e,device:t}){return G({v:e,device:t,prefix:"text"})}function _a({v:e,device:t}){return U({v:e,device:t,prefix:"text"})}function Ra({v:e,device:t}){return K({v:e,device:t,prefix:"text"})}function Ma({v:e,device:t}){return q({v:e,device:t,prefix:"text"})}function La({v:e,device:t}){return Y({v:e,device:t,prefix:"text"})}function Wa({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"textColor"})}function Ia({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"linkColor"})}function Na({v:e,device:t,state:o,prefix:n="iconsColor"}){return`color: ${Object(x.B)({v:e,device:t,state:o,prefix:n})};`}function Aa({v:e,device:t,state:o,prefix:n="textColor"}){return`color: ${Object(x.B)({v:e,device:t,state:o,prefix:n})};`}function Da({v:e,device:t,state:o}){return"inline"===Object(x.Vc)({v:e,device:t})?`margin-right: ${Object(x.Sd)({v:e,device:t,state:o})}px;`:`margin-top: ${Object(x.Sd)({v:e,device:t,state:o})}px;`}function Va({v:e,device:t}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:"titleTypography"})};`:""}function $a({v:e,device:t}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:"titleTypography"})}px;`}function Ga({v:e,device:t}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:"titleTypography"})};`}function Ua({v:e,device:t}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:"titleTypography"})};`}function Ka({v:e,device:t}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:"titleTypography"})}px;`}function qa({v:e,device:t}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:"postTypography"})};`:""}function Ya({v:e,device:t}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:"postTypography"})}px;`}function Xa({v:e,device:t}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:"postTypography"})};`}function Za({v:e,device:t}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:"postTypography"})};`}function Ja({v:e,device:t}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:"postTypography"})}px;`}function Qa({v:e,device:t,state:o}){const n=Object(x.B)({v:e,device:t,prefix:"titleColor",state:o});return void 0===n?"":`color:${n};`}function er({v:e,device:t,state:o}){const n=Object(x.B)({v:e,device:t,prefix:"postColor",state:o});return void 0===n?"":`color:${n};`}function tr({v:e,device:t,state:o}){const n=Object(x.Hb)({v:e,device:t,state:o}),a=Object(x.Fb)({v:e,device:t,state:o});return void 0===n?"":"off"===a?"margin-bottom: 0;":`margin-bottom:${n}px`}function or({v:e,device:t,state:o}){const n=Object(x.Pd)({v:e,device:t,state:o});return void 0===n?"":`height:${n}%;`}function nr({v:e,device:t,state:o}){const n=Object(x.Gb)({v:e,device:t,state:o});return void 0===n||"off"!==n?"":"content: none;"}function ar({v:e,device:t,state:o,prefix:n="ratingColor"}){return`color: ${Object(x.B)({v:e,device:t,state:o,prefix:n})};`}function rr({v:e,device:t,state:o,prefix:n="ratingBackgroundColor"}){return`color: ${Object(x.B)({v:e,device:t,state:o,prefix:n})};`}function ir({v:e,device:t,state:o,prefix:n="bgColor"}){return`background-color: ${Object(x.B)({v:e,device:t,state:o,prefix:n})};`}function lr({v:e,device:t}){return`border-radius: ${o="borderRadius",Object(P.defaultValueValue)({v:e,key:o,device:t})}px;`;var o}function sr(){return"transition-property: color;"}function cr({v:e,device:t}){var o;return"on"===(o="label",Object(P.defaultValueValue)({key:o,v:e,device:t}))?"display: flex; flex-direction: row;":"display: flex; flex-direction: row-reverse;"}function dr({v:e,device:t}){const o=o=>Object(P.defaultValueValue)({key:o,v:e,device:t}),n=o("spacing"),a=o("label"),r=o("ratingStyle");switch(a){case"on":return`margin-right: ${n}px;`;case"on-right":return"style-2"===r?`margin-right: ${n}px; margin-left: 0;`:`margin-left: ${n}px; margin-right: 0;`;case"off":return"margin: 0;"}}function ur({v:e,device:t,prefix:o}){const n=Object(x.s)({v:e,device:t,prefix:o});return Object(x.dc)({v:e,device:t,prefix:o})+2*Object(x.ec)({v:e,device:t,prefix:o})+2*n}function pr({v:e,device:t,state:o,prefix:n}){return ur({v:e,device:t,state:o,prefix:n})/2}function br({v:e,device:t,prefix:o}){return"on"===Object(x.cc)({v:e,device:t,prefix:o})}function mr({v:e,device:t,prefix:o}){const n=Object(x.Vd)({v:e,device:t,prefix:"typography"}),a=Object(x.Yd)({v:e,device:t,prefix:"typography"});return br({v:e,device:t,prefix:o})?n*a:0}function hr({v:e,device:t,prefix:o}){return br({v:e,device:t,prefix:o})?116:0}function gr({v:e,device:t,prefix:o}){return`font-size: ${Object(x.dc)({v:e,device:t,prefix:o})}px;`}function vr({v:e,device:t,prefix:o}){return`padding: ${Object(x.ec)({v:e,device:t,prefix:o})}px;`}function fr({v:e,prefix:t}){return`width: ${ur({v:e,prefix:t})}px;`}function yr({v:e,prefix:t}){return`height: ${ur({v:e,prefix:t})}px;`}function Or({v:e,prefix:t}){return`width: ${ur({v:e,prefix:t})+60}px;`}function Sr({v:e}){return br({v:e})?"display: block;":"display: none;"}function Cr({v:e,device:t,state:o}){const n=Object(x.n)({v:e,device:t,prefix:"line"}),a=Object(x.fc)({v:e,device:t,state:o}),r=o=>Object(P.defaultValueValue)({v:e,key:o,device:t}),i=r("lineBorderStyle"),l=r("lineBorderWidth");return"off"===a?`border-top: ${n} ${l}px ${i};`:`border-left: ${n} ${l}px ${i};border-top:0;`}function xr({v:e,device:t,state:o}){const n=Object(x.hc)({v:e,device:t,state:o}),a=Object(x.fc)({v:e,device:t,state:o}),r=Object(x.s)({v:e,prefix:"line"}),i=pr({v:e}),l=mr({v:e,device:t}),s=pr({v:e}),c=Object(x.s)({v:e,device:t}),d=Object(x.dc)({v:e,device:t})+2*Object(x.ec)({v:e,device:t})+2*c+20,u=i+l-r/2;if("off"===a)switch(n){case"style-1":return`top: ${u}px; bottom:auto; left: ${d}px;`;case"style-2":return`bottom: ${u}px; top:auto; left: ${d}px;`;case"style-3":return`top: ${u}px; bottom:auto; left: ${d}px;`}else if("on"===a)switch(n){case"style-1":case"style-2":case"style-3":return`top: calc( ${s}px + 50%);`}}function jr({v:e,device:t,prefix:o}){const n=Object(x.gc)({v:e,device:t,prefix:o}),a=Object(x.fc)({v:e,device:t}),r=Object(x.hc)({v:e,device:t});if("off"===a)switch(r){case"style-1":return`margin: ${n}px 10px 0 10px;`;case"style-2":return`margin: 0 10px ${n}px 10px;`;case"style-3":return`margin: ${n}px 10px 0 10px;`}else if("on"===a)switch(r){case"style-1":return`margin: 0 0 0 ${n}px;`;case"style-2":return`margin: 0 ${n}px 0 0;`;case"style-3":return`margin: 0 0 0 ${n}px;`}}function Br({v:e,device:t,prefix:o}){return`border: ${Object(x.s)({v:e,device:t,prefix:o})}px solid ${Object(x.n)({v:e,device:t,prefix:o})};`}function Pr({v:e,device:t,state:o,prefix:n}){return`border-radius: ${Object(x.o)({v:e,device:t,state:o,prefix:n})}px;`}function wr({v:e,device:t,state:o,prefix:n}){const a=pr({v:e,prefix:n}),r=hr({v:e})+a,i=Object(x.fc)({v:e,device:t,state:o}),l=Object(x.hc)({v:e,device:t,state:o});if("on"===i)switch(l){case"style-1":return`left: calc(50% - ${r}px); right: auto;`;case"style-2":return`right: calc(50% - ${r}px); left: auto;`}else if("off"===i)return"left: auto; right: auto;"}function Tr({v:e,device:t,state:o,prefix:n}){const a=pr({v:e,prefix:n}),r=ur({v:e,prefix:n}),i=Object(x.s)({v:e,device:t,prefix:"line"}),l=Object(x.fc)({v:e,device:t,state:o});return"on"===l?`height: calc(50% - ${a}px); width: ${i}px;`:"off"===l?`width: calc(100% - ${r}px); height: ${i}px;`:void 0}function zr({v:e,device:t,state:o,prefix:n}){const a=pr({v:e,prefix:n}),r=ur({v:e,prefix:n}),i=Object(x.s)({v:e,device:t,prefix:"line"}),l=Object(x.fc)({v:e,device:t,state:o}),s=(c="lineBorderStyle",Object(P.defaultValueValue)({v:e,key:c,device:t}));var c;return"on"===l?`height: calc(${"dashed"===s||"dotted"===s?100-i:100}px + (50% - ${a}px)); width: ${i}px;`:"off"===l?`width: calc(100% - ${r}px); height: ${i}px;`:void 0}function Er({v:e,device:t,state:o,prefix:n}){const a=Object(x.s)({v:e,device:t,prefix:"line"}),r=pr({v:e,prefix:n}),i=hr({v:e})+r-a/2,l=Object(x.fc)({v:e,device:t,state:o}),s=Object(x.hc)({v:e,device:t,state:o});if("on"===l)switch(s){case"style-1":return`left: ${i}px; bottom: calc( ${r}px + 50%);`;case"style-2":return`right: ${i}px; bottom: calc( ${r}px + 50%);`;case"style-3":return`left: ${i}px; bottom: calc( ${r}px + 50%);`}}function kr({v:e,device:t,state:o}){const n=Object(x.fc)({v:e,device:t,state:o});return"on"===n?"display: block;":"off"===n?"display: none;":void 0}function Hr({v:e,device:t,state:o,prefix:n}){const a=pr({v:e,prefix:n});if("on"===Object(x.fc)({v:e,device:t,state:o}))return`top: calc( ${a}px + 50%);`}function Fr({v:e,device:t,state:o,prefix:n}){const a=pr({v:e,prefix:n}),r=Object(x.fc)({v:e,device:t,state:o}),i=Object(x.hc)({v:e,device:t,state:o});if("on"===r&&("style-1"===i||"style-2"===i||"style-3"===i))return`bottom: calc( ${a}px + 50%);`}function _r({v:e,device:t,prefix:o}){const n=Object(x.ic)({v:e,device:t,prefix:o});if("off"===Object(x.fc)({v:e,device:t,prefix:o})){const e=100/n;return`width: ${e}%; min-width: ${e}%;`}return"width: auto; min-width: auto;"}function Rr({v:e,device:t,prefix:o}){const n=100/Object(x.ic)({v:e,device:t,prefix:o});return`width: calc(${n}% - 30px); min-width: calc(${n}% - 30px);`}function Mr({v:e,device:t,state:o,prefix:n}){const a=pr({v:e,prefix:n}),r=hr({v:e})+a,i=Object(x.fc)({v:e,device:t,state:o}),l=Object(x.hc)({v:e,device:t,state:o});if("on"===i&&"style-2"===l)return`right: calc(50% - ${r}px);`}function Lr({v:e,device:t,state:o,prefix:n}){const a=Object(x.s)({v:e,device:t,prefix:"line"}),r=pr({v:e,prefix:n}),i=hr({v:e})+r-a/2,l=Object(x.fc)({v:e,device:t,state:o}),s=Object(x.hc)({v:e,device:t,state:o});if("on"===l&&"style-2"===s)return`right: ${i}px;`}function Wr({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t}),a=Object(x.s)({v:e,prefix:"line"}),r=pr({v:e}),i=mr({v:e,device:t}),l=Object(x.s)({v:e,device:t}),s=Object(x.dc)({v:e,device:t}),c=Object(x.ec)({v:e,device:t}),d=pr({v:e}),u=hr({v:e})+d-a/2,p=s+2*c+2*l+20,b=r+i-a/2;if("off"===o)switch(n){case"style-1":return`bottom:auto; right: auto; left: ${p}px;`;case"style-2":return`bottom: ${b}px; top:auto; right: auto; left: ${p}px;`;case"style-3":return`bottom: ${r}px; top: unset; right: auto; left: ${p}px;`}else if("on"===o)switch(n){case"style-1":return`left: ${u}px;`;case"style-2":return`right: ${u}px; left: auto;`;case"style-3":return`left: ${u}px;`}}function Ir({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t}),a=Object(x.s)({v:e,prefix:"line"}),r=pr({v:e}),i=mr({v:e,device:t}),l=pr({v:e}),s=Object(x.s)({v:e,device:t}),c=Object(x.dc)({v:e,device:t}),d=Object(x.ec)({v:e,device:t}),u=hr({v:e})+l-a/2,p=c+2*d+2*s+20,b=r+i-a/2;if("off"===o)switch(n){case"style-1":return`top: ${b}px; bottom:auto; right: auto; left: ${p}px;`;case"style-2":return`bottom: ${b}px; top:auto; right: auto; left: ${p}px;`;case"style-3":return`top: ${r}px; bottom: unset; right: auto; left: ${p}px;`}else if("on"===o)switch(n){case"style-1":return`top: calc( ${l}px + 50%); left: ${u}px;`;case"style-2":return`top: calc( ${l}px + 50%); right: ${u}px; left: auto;`;case"style-3":return`top: calc( ${l}px + 50%); left: ${u}px;`}}function Nr({v:e,device:t,prefix:o}){const n=Object(x.gc)({v:e,device:t,prefix:o}),a=Object(x.fc)({v:e,device:t}),r=Object(x.hc)({v:e,device:t});if("off"===a){switch(r){case"style-1":return`margin: ${n}px 10px 0 10px;`;case"style-2":case"style-3":return`margin: 0 10px ${n}px 10px;`}return`margin: 0 10px ${n}px 10px;`}if("on"===a)switch(r){case"style-1":return`margin: 0 0 0 ${n}px;`;case"style-2":case"style-3":return`margin: 0 ${n}px 0 0;`}}function Ar({v:e,device:t,prefix:o}){const n=Object(x.gc)({v:e,device:t,prefix:o}),a=Object(x.fc)({v:e,device:t}),r=Object(x.hc)({v:e,device:t});if("off"===a&&"style-3"===r)return`margin: ${n}px 10px 0 10px;`}function Dr({v:e,device:t,prefix:o}){const n=pr({v:e,prefix:o}),a=hr({v:e})+n,r=Object(x.fc)({v:e,device:t}),i=Object(x.hc)({v:e,device:t});if("on"===r)switch(i){case"style-1":return`left: calc(50% - ${a}px);`;case"style-2":case"style-3":return`right: calc(50% - ${a}px); left: auto;`}else if("off"===r)switch(i){case"style-1":case"style-2":case"style-3":return"right: auto; left: auto;"}}function Vr({v:e,device:t,prefix:o}){const n=pr({v:e,prefix:o}),a=hr({v:e})+n,r=Object(x.fc)({v:e,device:t}),i=Object(x.hc)({v:e,device:t});if("on"===r)switch(i){case"style-1":return`left: calc(50% - ${a}px);`;case"style-2":return"left:auto;";case"style-3":return`left: calc(50% - ${a}px);`}else if("off"===r)switch(i){case"style-1":return"left: auto;";case"style-2":return"left:auto;";case"style-3":return"left: auto;"}}function $r({v:e,device:t,prefix:o}){const n=Object(x.s)({v:e,device:t,prefix:"line"}),a=pr({v:e,prefix:o}),r=hr({v:e})+a-n/2,i=Object(x.fc)({v:e,device:t}),l=Object(x.hc)({v:e,device:t});if("off"===i)switch(l){case"style-1":case"style-2":case"style-3":return""}else if("on"===i)switch(l){case"style-1":return`right: auto; left: ${r}px;`;case"style-2":return"";case"style-3":return`right: ${r}px; left: unset;`}}function Gr({v:e,device:t,prefix:o}){const n=Object(x.gc)({v:e,device:t,prefix:o}),a=ur({v:e,prefix:o}),r=hr({v:e}),i=r+a+n-7,l=Object(x.fc)({v:e,device:t}),s=Object(x.hc)({v:e,device:t}),c=pr({v:e,device:t}),d=r+a+n-7;if("off"===l)switch(s){case"style-1":return`bottom: auto; top: 0; left: ${c}px;`;case"style-2":case"style-3":return`bottom: -15px; top: unset;left: ${c}px;`}else if("on"===l)switch(s){case"style-1":return`bottom: auto; left: ${d}px; top: 50%;`;case"style-2":case"style-3":return`right: ${i}px; left: unset; top: 50%;`}}function Ur({v:e,device:t,prefix:o}){const n=Object(x.gc)({v:e,device:t,prefix:o}),a=Object(x.fc)({v:e,device:t}),r=Object(x.hc)({v:e,device:t});if("on"===a&&"style-3"===r)return`margin: 0 ${n}px 0 0;`}function Kr({v:e,device:t,state:o}){const n=Object(x.kc)({v:e,device:t,state:o}),a=Object(x.lc)({v:e,device:t,state:o});return void 0===n?"":`min-width:${n}${a}; width:${n}${a};`}function qr({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t});if("off"===o)switch(n){case"style-1":return"border-right: transparent ; border-bottom: transparent ; border-left: inherit ; border-top: inherit ;";case"style-2":return"border-left: transparent ; border-top: transparent ; border-right: inherit ; border-bottom: inherit ;"}else if("on"===o)switch(n){case"style-1":return"border-top: transparent ; border-right: transparent ; border-left: inherit ; border-bottom: inherit ;";case"style-2":return"border-left: transparent ; border-bottom: transparent ; border-right: inherit ; border-top: inherit ;"}}function Yr({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t});return"off"===o&&"style-3"===n?"border-left: transparent ; border-top: transparent ; border-right: inherit ; border-bottom: inherit;":"on"===o&&"style-3"===n?"border-left: transparent; border-bottom: transparent; border-right: inherit; border-top: inherit;":void 0}function Xr({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t});if("on"===o&&"style-3"===n)return"border-right: transparent; border-top: transparent; border-left: inherit; border-bottom: inherit;"}function Zr({v:e,device:t}){const o=Object(x.fc)({v:e,device:t});return"off"===o?"flex: 1 1 auto; flex-direction: row; width: 100%; display: flex; overflow-x: auto; overflow-y: hidden; padding-bottom: 30px;":"on"===o?"display: flex; flex-direction: column; max-width: 100%; overflow-x: unset; overflow-y: unset; padding-bottom: unset; align-items: normal;":void 0}function Jr({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t});if("off"===o)switch(n){case"style-1":return"display: flex; align-items: normal; flex-direction: column;";case"style-2":return"display: flex; align-items: normal; flex-direction: column-reverse;";case"style-3":return"display: flex; align-items: normal; flex-direction: column;"}else if("on"===o)switch(n){case"style-1":return"display: flex; align-items: center; flex-direction: row;";case"style-2":return"display: flex; align-items: center; flex-direction: row-reverse;";case"style-3":return"display: flex; align-items: center; flex-direction: row;"}}function Qr({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t}),a=Object(x.gc)({v:e,device:t}),r=hr({v:e,device:t}),i=ur({v:e,device:t}),l=pr({v:e,device:t}),s=r+i+a-7;if("off"===o)switch(n){case"style-1":return`bottom: auto; top: 0; left: ${l}px;`;case"style-2":return`bottom: -15px; top: unset;left: ${l}px;`;case"style-3":return`bottom: -15px; top: unset; left: ${l}px;`}else if("on"===o)switch(n){case"style-1":return`bottom: auto; left: ${s}px; top: 50%;`;case"style-2":return`bottom: -15px; right: ${s}px; left: unset; top: 50%;`;case"style-3":return`bottom: -15px; left: ${s}px; top: 50%;`}}function ei({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t});return"off"===o&&"style-3"===n?"bottom: unset;":"off"===o&&"style-2"===n?"bottom: -15px;":void 0}function ti({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t});return"off"===o&&"style-3"===n?"position: absolute; top: 0; transform: translateY(-100%);":"on"===o?"position: relative; left: -10px; transform: none;":"position: relative; transform: none;"}function oi({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t});if("off"===o)switch(n){case"style-1":case"style-2":return"position: relative; transform: none;";case"style-3":return"position: absolute; bottom: 0; top: auto; transform: translateY(100%);"}else if("on"===o)switch(n){case"style-1":case"style-2":case"style-3":return"position: relative; left: -10px; transform: none;"}}function ni({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t});if("off"===o)switch(n){case"style-1":return"flex-direction: column;";case"style-2":case"style-3":return"flex-direction: column-reverse;"}else if("on"===o)switch(n){case"style-1":return"flex-direction: row;";case"style-2":case"style-3":return"flex-direction: row-reverse;"}}function ai({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t});if("on"===o)switch(n){case"style-1":return"flex-direction: row;";case"style-2":return"flex-direction: row-reverse;";case"style-3":return"flex-direction: row;"}else if("off"===o)switch(n){case"style-1":return"flex-direction: column;";case"style-2":return"flex-direction: column-reverse;";case"style-3":return"flex-direction: column;"}}function ri({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t});if("off"===o&&"style-3"===n)return"align-items: baseline;"}function ii({v:e,device:t}){const o=Object(x.fc)({v:e,device:t});return"on"===o?" margin-left: 0; line-height: 0; z-index: 1;":"off"===o?"margin-left: 20px":void 0}function li({v:e,device:t}){const o=Object(x.fc)({v:e,device:t});return"on"===o?"position: static;":"off"===o?"position: relative;":void 0}function si({v:e,device:t}){const o=Object(x.fc)({v:e,device:t});return"on"===o?"margin-bottom: 100px;":"off"===o?"margin-bottom: 0;":void 0}function ci({v:e,device:t}){if("on"===Object(x.fc)({v:e,device:t}))return"margin-bottom: 0;"}function di({v:e,device:t}){if("on"===Object(x.fc)({v:e,device:t}))return"display: none;"}function ui({v:e,device:t}){const o=Object(x.fc)({v:e,device:t}),n=Object(x.hc)({v:e,device:t});if("on"===o&&"style-3"===n)return"display: none;"}function pi({v:e,device:t,state:o}){return`width: ${2*Object(x.Rb)({v:e,device:t,state:o})}px;`}function bi({v:e,device:t,state:o}){return`height: ${Object(x.Rb)({v:e,device:t,state:o})}px;`}function mi({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"activeBg"})}function hi({v:e,device:t,state:o}){return`margin-bottom:${Object(x.Sb)({v:e,device:t,state:o})}px;`}function gi({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"activeColor"})}function vi({v:e,device:t,state:o}){return`width: ${Object(x.Tb)({v:e,device:t,state:o})}px`}function fi({v:e,device:t,state:o}){const n=Object(x.B)({v:e,device:t,prefix:"h1Color",state:o});return void 0===n?"":`color:${n};`}function yi({v:e,device:t,state:o}){const n=Object(x.B)({v:e,device:t,prefix:"h2Color",state:o});return void 0===n?"":`color:${n};`}function Oi({v:e,device:t,state:o}){const n=Object(x.B)({v:e,device:t,prefix:"h3Color",state:o});return void 0===n?"":`color:${n};`}function Si({v:e,device:t,state:o}){const n=Object(x.B)({v:e,device:t,prefix:"h4Color",state:o});return void 0===n?"":`color:${n};`}function Ci({v:e,device:t,state:o}){const n=Object(x.B)({v:e,device:t,prefix:"h5Color",state:o});return void 0===n?"":`color:${n};`}function xi({v:e,device:t,state:o}){const n=Object(x.B)({v:e,device:t,prefix:"h6Color",state:o});return void 0===n?"":`color:${n};`}function ji({v:e,device:t,state:o}){const n=Object(x.B)({v:e,device:t,prefix:"paragraphColor",state:o});return void 0===n?"":`color:${n};`}function Bi({v:e,device:t}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:"paragraph"})};`:""}function Pi({v:e,device:t}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:"paragraph"})}px;`}function wi({v:e,device:t}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:"paragraph"})};`}function Ti({v:e,device:t}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:"paragraph"})};`}function zi({v:e,device:t}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:"paragraph"})}px;`}function Ei({v:e,device:t}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:"h1"})};`:""}function ki({v:e,device:t}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:"h1"})}px;`}function Hi({v:e,device:t}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:"h1"})};`}function Fi({v:e,device:t}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:"h1"})};`}function _i({v:e,device:t}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:"h1"})}px;`}function Ri({v:e,device:t}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:"h2"})};`:""}function Mi({v:e,device:t}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:"h2"})}px;`}function Li({v:e,device:t}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:"h2"})};`}function Wi({v:e,device:t}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:"h2"})};`}function Ii({v:e,device:t}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:"h2"})}px;`}function Ni({v:e,device:t}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:"h3"})};`:""}function Ai({v:e,device:t}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:"h3"})}px;`}function Di({v:e,device:t}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:"h3"})};`}function Vi({v:e,device:t}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:"h3"})};`}function $i({v:e,device:t}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:"h3"})}px;`}function Gi({v:e,device:t}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:"h4"})};`:""}function Ui({v:e,device:t}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:"h4"})}px;`}function Ki({v:e,device:t}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:"h4"})};`}function qi({v:e,device:t}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:"h4"})};`}function Yi({v:e,device:t}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:"h4"})}px;`}function Xi({v:e,device:t}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:"h5"})};`:""}function Zi({v:e,device:t}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:"h5"})}px;`}function Ji({v:e,device:t}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:"h5"})};`}function Qi({v:e,device:t}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:"h5"})};`}function el({v:e,device:t}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:"h5"})}px;`}function tl({v:e,device:t}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:"h6"})};`:""}function ol({v:e,device:t}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:"h6"})}px;`}function nl({v:e,device:t}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:"h6"})};`}function al({v:e,device:t}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:"h6"})};`}function rl({v:e,device:t}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:"h6"})}px;`}function il(){return"font-weight: inherit;"}function ll({v:e,device:t,state:o,prefix:n="saleColor"}){const a=Object(x.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function sl({v:e,device:t,prefix:o="sale"}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:o})};`:""}function cl({v:e,device:t,prefix:o="sale"}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:o})}px;`}function dl({v:e,device:t,prefix:o="sale"}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:o})};`}function ul({v:e,device:t,prefix:o="sale"}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:o})};`}function pl({v:e,device:t,prefix:o="sale"}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:o})}px;`}function bl({v:e,device:t,state:o}){const n="on"===Object(x.Pc)({v:e,device:t,state:o})?"column":"row";return void 0===n?"":`flex-direction: ${n};`}function ml({v:e,device:t,state:o}){const n=Object(x.Pc)({v:e,device:t,state:o}),a=Object(x.Qc)({v:e,device:t,state:o})/2;return void 0===a?"":"on"===n?`margin: 0 0 ${a}px 0;`:`margin: 0 ${a}px 0 0;`}function hl({v:e,device:t,state:o}){const n=Object(x.Pc)({v:e,device:t,state:o}),a=Object(x.Qc)({v:e,device:t,state:o})/2;return void 0===a?"":"on"===n?`margin: ${a}px 0 0 0;`:`margin: 0 0 0 ${a}px;`}function gl({v:e,device:t,prefix:o="attributes"}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:o})};`:""}function vl({v:e,device:t,prefix:o="attributes"}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:o})}px;`}function fl({v:e,device:t,prefix:o="attributes"}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:o})};`}function yl({v:e,device:t,prefix:o="attributes"}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:o})};`}function Ol({v:e,device:t,prefix:o="attributes"}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:o})}px;`}function Sl({v:e,device:t,state:o}){const n=Object(x.zc)({v:e,device:t,state:o}),a=Object(x.yc)({v:e,device:t,state:o});return null==n||null==a?"":`padding: ${a}px ${n}px;`}function Cl({v:e,device:t,prefix:o="attributeColor",state:n}){const a=Object(x.B)({v:e,device:t,prefix:o,state:n});return void 0===a?"":`color:${a};`}function xl({v:e,device:t,state:o}){const n=Object(x.u)({v:e,device:t,state:o,current:"top"}),a=Object(x.r)({v:e,device:t,state:o}),r=Object(x.n)({v:e,device:t,state:o}),i=Object(x.Ac)({v:e,device:t,state:o}),l=(e,t)=>"table"===e?t:0;return void 0===n?"":`border-top: ${l(i,n)}px; border-right: ${l(i,n)}px; border-bottom: ${n}px; border-left: ${l(i,n)}px; border-style: ${a}; border-color: ${r};`}function jl({v:e,device:t,state:o}){return"table"===Object(x.Ac)({v:e,device:t,state:o})?"":"border-bottom-width: 0;"}function Bl({v:e,device:t,state:o}){const n=Object(P.defaultValueValue)({v:e,key:"gridColumn",device:t,state:o});return`width:${n>1?100/n:100}%;`}function Pl({v:e,device:t}){return`padding: ${o="padding",Object(P.defaultValueValue)({v:e,key:o,device:t})}px;`;var o}function wl({v:e,device:t,state:o}){return`margin-top: ${Object(P.defaultValueValue)({v:e,key:"paginationSpacing",device:t,state:o})}px;`}function Tl(){return"pointer-events: none; cursor: default;"}function zl({v:e,device:t,state:o}){return G({v:e,device:t,state:o,prefix:"pagination"})}function El({v:e,device:t,state:o}){return U({v:e,device:t,state:o,prefix:"pagination"})}function kl({v:e,device:t,state:o}){return K({v:e,device:t,state:o,prefix:"pagination"})}function Hl({v:e,device:t,state:o}){return q({v:e,device:t,state:o,prefix:"pagination"})}function Fl({v:e,device:t,state:o}){return Y({v:e,device:t,state:o,prefix:"pagination"})}function _l({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"paginationColor"})}function Rl({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"paginationBg"})}function Ml({v:e,device:t,state:o}){return ke({v:e,device:t,state:o,prefix:"pagination"})}function Ll({v:e,device:t,state:o}){return Fe({v:e,device:t,state:o,prefix:"pagination"})}function Wl({v:e,device:t,state:o}){return"off"===Object(P.defaultValueValue)({v:e,key:"filter",device:t,state:o})?"display:none;":"display: flex;"}function Il({v:e,device:t,state:o}){const n=Object(x.c)({v:e,device:t,state:o,prefix:"filter"});return`justify-content:${void 0===n?n:{left:"flex-start",center:"center",right:"flex-end"}[n]};`}function Nl({v:e,device:t,state:o}){const n=Object(P.defaultValueValue)({v:e,key:"filterSpacing",device:t,state:o});return`margin: 1px ${n}px 0 ${n}px;`}function Al({v:e,device:t,state:o}){return`margin-bottom: ${Object(P.defaultValueValue)({v:e,key:"afterFilterSpacing",device:t,state:o})}px;`}function Dl({v:e,device:t,state:o}){return G({v:e,device:t,state:o,prefix:"filter"})}function Vl({v:e,device:t,state:o}){return U({v:e,device:t,state:o,prefix:"filter"})}function $l({v:e,device:t,state:o}){return K({v:e,device:t,state:o,prefix:"filter"})}function Gl({v:e,device:t,state:o}){return q({v:e,device:t,state:o,prefix:"filter"})}function Ul({v:e,device:t,state:o}){return Y({v:e,device:t,state:o,prefix:"filter"})}function Kl({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"filterColor"})}function ql({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"filterBg"})}function Yl({v:e,device:t,state:o}){return ke({v:e,device:t,state:o,prefix:"filter"})}function Xl({v:e,device:t,state:o}){return Fe({v:e,device:t,state:o,prefix:"filter"})}function Zl({v:e,device:t,state:o}){return ht({v:e,device:t,state:o,prefix:"filter"})}function Jl({v:e,device:t,state:o}){return yo({v:e,device:t,state:o,prefix:"filter"})}function Ql({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"activeFilterColor"})}function es({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"activeFilterBg"})}function ts({v:e,device:t,state:o}){return ke({v:e,device:t,state:o,prefix:"activeFilter"})}function os({v:e,device:t,state:o}){return ht({v:e,device:t,state:o,prefix:"activeFilter"})}function ns({v:e,device:t,state:o}){return n="horizontalAlign",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function as({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"filterColor"})}function rs({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"activeFilterColor"})}function is({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"activeFilterBg"})}function ls({v:e,device:t,state:o}){return ke({v:e,device:t,state:o,prefix:"activeFilter"})}function ss({v:e,device:t,state:o}){return ht({v:e,device:t,state:o,prefix:"activeFilter"})}function cs({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"filterBg"})}function ds({v:e,device:t,state:o}){return ke({v:e,device:t,state:o,prefix:"filter"})}function us({v:e,device:t,state:o}){return Fe({v:e,device:t,state:o,prefix:"filter"})}function ps({v:e,device:t,state:o}){return ht({v:e,device:t,state:o,prefix:"filter"})}function bs({v:e,device:t,state:o}){return`margin-top: -${Object(x.u)({v:e,device:t,state:o})}px `}function ms({v:e,device:t,state:o}){return`margin-bottom: ${function({v:e,device:t,state:o}){return n="spacing",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o});var n}({v:e,device:t,state:o})}px `}function hs({v:e,device:t,state:o}){const n=function({v:e,device:t,state:o}){return n="filterSpacing",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o});var n}({v:e,device:t,state:o});return`margin: 1px ${n}px 0 ${n}px;`}function gs({v:e,device:t,state:o}){return`margin-bottom:${function({v:e,device:t,state:o}){return n="afterFilterSpacing",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o});var n}({v:e,device:t,state:o})}px;`}function vs({v:e,device:t,state:o}){if("right"===ns({v:e,device:t,state:o}))return"flex-direction: row-reverse;"}function fs({v:e,device:t,state:o}){if("center"===ns({v:e,device:t,state:o}))return"margin-left: auto; margin-right: auto;"}function ys({v:e,device:t,state:o}){return"center"===ns({v:e,device:t,state:o})?"margin-left: 10px;":""}function Os({v:e,device:t}){return`font-size: ${.75*Object(x.Vd)({v:e,device:t})}px;`}function Ss({v:e,device:t,state:o}){const n=Object(x.c)({v:e,device:t,state:o,prefix:"filter"});return`justify-content:${void 0===n?n:{left:"flex-start",center:"center",right:"flex-end"}[n]};`}function Cs({v:e,device:t,state:o}){return yo({v:e,device:t,state:o,prefix:"filter"})}function xs({v:e,device:t}){return G({v:e,device:t,prefix:"filter"})}function js({v:e,device:t}){return U({v:e,device:t,prefix:"filter"})}function Bs({v:e,device:t}){return K({v:e,device:t,prefix:"filter"})}function Ps({v:e,device:t}){return q({v:e,device:t,prefix:"filter"})}function ws({v:e,device:t}){return Y({v:e,device:t,prefix:"filter"})}function Ts({v:e,device:t}){return pt({v:e,device:t,prefix:"activeColor"})}function zs({v:e,device:t,state:o}){const n=Object(x.h)({v:e,device:t,state:o,prefix:"activeBg"});return void 0===n?"":`background-color:${n};`}function Es({v:e,device:t}){return ke({v:e,device:t,prefix:"active"})}function ks({v:e,device:t}){return ht({v:e,device:t,prefix:"active"})}function Hs({v:e}){return`transition: height ${e.animDuration}s ease-out;`}function Fs({v:e,device:t,state:o}){return`border-width: ${Object(x.s)({v:e,device:t,state:o})}px;`}function _s({v:e,device:t,state:o}){const n=n=>Object(P.defaultValueValue)({v:e,key:n,device:t,state:o}),a=n("iconPosition"),r=n("iconSpacing");switch(a){case"left":return`margin: 0 ${r}px 0 0;`;case"right":return`margin: 0 0 0 ${r}px;`;case"top":return`margin: 0 0 ${r}px 0;`;case"bottom":return`margin: ${r}px 0 0 0;`}}function Rs({v:e,device:t,state:o}){var n;return`font-size: ${n="iconCustomSize",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o})}px;`}function Ms({v:e,device:t,state:o}){return`border-bottom-color: ${Object(x.h)({v:e,device:t,state:o})} !important;`}function Ls({v:e,device:t,state:o}){var n;return`border-right-color: ${n="bgColorHex",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o})};`}function Ws({v:e,device:t,state:o}){var n;return`border-left-color: ${n="bgColorHex",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o})};`}function Is({v:e,device:t,state:o}){return`background-color: ${Object(x.n)({v:e,device:t,state:o})}; z-index: 1;`}function Ns({v:e,device:t,state:o}){return`height: ${Object(x.s)({v:e,device:t,state:o})}px;`}function As({v:e,device:t,state:o}){return`width: ${Object(x.s)({v:e,device:t,state:o})}px;`}function Ds({v:e,device:t,state:o}){return`right: calc(-100vw + ${Object(x.s)({v:e,device:t,state:o})}px);`}function Vs({v:e,device:t,state:o}){return`left: calc(-100vw + ${Object(x.s)({v:e,device:t,state:o})}px);`}function $s({v:e,device:t,state:o}){return`border-color: ${Object(x.n)({v:e,device:t,state:o})};`}function Gs({v:e,device:t,state:o}){return`border-width: ${Object(x.s)({v:e,device:t,state:o})}px;`}function Us({v:e,device:t,state:o}){return`border-width: 0 0 ${Object(x.s)({v:e,device:t,state:o})}px 0;`}function Ks({v:e}){return 0===e.items.length?"border-top: 1px solid transparent; margin-top: -1px;":""}function qs({v:e,device:t,state:o}){var n;switch(n="iconPosition",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o})){case"left":return"flex-direction: row;";case"right":return"flex-direction: row-reverse;";case"top":return"flex-direction: column;";case"bottom":return"flex-direction: column-reverse;"}}function Ys({v:e,device:t,state:o}){var n;return`justify-content: ${"left"===(n="iconPosition",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o}))?"flex-start":"flex-end"};`}function Xs({v:e,device:t,state:o}){var n;return`top: calc(100% - ${n="borderWidth",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o})}px);`}function Zs({v:e,device:t,state:o}){var n;return`bottom: calc(100% - ${n="borderWidth",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o})}px);`}function Js({v:e,device:t,state:o}){var n;return`margin-bottom: ${n="spacingAfter",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o})}px;`}function Qs({v:e,device:t,state:o}){const n=n=>Object(P.defaultValueValue)({v:e,key:n,device:t,state:o}),a=n("spacingAfter");return"left"===n("verticalAlign")?`margin: 0 ${a}px 0 0;`:`margin: 0 0 0 ${a}px;`}function ec({v:e,device:t,state:o}){const n=n=>Object(P.defaultValueValue)({v:e,key:n,device:t,state:o}),a=n("spacing");return"off"===n("verticalMode")?`margin: 0 ${a}px 0 0;`:`margin: 0 0 ${a}px 0;`}function tc({v:e,device:t,state:o}){const n=(a="horizontalAlign",Object(P.defaultValueValue)({v:e,key:a,device:t,state:o}));var a;return"justify"===n?"flex-grow: 1;":`justify-content:${{left:"flex-start",center:"center",right:"flex-end"}[n]};`}function oc({v:e,device:t,state:o}){var n;return"style-3"!==(n="navStyle",Object(P.defaultValueValue)({v:e,key:n,device:t,state:o}))?yo({v:e,device:t,state:o}):""}function nc({v:e,device:t,state:o}){const n=n=>Object(P.defaultValueValue)({v:e,key:n,device:t,state:o}),a=n("verticalMode"),r=n("verticalAlign"),i=Object(x.n)({v:e,device:t,state:o});let l=Object(x.s)({v:e,device:t,state:o});if("off"===a)return 0===l&&(l=1),`content: ""; width: 100vw; height: ${l}px; background-color: ${i}; position: absolute; top: auto; bottom: 0; z-index: 1;`;if("on"===a){if("left"===r)return`content: ""; width: ${l}px; height: 100vh; background-color: ${i}; top: auto; left: auto; right: 0; `;if("right"===r)return`content: ""; width: ${l}px; height: 100vh; background-color: ${i}; top: auto; left: 0; right: auto; `}}function ac({v:e,device:t,state:o}){const n=n=>Object(P.defaultValueValue)({v:e,key:n,device:t,state:o}),a=n("verticalMode"),r=n("verticalAlign"),i=Object(x.n)({v:e,device:t,state:o,prefix:"active"}),l=Object(x.s)({v:e,device:t,state:o,prefix:"active"});if("off"===a)return`content: ""; width: 100%; height: ${l}px; background-color: ${i}; position: absolute; bottom: 0px; left: 0; z-index: 2;`;if("on"===a){if("left"===r)return`content: ""; width: ${l}px; height: 100%; background-color: ${i}; position: absolute; right: 0; left: auto; z-index: 2;`;if("right"===r)return`content: ""; width: ${l}px; height: 100%; background-color: ${i}; position: absolute; right: auto; left: 0; z-index: 2;`}}function rc({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"activeColor"})}function ic({v:e,device:t,state:o}){return ot({v:e,device:t,state:o,prefix:"activeBg"})}function lc({v:e,device:t,state:o}){return ht({v:e,device:t,state:o,prefix:"active"})}function sc({v:e,device:t,state:o}){return`border-color: ${Object(x.n)({v:e,device:t,state:o,prefix:"active"})};`}function cc({v:e,device:t,prefix:o="name"}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:o})};`:""}function dc({v:e,device:t,prefix:o="name"}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:o})}px;`}function uc({v:e,device:t,prefix:o="name"}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:o})};`}function pc({v:e,device:t,prefix:o="name"}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:o})};`}function bc({v:e,device:t,prefix:o="name"}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:o})}px;`}function mc({v:e,device:t,prefix:o="comment"}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:o})};`:""}function hc({v:e,device:t,prefix:o="comment"}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:o})}px;`}function gc({v:e,device:t,prefix:o="comment"}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:o})};`}function vc({v:e,device:t,prefix:o="comment"}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:o})};`}function fc({v:e,device:t,prefix:o="comment"}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:o})}px;`}function yc({v:e,device:t,prefix:o="date"}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:o})};`:""}function Oc({v:e,device:t,prefix:o="date"}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:o})}px;`}function Sc({v:e,device:t,prefix:o="date"}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:o})};`}function Cc({v:e,device:t,prefix:o="date"}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:o})};`}function xc({v:e,device:t,prefix:o="date"}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:o})}px;`}function jc({v:e,device:t,prefix:o="reply"}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:o})} !important;`:""}function Bc({v:e,device:t,prefix:o="reply"}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:o})}px !important;`}function Pc({v:e,device:t,prefix:o="reply"}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:o})} !important;`}function wc({v:e,device:t,prefix:o="reply"}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:o})} !important;`}function Tc({v:e,device:t,prefix:o="reply"}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:o})}px !important;`}function zc({v:e,device:t,prefix:o="postButton"}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:o})} !important;`:""}function Ec({v:e,device:t,prefix:o="postButton"}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:o})}px !important;`}function kc({v:e,device:t,prefix:o="postButton"}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:o})} !important;`}function Hc({v:e,device:t,prefix:o="postButton"}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:o})} !important;`}function Fc({v:e,device:t,prefix:o="postButton"}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:o})}px !important;`}function _c({v:e,device:t,state:o="normal"}){const n=Object(x.Z)({v:e,device:t,state:o});return`width: ${n}px !important; height: ${n}px;`}function Rc({v:e,device:t,state:o="normal"}){return`width: calc(100% - ${Object(x.Z)({v:e,device:t,state:o})+("skin3"===Object(x.ab)({v:e,device:t,state:o})?25:10)}px);`}function Mc({v:e,device:t,state:o,prefix:n="postButtonColor"}){const a=Object(x.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function Lc({v:e,device:t,state:o,prefix:n="postButtonBg"}){return ot({v:e,device:t,state:o,prefix:n})}function Wc({v:e,device:t,state:o="normal",prefix:n="postButtonBg"}){const a=Object(x.h)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a} !important;`}function Ic({v:e,device:t,state:o,prefix:n="nameColor"}){const a=Object(x.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function Nc({v:e,device:t,state:o,prefix:n="commentsColor"}){const a=Object(x.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function Ac({v:e,device:t,state:o="normal"}){return`margin-left:${Object(x.Z)({v:e,device:t,state:o})+("skin3"===Object(x.ab)({v:e,device:t,state:o})?25:10)}px;`}function Dc({v:e,device:t,state:o,prefix:n="starsColor"}){const a=Object(x.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function Vc({v:e,device:t,state:o,prefix:n="starsBgColor"}){const a=Object(x.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function $c({v:e,device:t,state:o}){const n=n=>Object(P.defaultValueValue)({v:e,key:n,device:t,state:o});return`font-size:${n("starsSize")}${n("starsSizeSuffix")};`}function Gc({v:e,device:t,state:o,prefix:n}){const a=Object(x.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`-webkit-text-fill-color:${a};`}function Uc({v:e,device:t,state:o}){const n=Object(x.Kb)({v:e,device:t,state:o});return void 0===n?"":`min-width: ${n}px;`}function Kc({v:e,device:t,state:o}){const n=Object(x.Jb)({v:e,device:t,state:o});return void 0===n?"":`min-height: ${n}px;`}function qc(){return"transition-property:background-color,color,border,box-shadow;"}function Yc({v:e,device:t}){const o=Object(x.Vd)({v:e,device:t,prefix:"typography"}),n=Object(x.Yd)({v:e,device:t,prefix:"typography"});return void 0===o||void 0===n?"":`height: ${o*n}px;`}function Xc({v:e,device:t,state:o}){let n="column"===Object(x.Tc)({v:e,device:t,state:o})?"column":"row";return void 0===n?"":`flex-direction: ${n};`}function Zc({v:e,device:t,prefix:o="category"}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:o})};`:""}function Jc({v:e,device:t,prefix:o="category"}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:o})}px;`}function Qc({v:e,device:t,prefix:o="category"}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:o})};`}function ed({v:e,device:t,prefix:o="category"}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:o})};`}function td({v:e,device:t,prefix:o="category"}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:o})}px;`}function od({v:e,device:t,prefix:o="value"}){return"desktop"===t?`font-family:${Object(x.Ud)({v:e,device:t,prefix:o})};`:""}function nd({v:e,device:t,prefix:o="value"}){return`font-size:${Object(x.Vd)({v:e,device:t,prefix:o})}px;`}function ad({v:e,device:t,prefix:o="value"}){return`line-height:${Object(x.Yd)({v:e,device:t,prefix:o})};`}function rd({v:e,device:t,prefix:o="value"}){return`font-weight:${Object(x.Wd)({v:e,device:t,prefix:o})};`}function id({v:e,device:t,prefix:o="value"}){return`letter-spacing:${Object(x.Xd)({v:e,device:t,prefix:o})}px;`}function ld({v:e,device:t,state:o}){const n=Object(x.Sc)({v:e,device:t,state:o}),a=Object(x.Tc)({v:e,device:t,state:o});return void 0===n?"":"inline"===a?"padding-top: 0px;":`padding-top: ${n/2}px; padding-bottom: ${n/2}px;`}function sd({v:e,device:t,state:o}){const n=Object(x.Rc)({v:e,device:t,state:o}),a=Object(x.Tc)({v:e,device:t,state:o});return void 0===n?"":"inline"===a?"padding-left: 10px;":`padding-left: ${n}px;`}function cd({v:e,device:t,state:o}){const n=Object(x.Rc)({v:e,device:t,state:o}),a=Object(x.Tc)({v:e,device:t,state:o});return void 0===n?"":"inline"===a?`margin-right: ${n}px;`:"margin-right: 0;"}function dd({v:e,device:t,prefix:o="categoryColor",state:n}){const a=Object(x.B)({v:e,device:t,prefix:o,state:n});return void 0===a?"":`color:${a};`}function ud({v:e,device:t,prefix:o="valueColor",state:n}){const a=Object(x.B)({v:e,device:t,prefix:o,state:n});return void 0===a?"":`color:${a};`}function pd({v:e,device:t,state:o}){const n=Object(x.Tc)({v:e,device:t,state:o}),a=Object(x.B)({v:e,device:t,state:o,prefix:"dividersColor"});return void 0===a?"":"inline"===n?"border-top: 0;":`border-top: 1px solid ${a};`}function bd({v:e,device:t,state:o}){return`font-size: ${Object(x.Uc)({v:e,device:t,state:o})}px;`}function md({v:e,device:t,state:o,prefix:n="textColor"}){return`color: ${Object(x.B)({v:e,device:t,state:o,prefix:n})};`}function hd({v:e,device:t,state:o}){return`margin-left: ${Object(x.Rd)({v:e,device:t,state:o})}px;`}function gd({v:e,device:t,state:o,prefix:n="bgStarColor"}){return`color: ${Object(x.B)({v:e,device:t,state:o,prefix:n})};`}function vd({v:e,device:t,state:o,prefix:n="iconColor"}){return pt({v:e,device:t,state:o,prefix:n})}function fd({v:e,device:t,state:o}){const n=Object(x.Mc)({v:e,device:t,state:o});return void 0===n||"on"===n?"":"display: none;"}function yd({v:e,device:t,state:o}){const n=Object(x.Dc)({v:e,device:t,state:o});return void 0===n||"off"===n?"":"content: attr(data-counter);"}function Od(){return"transition-property: background-color,color,border;"}function Sd({v:e,device:t,state:o,prefix:n="purchasesColor"}){return pt({v:e,device:t,state:o,prefix:n})}function Cd({v:e,device:t,prefix:o="purchases"}){return G({v:e,device:t,prefix:o})}function xd({v:e,device:t,prefix:o="purchases"}){return U({v:e,device:t,prefix:o})}function jd({v:e,device:t,prefix:o="purchases"}){return K({v:e,device:t,prefix:o})}function Bd({v:e,device:t,prefix:o="purchases"}){return q({v:e,device:t,prefix:o})}function Pd({v:e,device:t,prefix:o="purchases"}){return Y({v:e,device:t,prefix:o})}function wd({v:e,device:t,prefix:o="title"}){return G({v:e,device:t,prefix:o})}function Td({v:e,device:t,prefix:o="title"}){return U({v:e,device:t,prefix:o})}function zd({v:e,device:t,prefix:o="title"}){return K({v:e,device:t,prefix:o})}function Ed({v:e,device:t,prefix:o="title"}){return q({v:e,device:t,prefix:o})}function kd({v:e,device:t,prefix:o="title"}){return Y({v:e,device:t,prefix:o})}function Hd({v:e,device:t,prefix:o="cost"}){return G({v:e,device:t,prefix:o})}function Fd({v:e,device:t,prefix:o="cost"}){return U({v:e,device:t,prefix:o})}function _d({v:e,device:t,prefix:o="cost"}){return K({v:e,device:t,prefix:o})}function Rd({v:e,device:t,prefix:o="cost"}){return q({v:e,device:t,prefix:o})}function Md({v:e,device:t,prefix:o="cost"}){return Y({v:e,device:t,prefix:o})}function Ld({v:e,device:t,prefix:o="subtotal"}){return G({v:e,device:t,prefix:o})}function Wd({v:e,device:t,prefix:o="subtotal"}){return U({v:e,device:t,prefix:o})}function Id({v:e,device:t,prefix:o="subtotal"}){return K({v:e,device:t,prefix:o})}function Nd({v:e,device:t,prefix:o="subtotal"}){return q({v:e,device:t,prefix:o})}function Ad({v:e,device:t,prefix:o="subtotal"}){return Y({v:e,device:t,prefix:o})}function Dd({v:e,device:t,prefix:o="button"}){return G({v:e,device:t,prefix:o})}function Vd({v:e,device:t,prefix:o="button"}){return U({v:e,device:t,prefix:o})}function $d({v:e,device:t,prefix:o="button"}){return K({v:e,device:t,prefix:o})}function Gd({v:e,device:t,prefix:o="button"}){return q({v:e,device:t,prefix:o})}function Ud({v:e,device:t,prefix:o="button"}){return Y({v:e,device:t,prefix:o})}function Kd({v:e,device:t,state:o,prefix:n="titleColor"}){return pt({v:e,device:t,state:o,prefix:n})}function qd({v:e,device:t,state:o,prefix:n="costColor"}){return pt({v:e,device:t,state:o,prefix:n})}function Yd({v:e,device:t,state:o,prefix:n="subtotalColor"}){return pt({v:e,device:t,state:o,prefix:n})}function Xd({v:e,device:t,state:o,prefix:n="buttonColor"}){return pt({v:e,device:t,state:o,prefix:n})}function Zd({v:e,device:t,state:o,prefix:n="buttonBg"}){return ot({v:e,device:t,state:o,prefix:n})}function Jd({v:e,device:t,state:o}){const n="inline"===Object(x.Bc)({v:e,device:t,state:o})?"row":"column";return void 0===n?"":`flex-direction: ${n};`}function Qd({v:e,device:t,state:o}){const n=Object(x.Bc)({v:e,device:t,state:o}),a=Object(x.Cc)({v:e,device:t,state:o});return void 0===a?"":"inline"===n?`width: calc(50% - ${a/2}px);`:`width: 100%; margin-bottom: ${a}px;`}function eu({v:e,device:t,state:o}){return Fe({v:e,device:t,state:o,prefix:"button"})}function tu({v:e,device:t,state:o}){const n=Object(x.Ic)({v:e,device:t,state:o});return null==n?"":{left:"left: 0; margin-right: auto; margin-left: 0;",center:"left: 0; right: 0; margin-left: auto; margin-right: auto;",right:"right: 0; margin-right: 0; margin-left: auto;"}[n]}function ou({v:e,device:t,state:o}){const n={top:"top: 0; margin-top: 0; margin-bottom: auto;",center:"auto"===Object(x.Gc)({v:e,device:t,state:o})?"top: 50%; margin-top: auto; margin-bottom: auto; transform: translate(0, -50%);":"top: 0; bottom: 0; margin-top: auto; margin-bottom: auto;",bottom:"top: auto; bottom: 0; margin-top: auto; margin-bottom: 0;"},a=Object(x.Jc)({v:e,device:t,state:o});return null==a?"":n[a]}function nu({v:e,device:t,state:o}){const n=Object(x.Kc)({v:e,device:t,state:o}),a=Object(x.Lc)({v:e,device:t,state:o});return null==n&&null==a?"":`width: ${n}${a};`}function au({v:e,device:t,state:o}){const n=Object(x.Gc)({v:e,device:t,state:o}),a=Object(x.Fc)({v:e,device:t,state:o}),r=Object(x.Hc)({v:e,device:t,state:o});return null==a&&null==r?"":`height:${{auto:"auto",custom:`${a}${r}`,fullHeight:"100vh"}[n]};`}function ru({v:e,device:t,state:o,prefix:n="bubbleColor"}){return pt({v:e,device:t,state:o,prefix:n})}function iu({v:e,device:t,state:o,prefix:n="bubbleBg"}){return"bubble"!==Object(x.Ec)({v:e,device:t,state:o})?"background-color: transparent;":nt({v:e,device:t,state:o,prefix:n})}var lu=o(32);function su({v:e,device:t,state:o}){var n;const a=n=>Object(P.defaultValueValue)({v:e,key:n,device:t,state:o});if("relative"===(null!==(n=a("elementPosition"))&&void 0!==n?n:"relative"))return"";const r=Object(lu.g)(Sn.a.read(a("height"))),i=a("heightSuffix");return r&&i?`content: ""; width: 0; padding-top:${r}${i} !important;`:""}function cu({v:e,device:t,state:o}){var n;var a;return"relative"===(null!==(a="elementPosition",n=Object(P.defaultValueValue)({v:e,key:a,device:t,state:o}))&&void 0!==n?n:"relative")?"":"align-items: stretch;"}function du({v:e,device:t,state:o,mode:n}){var a;if("editor"!==n)return"";var r;return"relative"===(null!==(a=Cn.a((r="elementPosition",Object(P.defaultValueValue)({v:e,key:r,device:t,state:o}))))&&void 0!==a?a:"relative")?"":"display: flex; flex: 1 1 auto;"}const uu=({v:e,device:t,state:o})=>{var n;var a;return"relative"===(null!==(n=Cn.a((a="elementPosition",Object(P.defaultValueValue)({v:e,key:a,device:t,state:o}))))&&void 0!==n?n:"relative")?"":"display: flex; width: 100%"},pu=({v:e,device:t,state:o})=>{var n;var a;return"relative"===(null!==(n=Cn.a((a="elementPosition",Object(P.defaultValueValue)({v:e,key:a,device:t,state:o}))))&&void 0!==n?n:"relative")?"":"width: 100%"};function bu({v:e,device:t,state:o}){const n=Object(x.Bb)({v:e,device:t,state:o}),a=Object(x.mb)({v:e,device:t,state:o});if("horizontal"===n||"on"===a)return bo({v:e,device:t,state:o});return`text-align: ${Object(x.c)({v:e,device:t,state:o})};`}function mu({v:e,device:t,state:o}){return`margin-right: ${Object(x.Ab)({v:e,device:t,state:o})}px;`}function hu({v:e,device:t,state:o}){return`font-size: ${Object(x.zb)({v:e,device:t,state:o})}px;`}function gu({v:e,device:t,state:o}){return`display: ${"on"===Object(x.mb)({v:e,device:t,state:o})?"flex":"none"};`}function vu({v:e,device:t,state:o}){return`display: ${"on"===Object(x.mb)({v:e,device:t,state:o})?"none":"flex"};`}function fu({v:e,device:t,state:o}){return"horizontal"===Object(x.Bb)({v:e,device:t,state:o})?"display: flex; flex-wrap: wrap; justify-content: inherit; align-items: center;":"display: inline-block;"}function yu({v:e,device:t,state:o}){if("vertical"===Object(x.Bb)({v:e,device:t,state:o})){return`max-width: ${Object(x.Cb)({v:e,device:t,state:o})}%; width: 100%;`}return"max-width: none;"}function Ou({v:e,device:t,state:o}){return"vertical"===Object(x.Bb)({v:e,device:t,state:o})?ot({v:e,device:t,state:o,prefix:"menuBg"}):"background-color: transparent;"}function Su({v:e,device:t,state:o}){return"horizontal"===Object(x.Bb)({v:e,device:t,state:o})?ot({v:e,device:t,state:o,prefix:"menuBg"}):"background-color: transparent;"}function Cu({v:e,device:t,state:o}){return ke({v:e,device:t,state:o,prefix:"menu"})}function xu({v:e,device:t,state:o}){return yo({v:e,device:t,state:o,prefix:"menu"})}function ju({v:e,device:t}){return pt({v:e,device:t,state:"hover"})}function Bu({v:e,device:t,state:o}){return"horizontal"===Object(x.Bb)({v:e,device:t,state:o})?ot({v:e,device:t,state:"hover",prefix:"menuBg"}):"background-color: transparent;"}function Pu({v:e,device:t}){return ot({v:e,device:t,state:"hover",prefix:"menuBg"})}function wu({v:e,device:t}){return ke({v:e,device:t,state:"hover",prefix:"menu"})}function Tu({v:e,device:t}){return pt({v:e,device:t,state:"active"})}function zu({v:e,device:t}){return ot({v:e,device:t,prefix:"activeMenuBg"})}function Eu({v:e,device:t,state:o}){return"horizontal"===Object(x.Bb)({v:e,device:t,state:o})?ot({v:e,device:t,prefix:"activeMenuBg"}):"background-color: transparent;"}function ku({v:e,device:t}){return ke({v:e,device:t,prefix:"activeMenu"})}function Hu({v:e,device:t,state:o}){return`font-size: ${Object(x.qb)({v:e,device:t,state:o})}px;`}function Fu({v:e,device:t}){return G({v:e,device:t,prefix:"mMenu"})}function _u({v:e,device:t}){return U({v:e,device:t,prefix:"mMenu"})}function Ru({v:e,device:t}){return K({v:e,device:t,prefix:"mMenu"})}function Mu({v:e,device:t}){return q({v:e,device:t,prefix:"mMenu"})}function Lu({v:e,device:t}){return Y({v:e,device:t,prefix:"mMenu"})}function Wu({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"mMenuColor"})}function Iu({v:e,device:t}){return`color: ${Object(x.nb)({v:e,device:t})};`}function Nu({v:e,device:t}){return pt({v:e,device:t,state:"active",prefix:"mMenuColor"})}function Au({v:e,device:t,state:o}){return`border-color: ${Object(x.n)({v:e,device:t,state:o,prefix:"mMenu"})};`}function Du({v:e,device:t,state:o}){return`background-color: ${Object(x.h)({v:e,device:t,state:o,prefix:"mMenuBg"})};`}function Vu({v:e,device:t,state:o}){return`justify-content: ${{left:"flex-start",center:"center",right:"flex-end"}[Object(x.c)({v:e,device:t,state:o,prefix:"mMenuItem"})]};`}function $u({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"mMenuIconColor"})}function Gu({v:e,device:t,state:o}){return`margin-right: ${Object(x.pb)({v:e,device:t,state:o})}px;`}function Uu({v:e,device:t,state:o}){return`font-size: ${Object(x.ob)({v:e,device:t,state:o})}px;`}function Ku({v:e,device:t}){const o=Object(x.Yd)({v:e,device:t,prefix:"mMenu"}),n=Object(x.Vd)({v:e,device:t,prefix:"mMenu"}),{paddingTop:a,paddingTopSuffix:r,paddingBottom:i,paddingBottomSuffix:l,paddingRight:s,paddingRightSuffix:c}=jo({v:e,device:t,prefix:"mMenu"});return`${`height: calc(${Math.round(o*n*10)/10}px + ${`${a}${r}`} + ${`${i}${l}`})`}; padding-right: ${s}${c};`}function qu({v:e,device:t}){if("vertical"===Object(x.Bb)({v:e,device:t}))return"margin: 0;";return`margin: ${Object(x.gd)({v:e,device:t})} ${Object(x.fd)({v:e,device:t})} ${Object(x.dd)({v:e,device:t})} ${Object(x.ed)({v:e,device:t})};`}function Yu({v:e,device:t,state:o}){const n=Object(x.Bb)({v:e,device:t,state:o}),a=Object(x.kd)({v:e,device:t}),r=Object(x.jd)({v:e,device:t}),i=Object(x.hd)({v:e,device:t}),l=Object(x.id)({v:e,device:t});return"horizontal"===n?`padding-top:${a}; padding-bottom:${i}; margin-right:${r}; margin-left:${l};`:`margin-top:${r}; margin-bottom:${l}; margin-right:0; margin-left:0;`}function Xu({v:e,device:t,state:o}){return"horizontal"===Object(x.Bb)({v:e,device:t,state:o})?"":"margin-top: 0;"}function Zu({v:e,device:t,state:o}){return"horizontal"===Object(x.Bb)({v:e,device:t,state:o})?"":"margin-bottom: 0;"}function Ju({v:e,device:t,state:o}){return yo({v:e,device:t,state:o,prefix:"mMenu"})}function Qu({v:e,device:t}){return G({v:e,device:t,prefix:"subMenu"})}function ep({v:e,device:t}){return U({v:e,device:t,prefix:"subMenu"})}function tp({v:e,device:t}){return K({v:e,device:t,prefix:"subMenu"})}function op({v:e,device:t}){return q({v:e,device:t,prefix:"subMenu"})}function np({v:e,device:t}){return Y({v:e,device:t,prefix:"subMenu"})}function ap({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"subMenuColor"})}function rp({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"subMenuHoverColor"})}function ip({v:e,device:t}){return`margin-right: ${Object(x.Eb)({v:e,device:t})}px;`}function lp({v:e,device:t,state:o}){return`font-size: ${Object(x.Db)({v:e,device:t,state:o})}px;`}function sp({v:e,device:t,state:o}){return`background-color: ${Object(x.h)({v:e,device:t,state:o,prefix:"subMenuBg"})};`}function cp({v:e,device:t,state:o}){return`background-color: ${Object(x.h)({v:e,device:t,state:o,prefix:"subMenuHoverBg"})};`}function dp({v:e,device:t,state:o}){return`border-color: ${Object(x.B)({v:e,device:t,state:o,prefix:"subMenuColor"})};`}function up({v:e,device:t,state:o}){const n=Object(x.n)({v:e,device:t,state:o,prefix:"subMenu"}),a=Object(x.r)({v:e,device:t,state:o,prefix:"subMenu"});return`border-bottom: ${Object(x.s)({v:e,device:t,state:o,prefix:"subMenu"})}px ${a} ${n};`}function pp({v:e,device:t}){return pt({v:e,device:t,prefix:"activeSubMenuColor"})}function bp({v:e,device:t}){return`background-color: ${Object(x.h)({v:e,device:t,prefix:"activeSubMenuBg"})};`}function mp({v:e,device:t}){return ht({v:e,device:t,state:"active"})}function hp({v:e,device:t,state:o}){if("vertical"===Object(x.Bb)({v:e,device:t,state:o})&&(t===_n.c||t===_n.b))return"position: relative;top: auto; left: auto; transform: translate(0, 0); height: 0; overflow: hidden;"}function gp({v:e,device:t,state:o}){if("horizontal"===Object(x.Bb)({v:e,device:t,state:o})&&(t===_n.c||t===_n.b))return"position: relative;top: auto; left: auto; transform: translate(0, 0); height: 0; overflow: hidden;"}function vp({v:e,device:t,state:o}){if("vertical"===Object(x.Bb)({v:e,device:t,state:o})&&(t===_n.c||t===_n.b))return"height: auto; width: 100%; left: auto; right: auto;"}function fp({v:e,device:t,state:o}){if("horizontal"===Object(x.Bb)({v:e,device:t,state:o})&&(t===_n.c||t===_n.b))return"height: auto; width: 100%; left: auto; right: auto;"}function yp({device:e}){if(e===_n.c||e===_n.b)return"border-right-style: solid; border-left-style: none;"}function Op(){return"position: absolute; top: 0; width: 305px;"}function Sp({device:e}){return e!==_n.a?"":"left: calc(100% + 5px);"}function Cp({device:e}){return e!==_n.a?"":"right: calc(100% + 5px);"}function xp({device:e}){return e!==_n.a?"":"left: -5px;"}function jp({device:e}){return e!==_n.a?"":"right: -5px;"}function Bp({v:e,device:t,state:o}){return"horizontal"===Object(x.Bb)({v:e,device:t,state:o})?"top: calc(100% + 5px); width: 300px;":"top: 0; width: 300px;"}function Pp({v:e,device:t,state:o}){return"horizontal"===Object(x.Bb)({v:e,device:t,state:o})?"left: 0;":"left: calc(100% + 5px);"}function wp({v:e,device:t,state:o}){return"horizontal"===Object(x.Bb)({v:e,device:t,state:o})?"right: 0;":"right: calc(100% + 5px);"}function Tp({v:e,device:t,state:o}){return"horizontal"===Object(x.Bb)({v:e,device:t,state:o})?"top: -5px; left: 0;":"top: 0; left: -5px;"}function zp({v:e,device:t,state:o}){return"horizontal"===Object(x.Bb)({v:e,device:t,state:o})?"top: -5px; right: 0;":"top: 0; right: -5px;"}function Ep({v:e,device:t,state:o}){if("vertical"===Object(x.Bb)({v:e,device:t,state:o})||t===_n.b){return`max-width: ${Object(x.xb)({v:e,device:t,state:o})}${Object(x.yb)({v:e,device:t,state:o})};`}return"max-width: 100%;"}function kp({v:e,device:t,state:o}){return`padding: ${Object(x.vb)({v:e,device:t,state:o})}px;`}function Hp({v:e,device:t,state:o}){if("custom"===Object(x.tb)({v:e,device:t,state:o})){return`min-height: ${Object(x.sb)({v:e,device:t,state:o})}${Object(x.ub)({v:e,device:t,state:o})};`}return"min-height: auto;"}function Fp({v:e,device:t,state:o}){return"vertical"===Object(x.Bb)({v:e,device:t,state:o})||t===_n.b?"display: block":"display: none;"}function _p({v:e,device:t,state:o}){return`width: ${Object(x.bc)({v:e,device:t,state:o})}%;`}function Rp({v:e,device:t,state:o}){return`font-size: ${Object(x.Zb)({v:e,device:t,state:o})}px;`}function Mp({v:e,device:t,state:o}){const n=Object(x.Yb)({v:e,device:t,state:o}),a=Object(x.ac)({v:e,device:t,state:o});return"left"===n?`margin: auto ${a}px auto 0;`:`margin: auto 0 auto ${a}px;`}function Lp({v:e,device:t,state:o}){return`flex-direction: ${"left"===Object(x.Yb)({v:e,device:t,state:o})?"row":"row-reverse"};`}function Wp({v:e,device:t,state:o}){const n=Object(x.Xb)({v:e,device:t,state:o});return"left"===Object(x.Yb)({v:e,device:t,state:o})||"center"===n?`justify-content: ${{left:"flex-start",center:"center",right:"flex-end"}[n]};`:"left"===n?"justify-content: flex-end;":"right"===n?"justify-content: flex-start;":void 0}function Ip({v:e,device:t,state:o}){if("on"===Object(x.Ub)({v:e,device:t,state:o})){return`width: ${Object(x.Vb)({v:e,device:t,state:o})}px;`}return`width: calc(100% / ${Object(x.Wb)({v:e,device:t,state:o})});`}function Np({v:e,device:t,state:o}){return`background-color: ${Object(x.h)({v:e,device:t,state:o,prefix:"activeBg"})};`}function Ap({v:e,device:t,state:o}){return`color: ${Object(x.B)({v:e,device:t,state:o,prefix:"activeColor"})};`}function Dp({v:e,device:t,state:o,prefix:n="table"}){return yo({v:e,device:t,state:o,prefix:n})}function Vp({v:e,device:t}){return`margin-right: ${o="itemPadding",Object(P.defaultValueValue)({v:e,key:o,device:t})}px;`;var o}function $p({v:e,device:t,state:o}){const n=Object(x.B)({v:e,device:t,state:o});return`color: ${n}; background-color: ${n};`}function Gp({v:e}){return e.menuName?"width: auto":"width: 100%"}function Up({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"activeColor"})}const Kp=e=>"absolute"===e.elementPosition||"fixed"===e.elementPosition;function qp({v:e,device:t,props:o={}}){const n=o=>Object(P.defaultValueValue)({v:e,key:o,device:t}),{width:a}=o.wrapperSizes[t],r=o.props.meta[t+"W"];return null==a&&null==r?"":"%"===n("widthSuffix")?`${Kp(e)?"width":"max-width"}: ${Math.round(Math.abs(100*a/r))}%;`:`max-width: ${n("width")}px;`}function Yp({device:e,props:t={}}){const{height:o}=t.wrapperSizes[e];return null==o?"":"height: auto;"}function Xp({v:e,device:t,props:o={}}){const{borderRadius:n}=e,{width:a,height:r}=o.wrapperSizes?o.wrapperSizes[t]:o[t],i=Math.round(Math.min(a,r)/2);return null==a&&null==r?"":`border-radius: ${Math.min(n,i)}px;`}function Zp({v:e,device:t,props:o={}}){const{width:n}=o[t];return null==n?"":`${Kp(e)?"width":"max-width"}: ${n}px;`}function Jp({device:e,props:t={}}){const{height:o}=t[e];return null==o?"":`height: ${o}px;`}function Qp({device:e,props:t={}}){const{width:o}=t[e];return null==o?"":`width: ${o}px;`}function eb({device:e,props:t={}}){const{height:o}=t[e];return null==o?"":`height: ${o}px;`}function tb({device:e,props:t={}}){const{marginLeft:o}=t[e];return null==o?"":`margin-left: ${o}px;`}function ob({device:e,props:t={}}){const{marginTop:o}=t[e];return null==o?"":`margin-top: ${o}px;`}function nb({device:e,props:t}){const{width:o,height:n}=t[e],a=Object(lu.d)(n/o*100,4);return null==o&&null==n?"":`padding-top: ${a}%;`}function ab(){return"transition-property: border, box-shadow, filter;"}function rb({v:e,device:t,state:o,prefix:n="image"}){return Wo({v:e,device:t,state:o,prefix:n})}function ib({v:e,device:t,state:o}){const n=Object(x.f)({v:e,device:t,state:o});return void 0===n?"":`animation-name:${n};`}function lb({v:e,device:t,state:o}){const n=Object(x.e)({v:e,device:t,state:o});return void 0===n?"":`animation-duration:${n}ms;`}function sb({v:e,device:t,state:o}){const n=Object(x.d)({v:e,device:t,state:o});return void 0===n?"":`animation-delay:${n}ms;`}const cb=Object(j.c)(e=>Object(lu.b)(-359,359,e)?e:void 0,Sn.a.read);function db(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}const ub=e=>{var t;const o=cb(Object(P.defaultValueValue)(function(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?db(Object(o),!0).forEach((function(t){Object(C.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):db(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}({key:"rotate"},e)));return null!==(t=Object(j.b)(e=>(e=>Object.entries(e).reduce((e,[t,o])=>e+`${t}(${o})`,"transform: ")+";")({rotate:e+"deg"}),o))&&void 0!==t?t:""};function pb({v:e,device:t}){const o=Object(x.Td)({v:e,device:t}),n=Object(x.Pd)({v:e,device:t});return void 0===o||void 0===n?"":`padding: ${n}px ${o}px;`}function bb({v:e,device:t}){return Fe({v:e,device:t,prefix:"input"})}function mb({v:e,device:t}){const o=o=>Object(P.defaultValueValue)({v:e,key:o,device:t}),n=o("inputPosition"),a=o("spacing");return void 0===a||void 0===n?"":{left:`margin: 0 ${a}px 0 0;`,right:`margin: 0 0 0 ${a}px;`,top:`margin: 0 0 ${a}px 0;`,bottom:`margin: ${a}px 0 0 0;`}[n]}function hb({v:e,device:t}){const o=o=>Object(P.defaultValueValue)({v:e,key:o,device:t}),n=o("inputPosition"),a=o("inputWidth"),r="left"===n||"right"===n?"px":o("inputWidthSuffix"),i=o("inputHeight");return void 0===a||void 0===i?"":`width: ${a}${r}; height: ${i}px;`}function gb({v:e,device:t}){var o;return`flex-direction: ${{left:"row",right:"row-reverse",top:"column",bottom:"column-reverse"}[(o="inputPosition",Object(P.defaultValueValue)({v:e,key:o,device:t}))]};`}function vb({v:e,device:t}){const o=o=>Object(P.defaultValueValue)({v:e,key:o,device:t}),n=o("inputPosition"),a=o("inputVerticalAlign"),r=o("inputHorizontalAlign");return`align-items: ${{top:"flex-start",right:"flex-end",center:"center",bottom:"flex-end",left:"flex-start"}["left"===n||"right"===n?a:r]};`}function fb({v:e,device:t}){return G({v:e,device:t,prefix:"input"})}function yb({v:e,device:t}){return U({v:e,device:t,prefix:"input"})}function Ob({v:e,device:t}){return K({v:e,device:t,prefix:"input"})}function Sb({v:e,device:t}){return q({v:e,device:t,prefix:"input"})}function Cb({v:e,device:t}){return Y({v:e,device:t,prefix:"input"})}function xb({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"inputColor"})}function jb({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"buttonColor"})}function Bb({v:e,device:t}){return G({v:e,device:t,prefix:"label"})}function Pb({v:e,device:t}){return U({v:e,device:t,prefix:"label"})}function wb({v:e,device:t}){return K({v:e,device:t,prefix:"label"})}function Tb({v:e,device:t}){return q({v:e,device:t,prefix:"label"})}function zb({v:e,device:t}){return Y({v:e,device:t,prefix:"label"})}function Eb({v:e,device:t}){return G({v:e,device:t,prefix:"value"})}function kb({v:e,device:t}){return U({v:e,device:t,prefix:"value"})}function Hb({v:e,device:t}){return K({v:e,device:t,prefix:"value"})}function Fb({v:e,device:t}){return q({v:e,device:t,prefix:"value"})}function _b({v:e,device:t}){return Y({v:e,device:t,prefix:"value"})}function Rb({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"labelColor"})}function Mb({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"valueColor"})}function Lb({v:e,device:t}){return G({v:e,device:t,prefix:"clear"})}function Wb({v:e,device:t}){return U({v:e,device:t,prefix:"clear"})}function Ib({v:e,device:t}){return K({v:e,device:t,prefix:"clear"})}function Nb({v:e,device:t}){return q({v:e,device:t,prefix:"clear"})}function Ab({v:e,device:t}){return Y({v:e,device:t,prefix:"clear"})}function Db({v:e,device:t,state:o}){return pt({v:e,device:t,state:o,prefix:"clearColor"})}function Vb({v:e}){return`margin-bottom: ${e.tableSpacing}px;`}function $b({v:e}){const t=Object(x.s)({v:e,prefix:"table"}),o=Object(x.r)({v:e,prefix:"table"}),n=Object(x.n)({v:e,prefix:"table"});return void 0===t?"":`border:${t}px ${o} ${n};`}function Gb({v:e,device:t,state:o}){return`background-color: ${Object(x.B)({v:e,device:t,state:o,prefix:"inputBgColor"})};`}function Ub({v:e,device:t,state:o}){return`background-color: ${Object(x.B)({v:e,device:t,state:o,prefix:"tableBgColor"})};`}function Kb({v:e,device:t,state:o}){return ke({v:e,device:t,prefix:"input",state:o})}function qb({v:e,device:t,state:o}){return ht({v:e,device:t,prefix:"input",state:o})}function Yb({v:e,device:t,state:o}){return ht({v:e,device:t,prefix:"table",state:o})}function Xb({v:e,device:t}){return ke({v:e,device:t,prefix:"button"})}function Zb({v:e,device:t}){return Fe({v:e,device:t,prefix:"button"})}function Jb({v:e,device:t,state:o}){const n=Object(x.s)({v:e,device:t,state:o,prefix:"thumbnail"}),a=Object(x.r)({v:e,device:t,state:o,prefix:"thumbnail"}),r=Object(x.n)({v:e,device:t,state:o,prefix:"thumbnail"});return void 0===n?"":`border:${n}px ${a} ${r};`}function Qb({v:e,device:t,state:o}){return Fe({v:e,device:t,state:o,prefix:"thumbnail"})}function em({v:e,device:t,state:o}){return ht({v:e,device:t,prefix:"thumbnail",state:o})}function tm({v:e,device:t,state:o}){const n=Object(x.Oc)({v:e,device:t,state:o});return void 0!==n||null!==n?"bottom"===e.thumbStyle?`margin-top: ${n}px;`:"margin-top: 0;":""}function om({v:e,device:t,state:o}){const n=Object(x.Nc)({v:e,device:t,state:o}),a=Object(x.Oc)({v:e,device:t,state:o});return void 0!==n||null!==n?"bottom"===e.thumbStyle?`margin-bottom: -${n}px;`:"top"===e.thumbStyle?`margin-bottom: ${-1*(n-a)}px;`:"margin-bottom: 0;":""}function nm({v:e,device:t,state:o}){const n=Object(x.Nc)({v:e,device:t,state:o});return void 0!==n||null!==n?("left"===e.thumbStyle||e.thumbStyle,`margin: 0 ${n}px ${n}px 0;`):""}function am({v:e,device:t,state:o}){const n=Object(x.Nc)({v:e,device:t,state:o}),a="left"===e.thumbStyle||"right"===e.thumbStyle?e.thumbPerRowRL:e.thumbPerRowTB;return(void 0!==n||null!==n)&&`width: calc(${100/a}% - ${n*(a-1)/a}px);`}function rm({v:e,device:t,state:o}){const n=n=>Object(P.defaultValueValue)({v:e,key:n,device:t,state:o});return"left"===e.thumbStyle||"right"===e.thumbStyle?`min-width: ${n("thumbWidth")}${n("thumbWidthSuffix")}; width: ${n("thumbWidth")}${n("thumbWidthSuffix")};`:""}function im({v:e,device:t,state:o}){const n=Object(x.Oc)({v:e,device:t,state:o});return"left"===e.thumbStyle?`margin-right: ${n}px;`:"right"===e.thumbStyle?`margin-left: ${n}px;`:"margin-right:0; margin-left:0;"}function lm({v:e}){return"right"===e.thumbStyle?"left: 1rem; right: auto;":"top"===e.thumbStyle?"bottom: 1rem; top: auto;":""}},,function(e,t,o){"use strict";o.d(t,"d",(function(){return a})),o.d(t,"e",(function(){return i})),o.d(t,"a",(function(){return l.a})),o.d(t,"c",(function(){return p})),o.d(t,"b",(function(){return b})),o.d(t,"f",(function(){return m})),o.d(t,"g",(function(){return h})),o.d(t,"h",(function(){return g})),o.d(t,"i",(function(){return v})),o.d(t,"j",(function(){return f}));var n=o(18);function a(e,t){if(t){e=Object(n.a)(t).hex}return{hex:e}}var r=o(33);function i(e,t,o){if(o){const t=Object(r.e)(o);if(t)return t[e]}return t}var l=o(137),s=o(8),c=o(17),d=o(1);function u(e){switch(e){case"richText":return Object(d.a)("Custom text");case"image":return Object(d.a)("Custom image");case"link":return Object(d.a)("Custom link");default:return Object(d.a)("Custom")}}const p=(e,t=!1,o)=>{const n=c.a.get("dynamicContent");if(!n)return[];const a=s.default.flatten(s.default.values(n[e]),!0).map(({label:e,placeholder:t})=>({title:e,value:t}));return a.length>0?t?[{title:null!=o?o:u(e),value:""},...a]:a:[]},b=(e,t)=>{const o=c.a.get("dynamicContent");if(o&&o[e])return s.default.flatten(s.default.values(o[e]),!0).find(e=>e.placeholder===t)},m=()=>[{title:"None",value:"none"},{icon:{className:"brz-ed-shape--1"},value:"1"},{icon:{className:"brz-ed-shape--2"},value:"2"},{icon:{className:"brz-ed-shape--3"},value:"3"},{icon:{className:"brz-ed-shape--4"},value:"4"},{icon:{className:"brz-ed-shape--5"},value:"5"},{icon:{className:"brz-ed-shape--6"},value:"6"},{icon:{className:"brz-ed-shape--7"},value:"7"},{icon:{className:"brz-ed-shape--8"},value:"8"},{icon:{className:"brz-ed-shape--9"},value:"9"},{icon:{className:"brz-ed-shape--10"},value:"10"},{icon:{className:"brz-ed-shape--11"},value:"11"},{icon:{className:"brz-ed-shape--12"},value:"12"},{icon:{className:"brz-ed-shape--13"},value:"13"},{icon:{className:"brz-ed-shape--14"},value:"14"},{icon:{className:"brz-ed-shape--15"},value:"15"},{icon:{className:"brz-ed-shape--16"},value:"16"},{icon:{className:"brz-ed-shape--17"},value:"17"},{icon:{className:"brz-ed-shape--18"},value:"18"},{icon:{className:"brz-ed-shape--19"},value:"19"},{icon:{className:"brz-ed-shape--20"},value:"20"},{icon:{className:"brz-ed-shape--21"},value:"21"},{icon:{className:"brz-ed-shape--22"},value:"22"},{icon:{className:"brz-ed-shape--23"},value:"23"},{icon:{className:"brz-ed-shape--24"},value:"24"},{icon:{className:"brz-ed-shape--25"},value:"25"},{icon:{className:"brz-ed-shape--26"},value:"26"},{icon:{className:"brz-ed-shape--27"},value:"27"},{icon:{className:"brz-ed-shape--28"},value:"28"},{icon:{className:"brz-ed-shape--29"},value:"29"},{icon:{className:"brz-ed-shape--30"},value:"30"},{icon:{className:"brz-ed-shape--31"},value:"31"},{icon:{className:"brz-ed-shape--32"},value:"32"},{icon:{className:"brz-ed-shape--33"},value:"33"},{icon:{className:"brz-ed-shape--34"},value:"34"},{icon:{className:"brz-ed-shape--35"},value:"35"},{icon:{className:"brz-ed-shape--36"},value:"36"},{icon:{className:"brz-ed-shape--37"},value:"37"},{icon:{className:"brz-ed-shape--38"},value:"38"},{icon:{className:"brz-ed-shape--39"},value:"39"},{icon:{className:"brz-ed-shape--40"},value:"40"},{icon:{className:"brz-ed-shape--41"},value:"41"},{icon:{className:"brz-ed-shape--42"},value:"42"}],h=(e=c.a.get("taxonomies"))=>e?e.map(e=>{const{id:t="",label:o="",name:n="",terms:a=[]}=e;return t||o||n?a&&a.length?{title:o,optgroup:a.map(e=>({title:e.name,value:`${n}|${e.id}`}))}:{title:o,value:`${n}|${t}`}:{title:"-",value:""}}):[{title:"-",value:""}],g=(e="")=>{const t=c.a.get("taxonomies").filter(t=>{const{name:o}=t;return"products"===e?o.indexOf("product")>-1:"posts"===e?o.indexOf("product")<0:t});return h(t)},v=()=>{const e=c.a.get("postTypesTaxs");return e?e.map(e=>({value:e.name,title:e.label})):[{title:"-",value:""}]},f=e=>{const t=c.a.get("postTypesTaxs");return e&&t?t.filter(t=>t.taxonomies&&t.taxonomies.length&&t.name===e).reduce((e,t)=>{if(t.taxonomies){const o=t.taxonomies.map(e=>({value:e.id,title:e.name}));return e.concat(o)}return e},[]):[{title:"-",value:""}]}},function(e,t,o){"use strict";o.d(t,"q",(function(){return l})),o.d(t,"s",(function(){return h})),o.d(t,"l",(function(){return p})),o.d(t,"k",(function(){return m})),o.d(t,"m",(function(){return b})),o.d(t,"t",(function(){return v.a})),o.d(t,"n",(function(){return O})),o.d(t,"j",(function(){return y})),o.d(t,"r",(function(){return P})),o.d(t,"p",(function(){return w})),o.d(t,"i",(function(){return S.j})),o.d(t,"f",(function(){return S.f})),o.d(t,"h",(function(){return S.i})),o.d(t,"d",(function(){return S.d})),o.d(t,"a",(function(){return S.a})),o.d(t,"c",(function(){return S.c})),o.d(t,"g",(function(){return S.h})),o.d(t,"e",(function(){return S.e})),o.d(t,"b",(function(){return S.b})),o.d(t,"o",(function(){return S.k}));var n=o(53),a=o(66),r=o(57);const i=(e,t,o,n)=>{if("type"===e&&null!=a.a.getComponent(t)){if(o.value=o.value||{},void 0!==o.value._id&&n.keepExistingIds)return;if("GlobalBlock"===o.type)return;o.value._id=Object(r.a)()}};function l(e,t={}){const o=JSON.parse(JSON.stringify(e));return Object(n.f)(o,i,t),o}var s=o(2),c=o(24);function d(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function u(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?d(Object(o),!0).forEach((function(t){Object(s.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):d(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function p(e,t,o){let n=e.findIndex(e=>e===t),a="increase"===o?++n:--n;return a===e.length?a=0:a<0&&(a=e.length-1),e[a]}function b(e,t,o){return m(e,t,e=>{if(e.type){const{defaultValue:t}=a.a.getComponent(e.type)||{};return!(!t||!t.style)&&t.style[o]}})}function m(e,t,o){const n=[...e];let a=[];for(let r=0;r<=e.length;r++){const e=Object(c.getIn)(t,n),r=o(e);if(r||null===r)return{value:e,path:n};a.unshift(n.pop())}return{value:null,path:null}}function h(e,t=0,o=0){const n=function(e){const{defaultValue:t}=a.a.getComponent(e.type);return t.style}(e);let r=Object(c.setIn)(e,["value"],g(e.value,n));if(o++,e.value.items&&o<=t){const n=e.value.items.map((e,n)=>{let a={};return r.value&&r.value.items&&r.value.items[n]&&(a=r.value.items[n]),h(u(u({},e),{},{value:u(u({},a.value),e.value)}),t,o)});r=Object(c.setIn)(r,["value","items"],n)}return r}const g=(e,t={})=>Object.entries(t).reduce((o,[n,a])=>(o[n]=n in e?e[n]:a,o[n]="items"===n?e.items.map((e,o)=>u(u({},e),{},{value:u(u({},g(e.value,t.items[o].value)),e.value)})):n in e?e[n]:a,o),{});var v=o(172),f=o(150);const y=(e,t,o=t+1)=>{if(!e[t])throw new Error("Can't clone invalid item at index "+t);return Object(f.a)(e,o,e[t])},O=(e,t,o)=>o.reduce((e,o,n)=>{const a=l(Object(v.a)(o));return Object(c.insert)(e,t+n,a)},e);var S=o(68),C=o(37),x=o(48),j=o(23),B=o(19);function P(e,t=5){const o=e.value.items[0].value,n=o._styles;let{offsetX:a=0,offsetY:r=0}=o;const i=Object(B.B)(Object(j.b)().getState());if(!(x.a.read(a)&&x.a.read(r))&&n&&i){const e=n.reduce((e,t)=>i[t]?Object.assign(e,i[t]):e,{offsetX:0,offsetY:0});a=e.offsetX,r=e.offsetY}return Object(C.a)(e,e=>{e.value.items[0].value.offsetX=a+t,e.value.items[0].value.offsetY=r+t})}const w=(e,t)=>{return o=t,Object(n.b)(["type","value"],o)?Object(n.c)(w.bind(null,e),e(t)):Object(n.c)(w.bind(null,e),t);var o}},function(e,t,o){"use strict";o.d(t,"a",(function(){return d}));var n=o(0),a=o.n(n),r=o(8),i=o(5),l=o.n(i),s=o(129);const c=(e,t)=>{const{className:o="",icon:n="nc-circle-add",style:i={},onClick:c=r.default.noop}=e,d=l()("brz-icon-svg brz-ed-icon-svg",o);return a.a.createElement("svg",{ref:t,className:d,onClick:c,style:i},a.a.createElement("use",{xlinkHref:Object(s.a)(n)}))},d=a.a.forwardRef(c);t.b=d},function(e,t,o){"use strict";o.d(t,"a",(function(){return I})),o.d(t,"b",(function(){return b})),o.d(t,"d",(function(){return N})),o.d(t,"e",(function(){return A}));var n=o(12),a=o(2),r=o(0),i=o.n(r),l=o(35),s=o.n(l),c=o(82),d=o(50),u=o(8);const p=i.a.createContext(void 0),b=({children:e,position:t,onEscape:o})=>{const n=Object(r.useContext)(p),a=Object(r.useMemo)(()=>u.default.defaults({position:t,onEscape:o},n),[t,o,n]);return i.a.createElement(p.Provider,{value:a},e)};var m=o(64),h=o(179);const g=({data:e,toolbar:t})=>i.a.createElement("div",{className:"brz-ed-toolbar__item"},i.a.createElement(h.a,{className:"brz-ed-toolbar__option",data:e,toolbar:t,location:"toolbar"}));function v(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function f(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?v(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):v(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class y extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{itemsRenderer:void 0}),Object(a.a)(this,"containerRef",i.a.createRef()),Object(a.a)(this,"arrowRef",i.a.createRef()),Object(a.a)(this,"setItemsRenderer",e=>{this.setState({itemsRenderer:e},this.props.onContentChange)}),Object(a.a)(this,"resetItemsRenderer",()=>{this.setState({itemsRenderer:void 0},this.props.onContentChange)}),Object(a.a)(this,"renderItems",e=>{const{position:t,containerRef:o}=this.props,n=e.map((n,a)=>i.a.createElement(g,{key:n.id,data:n,toolbar:f(f({},this),{},{toolbarRef:null!=o?o:this.containerRef,toolbarCSSPosition:t,toolbarItemIndex:a+1,toolbarItemsLength:e.length})}));return i.a.createElement("div",{className:"brz-ed-toolbar__items brz-d-xs-flex brz-align-items-center"},n)})}render(){const{containerRef:e,arrowRef:t,arrow:o,items:n,onClick:a,onMouseEnter:r,onMouseLeave:l}=this.props,{itemsRenderer:s}=this.state,c=Object(m.b)(n);return c.length?i.a.createElement("div",{ref:null!=e?e:this.containerRef,className:"brz-ed-toolbar",onClick:a,onMouseEnter:r,onMouseLeave:l},void 0!==s?s(c):this.renderItems(c),o&&i.a.createElement("div",{ref:null!=t?t:this.arrowRef,className:"brz-ed-arrow brz-ed-arrow--top-center brz-ed-toolbar__arrow"})):null}}Object(a.a)(y,"defaultProps",{arrow:!0,items:[]});var O=o(32),S=o(153);class C extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"toolbarItemsContainerRef",i.a.createRef()),Object(a.a)(this,"toolbarItemsArrowRef",i.a.createRef()),Object(a.a)(this,"reposition",()=>{const{node:e,offsetTop:t,offsetBottom:o,offsetLeft:n,position:a}=this.props,r=this.toolbarItemsContainerRef.current,i=this.toolbarItemsArrowRef.current,l=e.ownerDocument.defaultView,s=document.documentElement.clientWidth;if(!r)return;const c=r.getBoundingClientRect(),d=e.getBoundingClientRect();let u,p;const b="fixed"===a?0:l.scrollY;b+d.top-(c.height+300)>=l.scrollY?(u=!1,p=b+d.top-c.height-Number(t),Object(S.b)("above")):(u=!0,p=b+d.top+d.height+Number(o),Object(S.b)("below"));const m=d.left+d.width/2-c.width/2+Number(n),h=e.ownerDocument.defaultView===l.parent?58:0,g=s-c.width,v=Object(O.a)(m,h,g),f=m-v;r.style.top=p+"px",r.style.left=v+"px","fixed"===a&&(r.style.position="fixed"),r.classList.add("brz-ed-animated","brz-ed-animated--fadeInDown"),u?r.classList.add("brz-ed-toolbar--bottom"):r.classList.remove("brz-ed-toolbar--bottom"),i&&(c.width/2-Math.abs(f)<23?i.classList.add("brz-hidden"):i.classList.remove("brz-hidden"),u?(i.classList.remove("brz-ed-arrow--top-center"),i.classList.add("brz-ed-arrow--bottom-center")):(i.classList.remove("brz-ed-arrow--bottom-center"),i.classList.add("brz-ed-arrow--top-center")),i.style.left=`calc(50% + ${f}px)`)})}componentDidMount(){this.reposition()}componentDidUpdate(){this.props.repositionOnUpdates&&this.reposition()}render(){return i.a.createElement(y,Object(n.a)({},this.props,{containerRef:this.toolbarItemsContainerRef,arrowRef:this.toolbarItemsArrowRef,arrow:!0,onContentChange:this.reposition}))}}Object(a.a)(C,"defaultProps",{offsetTop:14,offsetBottom:14,offsetLeft:0});var x=o(159);const j=({getItems:e,getTitle:t})=>e?(Object(r.useEffect)(()=>{x.b&&x.b.setItems(e,t)}),Object(r.useEffect)(()=>()=>{x.b&&x.b.clearItems()},[]),null):null;let B=null,P=null;const w={getActive:()=>P,setActive(e){this.unsetActive(),P=e},unsetIfActive(e){e===P&&(B=e,P=null,B.handleMonitorDeactivationRequest())},unsetActive(){null!==P&&(B=P,P=null,B.handleMonitorDeactivationRequest())},activateLastActive(){B&&B.handleMonitorActivationRequest()}};var T=o(59);function z(e,t,o){let n=o.target;for(;n&&n!==e;){if(n.matches(t))return n;n=n.parentElement}return n}function E(e,t,o){if(e.matches(t)&&Object(T.g)(o.clientX,o.clientY,e.getBoundingClientRect()))return e;const n=e.querySelectorAll(t);for(let e=0;e<n.length;e++){const t=n[e];if(t&&Object(T.g)(o.clientX,o.clientY,t.getBoundingClientRect()))return t}return null}function k(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function H(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?k(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):k(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const F=new Map;class _ extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"context",void 0),Object(a.a)(this,"state",{opened:!1}),Object(a.a)(this,"node",null),Object(a.a)(this,"selectorNode",null),Object(a.a)(this,"handleClick",e=>{e.stopPropagation();const{onClick:t}=this.props;t&&t(e)}),Object(a.a)(this,"handleMouseEnter",e=>{e.stopPropagation();const{onMouseEnter:t}=this.props;if(t&&t(e),null!==this.node){const e=new CustomEvent("brz.toolbar.mouseenter",{bubbles:!0});this.node.dispatchEvent(e)}}),Object(a.a)(this,"handleMouseLeave",e=>{e.stopPropagation();const{onMouseLeave:t}=this.props;if(void 0!==t&&t(e),this.node){const e=new CustomEvent("brz.toolbar.mouseleave",{bubbles:!0});this.node.dispatchEvent(e)}}),Object(a.a)(this,"handleEscape",()=>{const e=this.props,t=H(H({},this.context),e);t.onEscape?t.onEscape():this.hide()}),Object(a.a)(this,"handleClickOutside",()=>{w.unsetActive()}),Object(a.a)(this,"clickOutsideException",e=>{try{const t=s.a.findDOMNode(this);return null!==t&&t.contains(e)}catch(e){return!1}}),Object(a.a)(this,"getOutSideExceptions",()=>[".brz-ed-sidebar__right",".brz-ed-tooltip__content-portal",".brz-ed-fixed",".brz-ed-box__resizer--point",".media-modal",".media-modal-backdrop",this.clickOutsideException])}componentDidMount(){if(this.node=s.a.findDOMNode(this),null!==this.node&&null!==this.node.ownerDocument){if(!F.get(this.node.ownerDocument)){const e=this.node.ownerDocument.createElement("div");e.id="brz-toolbar-portal",this.node.ownerDocument.body.appendChild(e),F.set(this.node.ownerDocument,e)}this.props.manualControl||this.node.addEventListener("click",e=>{if(null!==this.node&&!e.brzToolbarHandled)if(void 0===this.props.selector){if(w.getActive()===this)return;e.brzToolbarHandled=!0,this.show()}else{const t=("dom-tree"===this.props.selectorSearchStrategy?z:E)(this.node,this.props.selector,e);t?(e.brzToolbarHandled=!0,!1===this.state.opened?(this.selectorNode=t,this.show()):t!==this.selectorNode&&this.hide(()=>{this.selectorNode=t,this.show()})):this.hide()}},!1)}}componentWillUnmount(){w.unsetIfActive(this),this.node=null,this.selectorNode=null}handleMonitorActivationRequest(){this.show()}handleMonitorDeactivationRequest(){this.hide()}show(){if(!this.state.opened){const{onBeforeOpen:e,onOpen:t}=this.props;w.setActive(this),e&&e(),this.setState({opened:!0},()=>{if(t&&t(),null!==this.node){const e=new CustomEvent("brz.toolbar.open",{bubbles:!0});this.node.dispatchEvent(e)}})}}hide(e){if(this.state.opened){const{onBeforeClose:t,onClose:o}=this.props;t&&t(),this.setState({opened:!1},()=>{if(o&&o(),null!==this.node){const e=new CustomEvent("brz.toolbar.close",{bubbles:!0});this.node.dispatchEvent(e)}null==e||e()})}}renderToolbar(){var e;if(null===this.node)return;if(null===this.node.ownerDocument)return;const t=this.props.getItems();if(!t||0===t.length)return;const o=this.props,a=this.context,r=this.node.ownerDocument,l=F.get(r);return l&&s.a.createPortal(i.a.createElement(i.a.Fragment,null,i.a.createElement(c.a,{exceptions:this.getOutSideExceptions(),onClickOutside:this.handleClickOutside},i.a.createElement(C,Object(n.a)({},a,o,{items:t,node:null!==(e=this.selectorNode)&&void 0!==e?e:this.node,onClick:this.handleClick,onMouseEnter:this.handleMouseEnter,onMouseLeave:this.handleMouseLeave}))),o.getSidebarItems&&i.a.createElement(j,{getItems:o.getSidebarItems,getTitle:o.getSidebarTitle}),i.a.createElement(d.a,{id:"key-helper-toolbar-escape",keyNames:["esc"],onKeyUp:this.handleEscape})),l)}render(){const{children:e}=this.props,{opened:t}=this.state;return i.a.createElement(i.a.Fragment,null,e,t&&this.renderToolbar())}}Object(a.a)(_,"contextType",p),Object(a.a)(_,"defaultProps",{manualControl:!1});var R=o(5),M=o.n(R),L=o(100),W=o(15);class I extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{opened:!1}),Object(a.a)(this,"onClickOutside",()=>{this.close()}),Object(a.a)(this,"handleClick",()=>{!this.state.opened?this.open():this.close()}),Object(a.a)(this,"handleEscape",()=>{this.close()})}componentWillUnmount(){w.unsetIfActive(this)}getClickOutSideExceptions(){return[".brz-ed-collapsible__toolbar",".brz-ed-sidebar__right",".brz-ed-tooltip__content-portal",".brz-ed-popup-integrations",".brz-ed-popup-authorization",".media-modal",".media-modal-backdrop"]}handleMonitorActivationRequest(){this.open()}handleMonitorDeactivationRequest(){this.close()}open(){if(this.state.opened)return;Object(S.b)("below");const{onBeforeOpen:e,onOpen:t}=this.props;w.setActive(this),e&&e(),this.setState({opened:!0},()=>{t&&t()})}close(){if(!this.state.opened)return;const{onBeforeClose:e,onClose:t}=this.props;w.unsetIfActive(this),e&&e(),this.setState({opened:!1},()=>{t&&t()})}renderBadge(){const{membership:e,global:t}=this.props;return e||t?i.a.createElement(L.CSSTransition,{key:"badge",timeout:0},i.a.createElement("div",{className:"brz-ed-collapsible__badge"},t&&i.a.createElement(W.b,{icon:"nc-global"}),e&&i.a.createElement(W.b,{icon:"nc-user"}))):null}renderIcon(){return i.a.createElement(L.CSSTransition,{key:"icon",classNames:"fadeCollapsibleIcon",timeout:200},i.a.createElement("div",{className:"brz-ed-collapsible__icon",onClick:this.handleClick},i.a.createElement(W.b,{icon:"nc-settings"})))}renderToolbar(){const{getItems:e,animation:t}=this.props,o="leftToRight"===t?"animation-left-right":"animation-right-left",n=e();return i.a.createElement(L.CSSTransition,{key:"toolbar",classNames:o,timeout:200},i.a.createElement("div",{className:"brz-ed-collapsible__toolbar"},i.a.createElement(y,{items:n,arrow:!1})))}render(){const{className:e,getSidebarItems:t,getSidebarTitle:o}=this.props,{opened:n}=this.state,a=M()("brz-ed-collapsible",{"brz-ed-collapsible--opened":n},e);return i.a.createElement(i.a.Fragment,null,i.a.createElement(c.a,{onClickOutside:this.onClickOutside,exceptions:this.getClickOutSideExceptions()},i.a.createElement(L.TransitionGroup,{className:a},this.renderBadge(),n?this.renderToolbar():this.renderIcon())),n&&t&&i.a.createElement(j,{getItems:t,getTitle:o}),n&&i.a.createElement(d.a,{keyNames:["esc"],id:"key-helper-toolbar-escape",onKeyUp:this.handleEscape}))}}Object(a.a)(I,"defaultProps",{animation:"leftToRight",global:!1,membership:!1});t.c=_;const N=()=>w.unsetActive(),A=()=>w.activateLastActive()},function(e,t,o){"use strict";var n=o(97);let a={};t.a={load(e){a=Object(n.a)(a,e)},get:e=>a[e],getAll:()=>a}},function(e,t,o){"use strict";o.d(t,"d",(function(){return c})),o.d(t,"c",(function(){return d})),o.d(t,"b",(function(){return i})),o.d(t,"a",(function(){return l})),o.d(t,"e",(function(){return s}));var n=o(91),a=o(23),r=o(19);function i(){return Object(r.g)(Object(a.b)().getState()).colorPalette}function l(e){return i().find(t=>t.id===e)}const s=(e,{getClassName:t=(e=>e)}={})=>e.map(({id:e,hex:o})=>{const n=t(".brz-cp-"+e.toLowerCase());return`.brz ${n}, .brz ${n}{color: ${o};}`}).join("");const c=n.a;function d(e,t){if(c(e)){e=e.replace("#",""),t=isNaN(t)?1:t;return`rgba(${parseInt(e.substring(0,2),16)}, ${parseInt(e.substring(2,4),16)}, ${parseInt(e.substring(4,6),16)}, ${t})`}}},function(e,t,o){"use strict";o.d(t,"C",(function(){return m})),o.d(t,"o",(function(){return h})),o.d(t,"d",(function(){return g})),o.d(t,"a",(function(){return v})),o.d(t,"c",(function(){return f})),o.d(t,"z",(function(){return y})),o.d(t,"E",(function(){return O})),o.d(t,"H",(function(){return S})),o.d(t,"g",(function(){return C})),o.d(t,"j",(function(){return x})),o.d(t,"I",(function(){return j})),o.d(t,"i",(function(){return B})),o.d(t,"G",(function(){return w})),o.d(t,"F",(function(){return T})),o.d(t,"A",(function(){return z})),o.d(t,"h",(function(){return E})),o.d(t,"D",(function(){return k})),o.d(t,"f",(function(){return H})),o.d(t,"b",(function(){return F})),o.d(t,"n",(function(){return R})),o.d(t,"l",(function(){return M})),o.d(t,"k",(function(){return L})),o.d(t,"m",(function(){return W})),o.d(t,"B",(function(){return I})),o.d(t,"e",(function(){return N})),o.d(t,"v",(function(){return A})),o.d(t,"u",(function(){return D})),o.d(t,"y",(function(){return V})),o.d(t,"w",(function(){return $})),o.d(t,"x",(function(){return G})),o.d(t,"t",(function(){return U})),o.d(t,"p",(function(){return K})),o.d(t,"q",(function(){return q})),o.d(t,"s",(function(){return Y})),o.d(t,"r",(function(){return X}));var n=o(2),a=o(75),r=o(37),i={"wrapper--iconText":{showToolbar:"on"},"wrapper--form2":{showToolbar:"on"},"wrapper--login":{showToolbar:"on"},"wrapper--tabs":{showToolbar:"on"},"wrapper--timeline":{showToolbar:"on"},"wrapper--table":{showToolbar:"on"},"wrapper--accordion":{showToolbar:"on"},"wrapper--imageGallery":{showToolbar:"on"},"wrapper--menu":{showToolbar:"on"},"wrapper--video-playlist":{showToolbar:"on"},"wrapper--switcher":{showToolbar:"on"},"wrapper--spacer":{marginTop:0,marginBottom:0,tabletMarginTop:0,tabletMarginBottom:0,mobileMarginTop:0,mobileMarginBottom:0},"wrapper--carousel":{showToolbar:"on"},"wrapper--posts":{showToolbar:"on",paddingType:"ungrouped",paddingTop:10,paddingBottom:10,paddingLeft:15,paddingRight:15},"column--carousel":{width:100},"richText--carousel":{text:"<p class='brz-tp-paragraph brz-text-lg-center'><span class='brz-cp-color7'>No matter if you've used a visual page builder before, with Brizy you'll be a pro the second you start using it.</span></p>"},"hide-row-borders":{showToolbar:"off"},"padding-0":{padding:0},submit:{type:"submit"},search:{type:"search"},"posts--column":{width:100},"posts--archives":{type:"archives",taxonomy:"template",taxonomyId:"main_query",pagination:"on"},"posts--archives-product":{type:"archives-product",taxonomy:"template",taxonomyId:"main_query",pagination:"on"},"image--dynamic":{imagePopulation:"{{brizy_dc_img_featured_image}}"},"button--dynamic":{linkExternalType:"linkPopulation",linkPopulation:"{{brizy_dc_url_post}}",text:"READ MORE",borderRadius:2,borderWidth:2,fontSize:11,paddingBottom:11,paddingLeft:26,paddingRL:26,paddingRight:26,paddingTB:11,paddingTop:11,size:"small",tempPaddingBottom:11,tempPaddingLeft:26,tempPaddingRL:26,tempPaddingRight:26,tempPaddingTB:11,tempPaddingTop:11,mobileBorderRadius:2,mobilePaddingBottom:11,mobilePaddingLeft:26,mobilePaddingRight:26,mobilePaddingTop:11,mobileSize:"small"},"richText-title--dynamic":{text:"<p class='brz-text-lg-center brz-tp-heading4'><span class='brz-cp-color2'><span class='text-population' data-population='brizy_dc_post_title'>#Post Title</span>&nbsp;</span></p>"},"richText-desc--dynamic":{text:"<p class='brz-text-lg-center brz-tp-paragraph'><span class='brz-cp-color7'><span class='text-population' data-population='brizy_dc_post_excerpt'>#Post Excerpt</span></span></p>"},"wrapper--facebookComments":{showToolbar:"on"},"story-map":{size:90,height:70,heightSuffix:"%",elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:31,offsetYSuffix:"%",offsetYAlignment:"top"},"story-progressBar":{width:90,elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:48,offsetYSuffix:"%",offsetYAlignment:"top"},"story-line":{width:90,elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:49,offsetYSuffix:"%",offsetYAlignment:"top"},"story-countdown2":{width:90,height:10,heightSuffix:"%",elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:45,offsetYSuffix:"%",offsetYAlignment:"top"},"story-counter":{width:50,elementPosition:"fixed",offsetX:39,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:45,offsetYSuffix:"%",offsetYAlignment:"top"},"story-embedCode":{width:90,elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:33,offsetYSuffix:"%",offsetYAlignment:"top"},"story-image":{width:90,height:70,elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:36,offsetYSuffix:"%",offsetYAlignment:"top"},"story-starRating":{elementPosition:"fixed",offsetX:33,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:49,offsetYSuffix:"%",offsetYAlignment:"top"},"story-icon":{elementPosition:"fixed",customSize:20,offsetX:40,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:44,offsetYSuffix:"%",offsetYAlignment:"top",customSizeSuffix:"%",hoverColorHex:null,hoverColorOpacity:null,hoverColorPalette:null,tempHoverColorOpacity:null,tempHoverColorPalette:null,hoverGradientActivePointer:null,hoverGradientStartPointer:null,hoverGradientFinishPointer:null,hoverGradientType:null,hoverGradientLinearDegree:null,hoverGradientRadialDegree:null,hoverBgColorType:null,hoverBgColorHex:null,hoverBgColorOpacity:null,hoverBgColorPalette:null,tempHoverBgColorOpacity:null,tempHoverBgColorPalette:null,hoverGradientColorHex:null,hoverGradientColorOpacity:null,hoverGradientColorPalette:null,tempHoverGradientColorOpacity:null,tempHoverGradientColorPalette:null,hoverBorderColorHex:null,hoverBorderColorOpacity:null,hoverBorderColorPalette:null,tempHoverBorderColorOpacity:null,tempHoverBorderColorPalette:null},"story-video":{size:90,elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:34,offsetYSuffix:"%",offsetYAlignment:"top"},"story-richText":{width:90,elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:46,offsetYSuffix:"%",offsetYAlignment:"top"},"story-button":{paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0,elementPosition:"fixed",offsetX:30,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:46,offsetYSuffix:"%",offsetYAlignment:"top",width:40,widthSuffix:"%",height:30,heightSuffix:"%"},"wrapper--story-form2":{showToolbar:"on"},"story-form2":{width:80,widthSuffix:"%",elementPosition:"fixed",offsetX:10,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:20,offsetYSuffix:"%",offsetYAlignment:"top"}},l=o(53),s=o(14),c=o(51),d=o(107),u=o(44);function p(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function b(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?p(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):p(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const m=e=>e.screenshots||{},h=e=>e.globalBlocks||{},g=e=>e.changedGBIds||{},v=e=>e.blocksData||{},f=e=>e.blocksOrder||[],y=e=>e.project||{},O=e=>e.styles||[],S=e=>e.ui||{},C=e=>e.currentStyle,x=e=>e.error,j=Object(a.createSelector)(u.c,e=>Object.entries(e).reduce((e,t)=>{const[o,{data:n=[]}]=t;return b(b({},e),{},{[""+o]:{data:n.filter(e=>!0!==e.deleted)}})},{})),B=Object(a.createSelector)(y,e=>e.data.disabledElements||[]),P=Object(a.createSelector)(u.d,e=>e.data||{}),w=(Object(a.createSelector)(u.d,e=>e.slug),Object(a.createSelector)(P,e=>e.triggers||[])),T=Object(a.createSelector)(P,e=>e.triggers?e.triggers.length:null),z=Object(a.createSelector)(P,e=>Number.isInteger(e.rulesAmount)?e.rulesAmount:null),E=Object(a.createSelector)(S,e=>e.deviceMode),k=Object(a.createSelector)(S,e=>e.showHiddenElements),H=Object(a.createSelector)(S,e=>e.currentRole),F=Object(a.createSelector)(f,h,(e,t)=>{const o=Object.keys(t),{top:n,bottom:a}=Object(d.g)(e,o);return e.filter(e=>!n.includes(e)&&!a.includes(e))}),_=Object(a.createSelector)(h,v,(e,t)=>Object.entries(e).reduce((e,[o,n])=>{if(!t[o])return e;return"SectionPopup"===t[o].type||"SectionPopup2"===t[o].type||(e[o]=n),e},{})),R=Object(a.createSelector)(u.d,h,f,_,(e,t,o,n)=>{const a=Number(e.id),r=o.filter(e=>!t[e]||Object(c.c)(t[e],a));return Object(d.f)(r,n)}),M=Object(a.createSelector)(h,v,m,(e,t,o)=>Object(l.e)(Object.entries(e).map(e=>{const[n,a]=e,i=t[n],s=o[n];return[n,Object(r.a)(a,e=>{e.data=b(b({},e.data),i),s&&Object.assign(e.data.value,s),Object(l.g)(e.data.value,e=>{e.type&&"GlobalBlock"!==e.type&&e.value&&e.value._id&&o[e.value._id]&&Object.assign(e.value,o[e.value._id])})})]}))),L=Object(a.createSelector)(h,v,(e,t)=>Object(l.e)(Object.entries(e).map(e=>{const[o,n]=e,a=t[o];if(!a)return e;return[o,Object(r.a)(n,e=>{e.data=a})]}))),W=Object(a.createSelector)(u.d,f,h,(e,t,o)=>{const n=Number(e.id);return t.reduce((e,t)=>(o[t]&&Object(c.c)(o[t],n)&&(e[t]=o[t]),e),{})}),I=Object(a.createSelector)(C,u.b,(e,t)=>{const{colorPalette:o,fontStyles:n}=e,a=n.concat(t),r=o.reduce((e,t)=>b(b({},e),{},{[t.id+"__color"]:{colorHex:t.hex},[t.id+"__hoverColor"]:{hoverColorHex:t.hex},[t.id+"__bg"]:{bgColorHex:t.hex},[t.id+"__hoverBg"]:{hoverBgColorHex:t.hex},[t.id+"__gradient"]:{gradientColorHex:t.hex},[t.id+"__hoverGradient"]:{hoverGradientColorHex:t.hex},[t.id+"__bg2"]:{bg2ColorHex:t.hex},[t.id+"__border"]:{borderColorHex:t.hex},[t.id+"__hoverBorder"]:{hoverBorderColorHex:t.hex},[t.id+"__arrowsColor"]:{sliderArrowsColorHex:t.hex},[t.id+"__dotsColor"]:{sliderDotsColorHex:t.hex},[t.id+"__boxShadow"]:{boxShadowColorHex:t.hex},[t.id+"__shapeTopColor"]:{shapeTopColorHex:t.hex},[t.id+"__shapeBottomColor"]:{shapeBottomColorHex:t.hex},[t.id+"__paginationColor"]:{paginationColorHex:t.hex},[t.id+"__tabletBg"]:{tabletBgColorHex:t.hex},[t.id+"__tabletBorder"]:{tabletBorderColorHex:t.hex},[t.id+"__mobileBg"]:{mobileBgColorHex:t.hex},[t.id+"__mobileBorder"]:{mobileBorderColorHex:t.hex},[t.id+"__subMenuColor"]:{subMenuColorHex:t.hex},[t.id+"__subMenuHoverColor"]:{subMenuHoverColorHex:t.hex},[t.id+"__subMenuBgColor"]:{subMenuBgColorHex:t.hex},[t.id+"__subMenuHoverBgColor"]:{subMenuHoverBgColorHex:t.hex},[t.id+"__subMenuBorderColor"]:{subMenuBorderColorHex:t.hex},[t.id+"__mMenuColor"]:{mMenuColorHex:t.hex},[t.id+"__mMenuHoverColor"]:{mMenuHoverColorHex:t.hex},[t.id+"__mMenuBgColor"]:{mMenuBgColorHex:t.hex},[t.id+"__mMenuBorderColor"]:{mMenuBorderColorHex:t.hex},[t.id+"__mMenuIconColor"]:{mMenuIconColorHex:t.hex},[t.id+"__tabletMMenuIconColor"]:{tabletMMenuIconColorHex:t.hex},[t.id+"__mobileMMenuIconColor"]:{mobileMMenuIconColorHex:t.hex},[t.id+"__labelColor"]:{labelColorHex:t.hex},[t.id+"__checkboxColor"]:{checkboxColorHex:t.hex},[t.id+"__selectColor"]:{selectColorHex:t.hex},[t.id+"__hoverSelectColor"]:{hoverSelectColorHex:t.hex},[t.id+"__selectBg"]:{selectBgColorHex:t.hex},[t.id+"__hoverSelectBg"]:{hoverSelectBgColorHex:t.hex},[t.id+"__selectBorderColor"]:{selectBorderColorHex:t.hex},[t.id+"__hoverSelectBorderColor"]:{hoverSelectBorderColorHex:t.hex},[t.id+"__selectBoxShadow"]:{selectBoxShadowColorHex:t.hex},[t.id+"__hoverSelectBoxShadow"]:{hoverSelectBoxShadowColorHex:t.hex}}),{}),l=a.reduce((e,t)=>b(b({},e),{},{[t.id+"__fsDesktop"]:{fontFamily:t.fontFamily,fontFamilyType:t.fontFamilyType,fontSize:t.fontSize,fontWeight:t.fontWeight,lineHeight:t.lineHeight,letterSpacing:t.letterSpacing},[t.id+"__fsTablet"]:{tabletFontSize:t.tabletFontSize,tabletFontWeight:t.tabletFontWeight,tabletLineHeight:t.tabletLineHeight,tabletLetterSpacing:t.tabletLetterSpacing},[t.id+"__fsMobile"]:{mobileFontSize:t.mobileFontSize,mobileFontWeight:t.mobileFontWeight,mobileLineHeight:t.mobileLineHeight,mobileLetterSpacing:t.mobileLetterSpacing},[t.id+"__subMenuFsDesktop"]:{subMenuFontFamily:t.fontFamily,subMenuFontFamilyType:t.fontFamilyType,subMenuFontSize:t.fontSize,subMenuFontWeight:t.fontWeight,subMenuLineHeight:t.lineHeight,subMenuLetterSpacing:t.letterSpacing},[t.id+"__subMenuFsTablet"]:{tabletSubMenuFontSize:t.tabletFontSize,tabletSubMenuFontWeight:t.tabletFontWeight,tabletSubMenuLineHeight:t.tabletLineHeight,tabletSubMenuLetterSpacing:t.tabletLetterSpacing},[t.id+"__subMenuFsMobile"]:{mobileSubMenuFontSize:t.mobileFontSize,mobileSubMenuFontWeight:t.mobileFontWeight,mobileSubMenuLineHeight:t.mobileLineHeight,mobileSubMenuLetterSpacing:t.mobileLetterSpacing},[t.id+"__mMenuFsDesktop"]:{mMenuFontFamily:t.fontFamily,mMenuFontFamilyType:t.fontFamilyType,mMenuFontSize:t.fontSize,mMenuFontWeight:t.fontWeight,mMenuLineHeight:t.lineHeight,mMenuLetterSpacing:t.letterSpacing},[t.id+"__mMenuFsTablet"]:{tabletMMenuFontSize:t.tabletFontSize,tabletMMenuFontWeight:t.tabletFontWeight,tabletMMenuLineHeight:t.tabletLineHeight,tabletMMenuLetterSpacing:t.tabletLetterSpacing},[t.id+"__mMenuFsMobile"]:{mobileMMenuFontSize:t.mobileFontSize,mobileMMenuFontWeight:t.mobileFontWeight,mobileMMenuLineHeight:t.mobileLineHeight,mobileMMenuLetterSpacing:t.mobileLetterSpacing}}),{});return b(b(b({},i),r),l)}),N=Object(a.createSelector)(e=>e.copiedElement,L,(e,t)=>Object(r.a)(e,e=>{Object(l.g)(e,e=>{if(e.type&&"GlobalBlock"===e.type&&e.value){const{_id:o}=e.value;t[o]&&Object.assign(e,t[o].data)}})})),A=Object(a.createSelector)(f,h,v,(e,t,o)=>{const n=Object.keys(t);return e.map(e=>n.includes(e)?{type:"GlobalBlock",value:{_id:e}}:o[e])}),D=Object(a.createSelector)(F,h,v,(e,t,o)=>{const n=Object.keys(t);return e.map(e=>n.includes(e)?{type:"GlobalBlock",value:{_id:e}}:o[e])}),V=Object(a.createSelector)(y,u.c,O,e=>e.currentStyleId,C,u.b,(e,t,o,n,a,i)=>Object(r.a)(e,e=>{e.data.fonts=t,e.data.styles=o,e.data.selectedStyle=n,e.data.extraFontStyles=i;for(let t=0;t<e.data.styles.length;t++)e.data.styles[t].id===a.id&&(e.data.styles[t]=a)})),$=Object(a.createSelector)(P,A,(e,t)=>Object(r.a)(e,e=>{e.items=t})),G=Object(a.createSelector)($,L,(e,t)=>{return o=e,Object(s.p)(e=>{if("GlobalBlock"===e.type){var o;const{_id:n}=e.value;return null===(o=t[n])||void 0===o?void 0:o.data}return e},o);var o}),U=Object(a.createSelector)(G,e=>e.items||[]),K=(Object(a.createSelector)(U,e=>{const t=[];return Object(l.g)(e,e=>{e.popups&&t.push(...e.popups)}),t}),Object(a.createSelector)(u.d,D,m,(e,t,o)=>Object(r.a)(e,e=>{e.data.items=t,Object.keys(o).length>0&&Object(l.g)(e,e=>{e.type&&"GlobalBlock"!==e.type&&e.value&&e.value._id&&o[e.value._id]&&Object.assign(e.value,o[e.value._id])})}))),q=Object(a.createSelector)(u.d,A,m,(e,t,o)=>Object(r.a)(e,e=>{e.data.items=t,Object.keys(o).length>0&&Object(l.g)(e,e=>{e.type&&"GlobalBlock"!==e.type&&e.value&&e.value._id&&o[e.value._id]&&Object.assign(e.value,o[e.value._id])})})),Y=Object(a.createSelector)(A,m,(e,t)=>Object(r.a)(e,e=>{Object.keys(t).length>0&&Object(l.g)(e,e=>{e.type&&"GlobalBlock"!==e.type&&e.value&&e.value._id&&t[e.value._id]&&Object.assign(e.value,t[e.value._id])})})),X=Object(a.createSelector)(u.d,A,h,m,(e,t,o,n)=>{const a=Number(e.id),i=t.filter(e=>{if("GlobalBlock"===e.type){const{_id:t}=e.value;return Object(c.c)(o[t],a)}return!0});return Object(r.a)(i,e=>{Object.keys(n).length>0&&Object(l.g)(e,e=>{e.type&&"GlobalBlock"!==e.type&&e.value&&e.value._id&&n[e.value._id]&&Object.assign(e.value,n[e.value._id])})})})},function(e,t,o){"use strict";(function(e){var n=o(31),a=o(2),r=o(0),i=o.n(r),l=o(8),s=o(5),c=o.n(s),d=o(104),u=o(57),p=o(23),b=o(19),m=o(105),h=o(53),g=o(138),v=o(25),f=o(7),y=o(30),O=o(113),S=o(155),C=o(551),x=o(438),j=o(41),B=o(94),P=o(439);function w(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function T(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?w(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):w(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const z=["currentStyleId","currentStyle","extraFontStyles","fonts","copiedElement"];class E extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"_defaultValueProcessedCache",void 0),Object(a.a)(this,"_dynamicContentPending",void 0),Object(a.a)(this,"childToolbarExtend",void 0),Object(a.a)(this,"bindPatchValue",e=>this.patchValue(e)),Object(a.a)(this,"makeWrapperProps",e=>{var t;const o=null!==(t=this.props.wrapperExtend)&&void 0!==t?t:{},n=c()(o.className,e.className),a=T(T({},o.attributes||{}),e.attributes||{});return T(T(T(T({},o),e),{},{className:n,attributes:a,id:this.getId(),meta:this.props.meta,componentId:this.constructor.componentId},this.getValue2()),{},{onChange:this.bindPatchValue,ref:t=>{Object(B.a)(t,o.ref||null),Object(B.a)(t,e.ref||null)}})})}static get componentId(){throw new Error(this.name+" must implement `static get componentId()`")}getComponentId(){return this.constructor.componentId}optionalSCU(e){const t=this.props;if(t.dbValue!==e.dbValue)return!0;const o=this.props.meta,n=e.meta;if((null==o?void 0:o.mobileW)!==(null==n?void 0:n.mobileW)||(null==o?void 0:o.tabletW)!==(null==n?void 0:n.tabletW)||(null==o?void 0:o.desktopW)!==(null==n?void 0:n.desktopW))return!0;for(const o of z)if(t.reduxState[o]!==e.reduxState[o])return!0;const a=t.path||[],r=e.path||[];if(a.length!==r.length)return!0;for(let e=0,t=a.length;e<t;e++)if(a[e]!==r[e])return!0;return!1}getId(){return this.props._id||j.c(this.getDBValue()._id)||(()=>{throw new Error("This should never happen. An initialized component must have a preset id")})()}getPath(){return this.props.path||[]}getReduxState(){return this.props.reduxState}getReduxDispatch(){return this.props.reduxDispatch}getDefaultValue(){const e=Object(h.d)(this.constructor.defaultValue);return this.props.defaultValue?T(T({},e),this.props.defaultValue):e}getDefaultValueProcessed(){if(this._defaultValueProcessedCache)return this._defaultValueProcessedCache;const e=this.getDefaultValue();return this._defaultValueProcessedCache={defaultValue:e,dynamicContentKeys:Object.keys(e).reduce((e,t)=>(t.endsWith("Population")&&e.push([t.replace("Population",""),t]),e),[])},this._defaultValueProcessedCache}getDBValue(){return this.props.dbValue}getStylesValue(){const{_styles:e}=this.getDBValue()||{},t=Object(b.B)(this.getReduxState());return e&&t?e.reduce((e,o)=>t[o]?Object.assign(e,t[o]):e,{}):null}getDCValue(e){const t=this.getDefaultValueProcessed().dynamicContentKeys;let o=!1;const n={};for(let a=0;a<t.length;a++){const[r,i]=t[a],l=j.d(e[i]);l&&(o=!0,n[r]=l)}if(o){const e=Object(x.a)(n);var a;return"incomplete"===e.type?(null===(a=this._dynamicContentPending)||void 0===a||a.abortGetComplete(),this._dynamicContentPending=e,this._dynamicContentPending.getComplete().then(()=>{this._dynamicContentPending=void 0,this.forceUpdate()}).catch(()=>{}),e.partial):e.obj}return{}}getValue(){return this.getValue2().v}getValue2(){const e=this.getDefaultValue(),t=this.getStylesValue(),o=this.getDBValue(),n=T(T(T({},e),t),o);return{v:this.constructor.experimentalDynamicContent?Object.assign(n,this.getDCValue(n)):n,vs:T(T({},e),t),vd:e}}patchValue(e,t={}){const o=T(T({},this.getDBValue()),e);this.handleValueChange(o,T(T({},t),{},{patch:e}))}validateValue(e){const t=this.getDefaultValue(),o=Object.keys(e).filter(e=>{const o=e in t,n="_"===e[0]||["tabsState"].includes(e),a=["tabsCurrentElement"].includes(e);return!o&&!n&&!a});o.length&&console.error(`${this.constructor.componentId} element\n\nKeys not in defaultValue:\n${JSON.stringify(o,null,2)}\n \nTried to update with:\n${JSON.stringify(e,(e,t)=>Array.isArray(t)?"[...]":t,2)}`)}handleValueChange(e,t){this.props.onChange(e,t)}selfDestruct(){this.props.onChange(null,{intent:"remove_all"})}makeSubcomponentProps(e){let{bindWithKey:t}=e,o=Object(n.a)(e,["bindWithKey"]);const a=this.getDefaultValue(),r=this.getDBValue();return T(T({},o),{},{_id:`${this.getId()}-${t}`,path:[...this.getPath(),t],defaultValue:a&&a[t],dbValue:r&&r[t],reduxState:this.getReduxState(),reduxDispatch:this.getReduxDispatch(),onChange:(e,o)=>this.patchValue({[t]:e},o)})}makeContextMenuProps(e,t={}){const o=this.getComponentId(),n=this.getValue();return T({id:Object(u.a)(3),componentId:o,items:e.getItems(n,this)},t)}makeToolbarPropsFromConfig(t,o,n={}){const{onToolbarOpen:a,onToolbarClose:r,onToolbarEnter:i,onToolbarLeave:l}=this.props,{allowExtendFromParent:s,parentItemsFilter:c,allowExtendFromChild:u,allowExtendFromThirdParty:h,thirdPartyExtendId:g=this.getComponentId(),allowSidebarExtendFromParent:v,allowSidebarExtendFromChild:y,allowSidebarExtendFromThirdParty:S,sidebarThirdPartyExtendId:C=g}=Object(O.c)(n);return{getItems:(e=Object(b.h)(Object(p.b)().getState()))=>{var o;const n="getItemsFor"+(([e,...t],o=!1)=>e.toUpperCase()+(o?t.join("").toLowerCase():t.join("")))(e,!0);const a=t[n],r=this.getValue(),i=f.e(r.tabsState);let l=this.bindToolbarItems(r,e,i,null!==(o=null==a?void 0:a(r,this))&&void 0!==o?o:[]);if(s&&this.props.toolbarExtend){const{getItems:t}=this.props.toolbarExtend;let o=t(e);"function"==typeof c&&(o=c(o)),l=Object(d.b)(l,o)}if(u&&this.childToolbarExtend){const{getItems:t}=this.childToolbarExtend,o=t(e);l=Object(d.b)(o,l)}if(h){const t=Object(m.b)("toolbarItemsExtend_"+g,null);if(null==t?void 0:t[n]){const o=this.bindToolbarItems(r,e,i,t[n](r,this));l=Object(d.b)(l,o)}}return l},getSidebarItems:(e=Object(b.h)(Object(p.b)().getState()))=>{var t,n;const a=this.getValue(),r=f.e(a.tabsState);let i=this.bindToolbarItems(a,e,r,(null==o||null===(t=o.getItems)||void 0===t?void 0:t.call(o,{v:a,component:this,device:e,state:r}))||[]);if(v&&(null===(n=this.props.toolbarExtend)||void 0===n?void 0:n.getSidebarItems)){const{getSidebarItems:t}=this.props.toolbarExtend,o=t(e);i=Object(d.b)(i,o)}if(y&&this.childToolbarExtend){const{getSidebarItems:t}=this.childToolbarExtend,o=t(e);i=Object(d.b)(o,i)}if(S){const t=Object(m.b)("sidebarItemsExtend_"+C,null);if(null==t?void 0:t.getItems){const o=this.bindToolbarItems(a,e,r,t.getItems({v:a,component:this,device:e,state:r}));i=Object(d.b)(i,o)}}return i},getSidebarTitle:()=>{let e=null==o?void 0:o.title;if("function"==typeof e){e=e({v:this.getValue()})}if(v&&this.props.toolbarExtend){const{getSidebarTitle:t}=this.props.toolbarExtend;e=t()||e}if(y&&this.childToolbarExtend){const{getSidebarTitle:t}=this.childToolbarExtend;e=t()||e}return e||""},onBeforeOpen:()=>{e.Brizy.activeEditorComponent=this},onBeforeClose:()=>{e.Brizy.activeEditorComponent=null},onOpen:a,onClose:r,onMouseEnter:i,onMouseLeave:l}}bindToolbarItems(e,t,o,n){return Object(d.c)(n=>{const{id:a,type:r,onChange:i}=n,s=e=>this.patchValue({tabsState:e});y.e===t&&(n=Object(g.a)(P.a,o,s,n));const c=Object(O.b)(r),d=n.dependencies||l.default.identity;return c&&(n.id=Object(v.a)({key:n.id,device:Object(O.d)(t,n),state:Object(O.e)(o,n)}),n.value=Object(S.b)(r)(n=>Object(v.b)({v:e,key:Object(O.a)(a,n),device:t,state:o}))),n.onChange=(e,t)=>{const o=c?d(Object(O.f)(n.id,e)):i?i(e,t):((e,t)=>void 0!==t?{[e]:t}:null)(n.id,e);o&&this.patchValue(o)},n},Object(d.c)(C.a,n))}makeToolbarPropsFromConfig2(t,o,n={}){const{onToolbarOpen:a,onToolbarClose:r,onToolbarEnter:i,onToolbarLeave:l}=this.props,{allowExtendFromParent:s,parentItemsFilter:c,parentExtendProp:u="toolbarExtend",allowExtendFromChild:h,allowExtendFromThirdParty:g,thirdPartyExtendId:v=this.getComponentId(),allowSidebarExtendFromParent:y,allowSidebarExtendFromChild:S,allowSidebarExtendFromThirdParty:C,sidebarThirdPartyExtendId:x=v}=Object(O.c)(n);return{getItems:(e=Object(b.h)(Object(p.b)().getState()))=>{var o;const n=this.getValue(),a=f.e(n.tabsState);let r=this.bindToolbarItems(n,e,a,null!==(o=null==t?void 0:t.getItems({v:n,component:this,device:e,state:a}))&&void 0!==o?o:[]);if(s&&this.props[u]){const{getItems:t}=this.props[u];let o=t(e);"function"==typeof c&&(o=c(o)),r=Object(d.b)(r,o)}if(h&&this.childToolbarExtend){const{getItems:t}=this.childToolbarExtend,o=t(e);r=Object(d.b)(o,r)}if(g){const t=Object(m.b)("toolbarItemsExtend_"+v,null);if(null==t?void 0:t.getItems){const o=this.bindToolbarItems(n,e,a,t.getItems({v:n,component:this,device:e,state:a}));r=Object(d.b)(r,o)}}return r},getSidebarItems:(e=Object(b.h)(Object(p.b)().getState()))=>{var t,n;const a=this.getValue(),r=f.e(a.tabsState);let i=this.bindToolbarItems(a,e,r,(null==o||null===(t=o.getItems)||void 0===t?void 0:t.call(o,{v:a,component:this,device:e,state:r}))||[]);if(y&&(null===(n=this.props[u])||void 0===n?void 0:n.getSidebarItems)){const{getSidebarItems:t}=this.props[u],o=t(e);i=Object(d.b)(i,o)}if(S&&this.childToolbarExtend){const{getSidebarItems:t}=this.childToolbarExtend,o=t(e);i=Object(d.b)(o,i)}if(C){const t=Object(m.b)("sidebarItemsExtend_"+x,null);if(null==t?void 0:t.getItems){const o=this.bindToolbarItems(a,e,r,t.getItems({v:a,component:this,device:e,state:r}));i=Object(d.b)(i,o)}}return i},getSidebarTitle:()=>{let e=null==o?void 0:o.title;if("function"==typeof e){e=e({v:this.getValue()})}if(y&&this.props.toolbarExtend){const{getSidebarTitle:t}=this.props.toolbarExtend;e=t()||e}if(S&&this.childToolbarExtend){const{getSidebarTitle:t}=this.childToolbarExtend;e=t()||e}return e||""},onBeforeOpen:()=>{e.Brizy.activeEditorComponent=this},onBeforeClose:()=>{e.Brizy.activeEditorComponent=null},onOpen:a,onClose:r,onMouseEnter:i,onMouseLeave:l}}render(){const{v:e,vs:t,vd:o}=this.getValue2();return this.renderForEdit(e,t,o)}renderForEdit(e,t,o){throw"renderForEdit: Not Implemented"}renderForView(e,t,o){return this.renderForEdit(e,t,o)}applyRulesToValue(e,t){const o=t.filter(Boolean);if(0===o.length)return e;const n=this.getRulesValue(o);return l.default.defaults(n,e)}getRulesValue(e){const t=Object(b.B)(this.getReduxState());if(t)return e.reduce((e,o)=>{let n;switch(typeof o){case"object":{const{rule:e,mapper:a}=o;n=t[e]&&a(t[e]);break}case"string":n=t[o];break;default:throw new Error("Invalid rule type")}return n?Object.assign(e,n):e},{})}}Object(a.a)(E,"defaultProps",{onToolbarOpen:l.default.noop,onToolbarClose:l.default.noop,onToolbarEnter:l.default.noop,onToolbarLeave:l.default.noop}),Object(a.a)(E,"defaultValue",{}),Object(a.a)(E,"experimentalDynamicContent",!1),t.a=E}).call(this,o(86))},function(e,t,o){"use strict";o.d(t,"I",(function(){return H})),o.d(t,"F",(function(){return F})),o.d(t,"w",(function(){return _})),o.d(t,"X",(function(){return R})),o.d(t,"a",(function(){return M})),o.d(t,"H",(function(){return L})),o.d(t,"u",(function(){return W})),o.d(t,"V",(function(){return I})),o.d(t,"W",(function(){return N})),o.d(t,"x",(function(){return A})),o.d(t,"q",(function(){return D})),o.d(t,"e",(function(){return V})),o.d(t,"R",(function(){return $})),o.d(t,"S",(function(){return G})),o.d(t,"T",(function(){return U})),o.d(t,"k",(function(){return K})),o.d(t,"r",(function(){return q})),o.d(t,"P",(function(){return Y})),o.d(t,"Q",(function(){return X})),o.d(t,"G",(function(){return Z})),o.d(t,"C",(function(){return J})),o.d(t,"L",(function(){return Q})),o.d(t,"t",(function(){return ee})),o.d(t,"D",(function(){return te})),o.d(t,"E",(function(){return oe})),o.d(t,"l",(function(){return ne})),o.d(t,"v",(function(){return ae})),o.d(t,"m",(function(){return re})),o.d(t,"K",(function(){return ie})),o.d(t,"J",(function(){return le})),o.d(t,"n",(function(){return se})),o.d(t,"b",(function(){return ce})),o.d(t,"M",(function(){return de})),o.d(t,"z",(function(){return ue})),o.d(t,"y",(function(){return pe})),o.d(t,"g",(function(){return be})),o.d(t,"i",(function(){return me})),o.d(t,"B",(function(){return he})),o.d(t,"A",(function(){return ge})),o.d(t,"h",(function(){return ve})),o.d(t,"j",(function(){return fe}));var n=o(31),a=o(2),r=o(40),i=o.n(r),l=o(218),s=o.n(l),c=o(17),d=o(14),u=o(70);function p(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function b(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?p(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):p(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const m=e=>{let t;if(!e.data)throw new u.h("Project data should exist");try{t=JSON.parse(e.data)}catch(t){throw new u.h("Failed to parse project data "+e.data)}return b(b({},e),{},{data:t})},h=e=>{let t;if(e.data)try{t=JSON.parse(e.data)}catch(t){throw new u.g("Failed to parse page "+e.data)}else t={};return b(b({},e),{},{id:e.id,data:t})},g=e=>{let t=JSON.stringify(e.data);return b(b({},e),{},{data:t})},v=e=>{let t,o,n,a,r;if(!e.data)throw new u.b("globalBlock data should exist");try{t=JSON.parse(e.data)}catch(t){throw new u.b("Failed to parse globalBlock data "+e.data)}if(e.meta)try{o=JSON.parse(e.meta)}catch(e){o={}}else o={};if(e.rules)try{n=d.i?e.rules:JSON.parse(e.rules)}catch(e){throw new u.b("globalBlock rules are wrong")}else n=[];if(e.position)try{a=d.i?e.position:JSON.parse(e.position)}catch(e){throw new u.b("globalBlock position are wrong")}else a={};return r=e.status?e.status:"publish",b(b({},e),{},{data:t,meta:o,position:a,status:r,rules:n})},f=e=>{const t=JSON.stringify(e.data),o=JSON.stringify(e.meta),n=JSON.stringify(e.rules);return b(b({},e),{},{data:t,meta:o,rules:n})};var y=o(87),O=o(114);const S=({models:e,globalBlocks:t})=>{const o=new Set;return Object(y.d)(e,{Component({type:e,value:t}){const n=Object(O.a)(e).content||{};Object.entries(n.images||{}).forEach(([e,n])=>{const a=t[e]||n;a&&o.add(a)})},GlobalBlock({value:{_id:e}}){const n=t&&t[e];n&&S({models:n}).forEach(e=>{o.add(e)})}}),[...o]};function C(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function x(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?C(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):C(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const j=e=>{const t=JSON.stringify(e.data),o=JSON.stringify(e.meta);return x(x({},e),{},{data:t,meta:o})},B=e=>{let t;if(e.meta)try{t=JSON.parse(e.meta)}catch(e){t={}}else t={};return x(x({},e),{},{meta:t})},P=e=>{const{data:t,meta:o}=e,{extraFontStyles:n}=o,a=Object(y.b)({models:t}),r=S({models:t}),i=Object(y.c)(n),l=new Set;return[...a,...i].forEach(({family:e,type:t})=>{"upload"===t&&l.add(e)}),JSON.stringify({images:r,fonts:[...l]})};function w(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function T(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?w(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):w(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const z=c.a.get("wp").api.url;function E(e,t){const{hash:o,url:n}=c.a.get("wp").api,a=c.a.get("editorVersion"),r=T(T({},t),{},{action:e,hash:o,version:a});return new s.a((e,t)=>i.a.post(n,r).done(e).fail(e=>t(e.responseText)))}function k(e){const{hash:t,url:o}=c.a.get("wp").api,a=c.a.get("editorVersion"),{data:r}=e,l=Object(n.a)(e,["data"]);return new s.a((e,n)=>{i.a.ajax(T(T({url:o},l),{},{data:"object"==typeof r&&null!==r?T(T({},r),{},{hash:t,version:a}):r,onbeforeunload:()=>"You have unsaved data.",failedAttempts:0,success(t){this.failedAttempts=0,window.onbeforeunload=null,e(t)},error(e){const{status:t,responseJSON:o}=e;0===t?(this.failedAttempts++,window.onbeforeunload=this.onbeforeunload,this.failedAttempts<=5&&setTimeout(()=>i.a.ajax(this),5e3*this.failedAttempts)):n(o)}}))})}function H(e,t={}){return fetch(e,t)}function F(e=650){return new s.a(t=>{setTimeout(()=>{t(!0)},e)})}function _(){const{getProject:e}=c.a.get("wp").api;return k({type:"POST",dataType:"json",data:{action:e}}).then(({data:e})=>e).then(m)}function R(e,t={}){const{setProject:o}=c.a.get("wp").api,{is_autosave:n=1}=t,{data:a,dataVersion:r}=(e=>{let t=JSON.stringify(e.data);return b(b({},e),{},{data:t})})(e);return k({type:"POST",dataType:"json",data:{data:a,dataVersion:r,is_autosave:n,action:o}})}function M(){const{url:e,hash:t,lockProject:o}=c.a.get("wp").api,n=c.a.get("editorVersion");return H(e,{method:"POST",body:new URLSearchParams({version:n,hash:t,action:o})}).then(e=>e.json()).then(e=>{if(e.success)return e.data;throw e})}function L(){const{removeLock:e}=c.a.get("wp").api,t=c.a.get("editorVersion"),o=new URL(z);return o.searchParams.append("action",e),o.searchParams.append("version",t),navigator.sendBeacon(""+o)}function W(){const e=c.a.get("wp").api;return k({type:"POST",dataType:"json",data:{id:c.a.get("wp").page,action:e.getPage}}).then(({data:e})=>e.map(h))}function I(e,t={}){const{updatePage:o}=c.a.get("wp").api,{is_autosave:n=1}=t;return k({type:"POST",dataType:"json",data:T(T({action:o},g(e)),{},{is_autosave:n})})}function N(e){const{api:{updateRules:t,hash:o,url:n},page:a}=c.a.get("wp"),{rules:r,dataVersion:i}=e;return H(`${n}?action=${t}&hash=${o}&post=${a}&version=${c.a.get("editorVersion")}&dataVersion=${i}`,{method:"POST",credentials:"same-origin",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)})}function A(){const{api:{getRuleList:e,hash:t,url:o},page:n}=c.a.get("wp"),a=c.a.get("editorVersion");return H(o,{method:"POST",body:new URLSearchParams({action:e,post:n,version:a,hash:t})}).then(e=>e.json()).then(({data:e})=>e)}function D(){const{getGlobalBlockList:e}=c.a.get("wp").api;return k({type:"POST",dataType:"json",data:{action:e}}).then(({data:e})=>e.map(v).reduce((e,{uid:t,data:o,status:n,dataVersion:a,rules:r,position:i,meta:l})=>("draft"===n||(e[t]={data:o,status:n,dataVersion:a,meta:l,rules:r,position:i,id:t}),e),{}))}function V(e){const{createGlobalBlock:t}=c.a.get("wp").api,o=e.data.value._id,{data:n,rules:a,dataVersion:r,meta:i}=f(e);return k({type:"POST",dataType:"json",data:{uid:o,status:"draft",data:n,dataVersion:r,rules:a,meta:i,media:P(e),action:t}})}function $(e,t,o={}){const{updateGlobalBlock:n}=c.a.get("wp").api,{is_autosave:a=1}=o,{data:r,rules:i,dataVersion:l,meta:s,status:d}=f(t);return k({type:"POST",dataType:"json",data:{uid:e,status:d,data:r,dataVersion:l,rules:i,is_autosave:a,meta:s,action:n}})}function G(e,t={}){const{updateGlobalBlocks:o}=c.a.get("wp").api,{is_autosave:n=1}=t,a=Object.entries(e).reduce((e,[t,o])=>{const{data:n,position:a,rules:r,dataVersion:i,meta:l,status:s}=f(o);return e.uid.push(t),e.status.push(s),e.data.push(n),e.position.push(JSON.stringify(a)),e.dataVersion.push(i),e.rules.push(r),e.meta.push(l),e},{uid:[],status:[],data:[],position:[],dataVersion:[],rules:[],meta:[]});return k({type:"POST",dataType:"json",data:{uid:a.uid,status:a.status,data:a.data,position:a.position,dataVersion:a.dataVersion,rules:a.rules,is_autosave:n,meta:a.meta,action:o}})}function U(e,t={}){const{updateBlockPositions:o,hash:n,url:a}=c.a.get("wp").api,r=c.a.get("editorVersion"),{is_autosave:i=1}=t;return k({type:"POST",url:`${a}?action=${o}&hash=${n}&is_autosave=${i}&version=${r}`,dataType:"json",contentType:"application/json",data:JSON.stringify(e)})}function K(e){const{api:t,page:o}=c.a.get("wp"),n={post_id:o,media:e};return E(t.downloadMedia,n).then(({data:e})=>e)}function q(e){const{api:t,page:o}=c.a.get("wp"),n={post_id:o,attachment_id:e};return E(t.getMediaUid,n).then(({data:e})=>e)}function Y(e,t){return E(c.a.get("wp").api.setFeaturedImage,{post:e,attachmentId:t})}function X(e,t,o,n){return E(c.a.get("wp").api.setFeaturedImageFocalPoint,{post:e,attachmentId:t,pointX:o,pointY:n})}function Z(e){return E(c.a.get("wp").api.removeFeaturedImage,{post:e})}function J(){return E(c.a.get("wp").api.getSidebars,{}).then(({data:e})=>e)}function Q(e){return E(c.a.get("wp").api.shortcodeContent,{shortcode:e}).then(({data:e})=>e)}function ee(){return E(c.a.get("wp").api.getMenus,{}).then(({data:e})=>e)}function te(e){return E(c.a.get("wp").api.getTerms,{taxonomy:e}).then(({data:e})=>e)}function oe(){return E(c.a.get("wp").api.getFonts,{}).then(({data:e})=>e)}function ne(e){const t={attachment_id:e};return E(c.a.get("wp").api.getAttachmentUid,t).then(({data:e})=>e)}function ae(e){return E(c.a.get("wp").api.getPostObjects,{postType:e}).then(({data:e})=>e)}function re(){return E(c.a.get("wp").api.getRuleGroupList,{context:"popup-rules"}).then(({data:e})=>e)}function ie(){const{url:e,hash:t,heartBeat:o}=c.a.get("wp").api,n=c.a.get("editorVersion");return H(e,{method:"POST",body:new URLSearchParams({action:o,version:n,hash:t})}).then(e=>e.json()).then(e=>{if(e.success)return e.data;throw e})}function le(){const{url:e,hash:t,takeOver:o}=c.a.get("wp").api,n=c.a.get("editorVersion");return H(e,{method:"POST",body:new URLSearchParams({action:o,version:n,hash:t})}).then(e=>e.json()).then(e=>{if(e.success)return e.data;throw e})}const se=({placeholders:e,signal:t,postId:o})=>{const{page:n,api:{url:a,hash:r,placeholderContent:i}}=c.a.get("wp"),l=c.a.get("editorVersion"),s=new URLSearchParams({action:i,post_id:o||n,version:l,hash:r});for(const t of e)s.append("placeholders[]",t);return H(a,{method:"POST",body:s,signal:t}).then(e=>{if(!e.ok)throw new Error("fetch dynamic content error");return e.json()}).then(e=>{if(e.success)return e.data.placeholders;throw new Error("fetch dynamic content error")})},ce=({base64:e,blockType:t})=>{const{page:o,api:{url:n,hash:a,createBlockScreenshot:r}}=c.a.get("wp"),i=c.a.get("editorVersion"),l=e.replace(/data:image\/.+;base64,/,"");return H(n,{method:"POST",body:new URLSearchParams({action:r,post:o,version:i,hash:a,block_type:t,ibsf:l})}).then(e=>e.json()).then(e=>{if(e.success)return e.data;throw e})},de=({id:e,base64:t,blockType:o})=>{const{page:n,api:{url:a,hash:r,updateBlockScreenshot:i}}=c.a.get("wp"),l=c.a.get("editorVersion"),s=t.replace(/data:image\/.+;base64,/,"");return H(a,{method:"POST",body:new URLSearchParams({action:i,post:n,version:l,hash:r,block_type:o,id:e,ibsf:s})}).then(e=>e.json()).then(e=>{if(e.success)return e.data;throw e})},ue=()=>{const{getSavedBlockList:e}=c.a.get("wp").api;return k({type:"POST",dataType:"json",data:{action:e,fields:["uid","meta","synchronized","synchronizable"]}}).then(({data:e})=>e.map(B))},pe=e=>{const{getSavedBlockByUid:t}=c.a.get("wp").api;return k({type:"POST",dataType:"json",data:{uid:e,action:t}}).then(({data:e})=>(e=>{let t,o;if(!e.data)throw new u.i("savedBlock data should exist");try{t=JSON.parse(e.data)}catch(t){throw new u.i("Failed to parse savedBlock data "+e.data)}if(e.meta)try{o=JSON.parse(e.meta)}catch(e){o={}}else o={};return x(x({},e),{},{data:t,meta:o})})(e))},be=e=>{const{createSavedBlock:t}=c.a.get("wp").api,{uid:o,data:n,dataVersion:a,meta:r}=j(e);return k({type:"POST",dataType:"json",data:{uid:o,data:n,meta:r,media:P(e),dataVersion:a,action:t}})},me=e=>{const{deleteSavedBlock:t}=c.a.get("wp").api;return k({type:"POST",dataType:"json",data:{uid:e,action:t}})},he=()=>{const{getLayoutList:e}=c.a.get("wp").api;return k({type:"POST",dataType:"json",data:{action:e,fields:["uid","meta","synchronized","synchronizable"]}}).then(({data:e})=>e.map(B))},ge=e=>{const{getLayoutByUid:t}=c.a.get("wp").api;return k({type:"POST",dataType:"json",data:{uid:e,action:t}}).then(({data:e})=>(e=>{let t,o;if(!e.data)throw new u.j("savedLayout data should exist");try{t=JSON.parse(e.data)}catch(t){throw new u.j("Failed to parse savedLayout data "+e.data)}if(e.meta)try{o=JSON.parse(e.meta)}catch(e){o={}}else o={};return x(x({},e),{},{data:t,meta:o})})(e))},ve=e=>{const{createLayout:t}=c.a.get("wp").api,{data:o,dataVersion:n,uid:a,meta:r}=j(e);return k({type:"POST",dataType:"json",data:{uid:a,data:o,meta:r,media:P(e),dataVersion:n,action:t}})},fe=e=>{const{deleteLayout:t}=c.a.get("wp").api;return k({type:"POST",dataType:"json",data:{uid:e,action:t}})}},function(e,t,o){"use strict";o.d(t,"a",(function(){return u}));var n=o(31),a=o(2),r=o(0),i=o.n(r),l=o(35),s=o.n(l);let c={};function d(e){return Object.entries(e).reduce((e,[t,o])=>e+=o.replace(/element/g,`[data-custom-id=${t}]`),"")}class u extends i.a.Component{componentWillUnmount(){const{selectorName:e}=this.props;delete c[e]}componentDidMount(){this.updateCSS()}updateCSS(){const{selectorName:e,css:t}=this.props,o=s.a.findDOMNode(this);if(c[e]===t)return;t?(o.setAttribute("data-custom-id",e),c[e]=t):(o.removeAttribute("data-custom-id",e),delete c[e]);let n=document.getElementById("custom-css");n?n.innerHTML=d(c):(n=document.createElement("style"),n.id="custom-css",n.innerHTML=d(c),document.head.appendChild(n))}componentDidUpdate(){this.updateCSS()}renderForEdit(){const e=this.props,{selectorName:t,css:o,children:a}=e,r=Object(n.a)(e,["selectorName","css","children"]);return i.a.cloneElement(i.a.Children.only(a),r)}renderForView(){const{selectorName:e,css:t,children:o}=this.props;return i.a.createElement("div",{"data-custom-id":e,"data-custom-css":d({[e]:t})},i.a.Children.only(o))}render(){return this.renderForEdit()}}Object(a.a)(u,"defaultProps",{selectorName:"",css:""})},function(e,t,o){"use strict";o.d(t,"a",(function(){return L})),o.d(t,"b",(function(){return W}));var n=o(180),a=o(423),r=o(2),i=o(37),l=o(19),s=o(53),c=o(70),d=o(93);function u(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function p(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?u(Object(o),!0).forEach((function(t){Object(r.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):u(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function b(e,t){return p(p({},e),{},{history:{currSnapshot:t.getCurrentSnapshot(),prevSnapshot:t.getPreviousSnapshot(),canUndo:t.canUndo(),canRedo:t.canRedo()}})}var m=o(14);var h=o(24),g=o(51);function v(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function f(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?v(Object(o),!0).forEach((function(t){Object(r.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):v(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}var y=o(8),O=o(44);function S(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function C(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?S(Object(o),!0).forEach((function(t){Object(r.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):S(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}Object(i.c)(!1);var x=o(26),j=o(27);function B(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function P(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?B(Object(o),!0).forEach((function(t){Object(r.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):B(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const w={deviceMode:"desktop",leftSidebar:{isOpen:!1,drawerContentType:void 0},rightSidebar:{isOpen:!1,lock:void 0,alignment:"right"},showHiddenElements:!1,currentRole:"default"};function T(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function z(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?T(Object(o),!0).forEach((function(t){Object(r.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):T(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const E={value:{},path:[]};const k=e=>e.type&&e.value&&e.value._id&&e.value._thumbnailSrc;function H(e){const t={};return Object(s.g)(e,e=>{if(k(e)){const o=e.value;t[e.value._id]={_thumbnailSrc:o._thumbnailSrc,_thumbnailWidth:o._thumbnailWidth,_thumbnailHeight:o._thumbnailHeight,_thumbnailTime:o._thumbnailTime}}}),t}var F,_,R=function(e,t){const o=new d.a;return function(n,a){switch(a.type){case d.c:case d.b:{const e=a.type===d.c?o.canUndo():o.canRedo(),t=a.type===d.c?o.undo:o.redo;return e?(t.call(o),b(p(p({},n),o.getCurrentSnapshot()),o)):"object"==typeof(i=n).history&&null!==i.history&&Object(s.b)(["currSnapshot","prevSnapshot","canUndo","canRedo"],i.history)?n:b(p(p({},n),o.getCurrentSnapshot()),o)}default:{const i=e(n,a);if(!a.type.includes("@@redux/INIT")){var r;t.onBeforeUpdate&&t.onBeforeUpdate(n,a,o);const e=function(e,t){return t.reduce((t,o)=>(t[o]=e[o],t),{})}(i,t.keysToTrack);o.update(e,{replacePresent:Boolean(null==a||null===(r=a.meta)||void 0===r?void 0:r.historyReplacePresent)})}return b(i,o)}}var i}}((F={authorized:(e,t)=>{switch(t.type){case"HYDRATE":{const{authorized:e}=t.payload;return e}case"UPDATE_AUTHORIZATION":return t.payload;default:return e}},syncAllowed:(e,t)=>{switch(t.type){case"HYDRATE":{const{syncAllowed:e}=t.payload;return e}case"UPDATE_SYNC_ALLOWED":return t.payload;default:return e}},blocksData:(e={},t,o)=>{switch(t.type){case"HYDRATE":{var n;const{page:e,globalBlocks:o}=t.payload,a=(null===(n=e.data)||void 0===n?void 0:n.items)||[];if(m.g&&0===a.length)return{ecupxjcqmrpxjdimoebbkbnotrlufkfokjvr:{type:"Story",value:{_styles:["story"],items:[{type:"StoryItem",value:{_styles:["story-item"],items:[],_id:"dfmwxzkwbiaezltvsxhdinhplvimzenkiqto"}},{type:"StoryItem",value:{_styles:["story-item"],items:[],_id:"dfmwxzkwbieezltvsxhdinhplvimzenkiq1"}}],_id:"ecupxjcqmrpxjdimoebbkbnotrlufkfokjvr"},blockId:"StoryDefault"}};const r=a.reduce((e,t)=>{const{_id:o,globalBlockId:n}=t.value;return e[n||o]=t,e},{}),l=Object.entries(o).reduce((e,[t,o])=>(e[t]=Object(i.a)(o.data,e=>{e.value._id=t}),e),{});return Object(i.a)(f(f({},r),l),e=>{Object(s.g)(e,e=>{if(e.type&&"GlobalBlock"===e.type){const{globalBlockId:t}=e.value;t&&(e.value._id=t,delete e.value.globalBlockId)}})})}case"IMPORT_STORY":{const{blocks:n}=t.payload,{insertIndex:a}=t.meta,r=Object(l.c)(o)[0],i=Object(m.n)(e[r].value.items,a,n);return Object(h.setIn)(e,[r,"value","items"],i)}case"ADD_BLOCK":{const{block:o}=t.payload;return f(f({},e),{},{[o.value._id]:o})}case"MAKE_POPUP_TO_GLOBAL_BLOCK":{const{data:o}=t.payload,n=Object(m.p)(e=>e.value._id===o.value._id?{blockId:e.blockId,type:"GlobalBlock",value:{_id:o.value._id}}:e,e);return Object(i.a)(n,e=>{e[o.value._id]=o})}case"MAKE_GLOBAL_BLOCK_TO_POPUP":{const{block:o,fromBlockId:n}=t.payload;return m.c?f(f({},e),{},{[o.value._id]:o}):Object(m.p)(e=>e.value._id===n?o:e,e)}case"MAKE_GLOBAL_TO_NORMAL_BLOCK":{const{block:o}=t.payload;return f(f({},e),{},{[o.value._id]:o})}case"REMOVE_BLOCK":{const{index:n}=t.payload,a=Object(l.o)(o),r=Object.keys(a),s=Object(l.c)(o)[n];return r.includes(s)?e:Object(i.a)(e,e=>{delete e[s]})}case"REMOVE_BLOCKS":{const t=Object(l.c)(o),n=Object(l.o)(o),a=Object.keys(n),r=t.filter(e=>!a.includes(e));return Object(i.a)(e,e=>{r.forEach(t=>{delete e[t]})})}case"UPDATE_GLOBAL_BLOCK":{const{id:o,data:n}=t.payload;return null===n.value?e:f(f({},e),{},{[o]:n})}case"IMPORT_TEMPLATE":case"UPDATE_BLOCKS":{const{blocks:o}=t.payload,n=o.reduce((e,t)=>("GlobalBlock"===t.type||(e[t.value._id]=t),e),{});return f(f({},e),n)}default:return e}},blocksThumbnailSizes:function(e={},t){switch(t.type){case x.h:return t.payload.blocksThumbnailSizes;default:return e}},copiedElement:function(e=E,t){switch(t.type){case x.d:return z(z({},e),t.value);default:return e}},currentStyle:function(e={},t,o){switch(t.type){case x.h:{const{project:e}=t.payload;return e.data.styles.find(t=>t.id===e.data.selectedStyle)}case x.t:return t.payload;case x.u:{const e=t.payload;return o.styles.find(({id:t})=>t===e)}case j.b:case x.j:{const{currentStyleId:o,styles:n}=t.payload;return o?n.find(e=>e.id===o):e}default:return e}},currentStyleId:function(e="",t){switch(t.type){case x.h:{const{project:e}=t.payload;return e.data.selectedStyle}case x.u:return t.payload;case j.b:case x.j:{const{currentStyleId:o}=t.payload;return o||e}default:return e}},error:function(e=null,t){switch(t.type){case x.h:{const{projectStatus:o}=t.payload;return o.locked?{code:c.f,data:o}:e}case x.w:return t.payload;default:return e}},extraFontStyles:(e=[],t)=>{switch(t.type){case"HYDRATE":{const{project:e}=t.payload;return e.data.extraFontStyles}case"UPDATE_EXTRA_FONT_STYLES":return t.payload;case"IMPORT_TEMPLATE":case"ADD_BLOCK":case"ADD_GLOBAL_BLOCK":{const{extraFontStyles:o}=t.payload;return o&&0!==o.length?[...e,...o]:e}default:return e}},fonts:function(e={},t){switch(t.type){case x.h:{const{fonts:e}=t.payload;return e}case x.b:case x.e:{const o=t.payload;return z(z({},e),o)}case j.b:case x.j:case x.i:case x.a:case x.c:{const{fonts:o}=t.payload;return o&&0!==o.length?Object(i.a)(e,e=>{o.forEach(({type:t,fonts:o})=>{e[t]=e[t]||{data:[]},e[t].data.push(...o)})}):e}default:return e}},globalBlocks:(e={},t,o)=>{const n=Number(Object(O.d)(o).id);switch(t.type){case"HYDRATE":{const{globalBlocks:e,page:{data:{items:o=[]}}}=t.payload,n=o.filter(e=>{var t;return null==e||null===(t=e.value)||void 0===t?void 0:t.globalBlockId}).map(e=>{var t;return null==e||null===(t=e.value)||void 0===t?void 0:t.globalBlockId});return Object.entries(e).reduce((e,[o,a])=>(n.includes(o)&&!Object(g.k)(a.data)?e[o]=Object(i.a)(a,e=>{e.rules=Object(g.d)(a,!0,Number(t.payload.page.id)).rules,e.data.value._id=o}):e[o]=a,e),{})}case"ADD_BLOCK":return e;case"ADD_GLOBAL_BLOCK":{const{_id:o}=t.payload.block.value;return Object(g.k)(e[o].data)?e:C(C({},e),{},{[o]:Object(g.d)(e[o],!0,n)})}case"MAKE_POPUP_TO_GLOBAL_BLOCK":case"MAKE_NORMAL_TO_GLOBAL_BLOCK":{const{data:o,status:n,meta:a,rules:r,position:l}=t.payload;return Object(i.a)(e,e=>{e[o.value._id]={meta:a,data:o,status:n,rules:r,position:l,dataVersion:1}})}case"UPDATE_GLOBAL_BLOCK":{const{id:o,data:a}=t.payload;if(null===a.value&&!Object(g.k)(e[o].data)){const t=Object(g.d)(e[o],!1,n);return C(C({},e),{},{[o]:t})}return e}case"REMOVE_BLOCK":{const{index:a}=t.payload,r=Object(l.c)(o),i=Object.keys(e),s=r[a];if(i.includes(r[a])&&!Object(g.k)(e[s].data)){const t=Object(g.d)(e[s],!1,n);return C(C({},e),{},{[s]:t})}return e}case"MAKE_GLOBAL_TO_NORMAL_BLOCK":{const{fromBlockId:o}=t.payload,a=Object(g.d)(e[o],!1,n);return C(C({},e),{},{[o]:a})}case"REORDER_BLOCKS":{const{oldIndex:a,newIndex:r}=t.payload,i=Object(l.c)(o),s=Object.keys(e);if(s.includes(i[a])){const t=i[a],c=Object(h.insert)(Object(h.removeAt)(i,a),r,t),d=i[a],u=Object(g.g)(i,a,s),p=Object(g.g)(c,r,s);if("center"===u&&("top"===p||"bottom"===p)&&!Object(g.f)(Object(l.b)(o),e,n).includes(d)){const t=Object(g.d)(e[d],!0,n);return C(C({},e),{},{[d]:t})}}return e}case"REMOVE_BLOCKS":{const t=Object(l.c)(o),a=Object(l.b)(o),r=y.default.difference(t,a);return Object(i.a)(e,e=>{r.forEach(t=>{Object(g.k)(e[t].data)||(e[t]=Object(g.d)(e[t],!1,n))})})}case"UPDATE_BLOCKS":{const{blocks:a}=t.payload,r=Object(l.c)(o),s=a.map(e=>e.value._id),c=y.default.difference(r,s);return Object(i.a)(e,e=>{c.forEach(t=>{e[t]&&!Object(g.k)(e[t].data)&&(e[t]=Object(g.d)(e[t],!1,n))})})}case"UPDATE_GB_RULES":{const{id:o,rules:n}=t.payload;return Object(i.a)(e,e=>{e[o].rules=n,e[o].dataVersion=e[o].dataVersion+1})}case"DELETE_GLOBAL_BLOCK":{const{id:o}=t.payload;return Object(i.a)(e,e=>{e[o].data.deleted=!0,e[o].dataVersion=e[o].dataVersion+1})}case"PUBLISH":{const e=Object(l.l)(o),t=Object(l.m)(o),n=Object(l.n)(o);return Object.entries(e).reduce((e,[o,a])=>(e[o]=Object(i.a)(a,e=>{e.position=n[o]||null,e.dataVersion=e.dataVersion+1;const r="SectionPopup"===a.data.type||"SectionPopup2"===a.data.type;(t[o]||r)&&(e.status="publish")}),e),{})}default:return e}},changedGBIds:(e=[],t,o)=>{switch(t.type){case x.c:{const{_id:o}=t.payload.block.value;return[...e,o]}case x.n:case x.m:{const{_id:o}=t.payload.data.value;return[...e,o]}case x.k:case x.l:{const{fromBlockId:o}=t.payload;return e.includes(o)?e:[...e,o]}case x.o:{const{index:n}=t.payload,a=Object(l.c)(o)[n];return e.filter(e=>e!==a)}case x.p:{const t=Object(l.m)(o),n=Object.keys(t);return e.filter(e=>!n.includes(e))}case x.y:{const{id:o}=t.payload;return e.includes(o)?e:[...e,o]}case j.a:return[];default:return e}},page:(e,t,o)=>{switch(t.type){case"HYDRATE":{const{page:e}=t.payload;return e}case"PUBLISH":{const{status:e}=t.payload,n=m.c?Object(l.q)(o):Object(l.p)(o);return Object(i.a)(n,t=>{t.status=e,t.dataVersion=t.dataVersion+1})}case"UPDATE_TRIGGERS":{const{data:o}=t.payload;return Object(i.a)(e,e=>{e.data.triggers=o,e.dataVersion=e.dataVersion+1})}case"UPDATE_POPUP_RULES":return Object(i.a)(e,e=>{e.data.rulesAmount=t.payload.length,e.dataVersion=e.dataVersion+1});default:return e}},blocksOrder:(e=[],t)=>{switch(t.type){case"HYDRATE":{var o;const e=Number(t.payload.page.id),n=(null===(o=t.payload.page.data)||void 0===o?void 0:o.items)||[];if(m.g&&0===n.length)return["ecupxjcqmrpxjdimoebbkbnotrlufkfokjvr"];const a=n.map(e=>e.value.globalBlockId||e.value._id);return Object(g.e)(a,t.payload.globalBlocks,e)}case"ADD_GLOBAL_BLOCK":case"ADD_BLOCK":{const{block:o}=t.payload,{insertIndex:n}=t.meta,{_id:a}=o.value;return e.includes(a)?e:Object(h.insert)(e,n,o.value._id)}case"REMOVE_BLOCK":{const{index:o}=t.payload;return Object(h.removeAt)(e,o)}case"REMOVE_BLOCKS":return[];case"MAKE_GLOBAL_BLOCK_TO_POPUP":if(m.c){const{block:o,fromBlockId:n}=t.payload;return Object(h.replaceAt)(e,e.findIndex(e=>e===n),o.value._id)}return e;case"MAKE_GLOBAL_TO_NORMAL_BLOCK":{const{block:o,fromBlockId:n}=t.payload;return Object(h.replaceAt)(e,e.findIndex(e=>e===n),o.value._id)}case"REORDER_BLOCKS":{const{oldIndex:o,newIndex:n}=t.payload,a=e[o];return Object(h.insert)(Object(h.removeAt)(e,o),n,a)}case"IMPORT_TEMPLATE":{const{blocks:o}=t.payload,{insertIndex:n}=t.meta,a=o.map(e=>e.value._id);return Object(h.insert)(e,n,a)}case"UPDATE_BLOCKS":{const{blocks:e}=t.payload;return e.map(e=>e.value._id)}case"UPDATE_GLOBAL_BLOCK":{const{id:o,data:n}=t.payload;return null===n.value?e.filter(e=>e!==o):e}default:return e}},project:function(e={},t,o){switch(t.type){case x.h:{const{project:e}=t.payload;return e}case j.c:return Object(i.a)(Object(l.y)(o),e=>{e.dataVersion=e.dataVersion+1});case x.v:{const o=t.payload;return Object(i.a)(e,e=>{e.data.disabledElements=o,e.dataVersion=e.dataVersion+1})}case x.i:{const{selectedKit:o}=t.payload;return Object(i.a)(e,e=>{e.data.selectedKit=o,e.dataVersion=e.dataVersion+1})}case x.s:{const o=t.payload;return Object(i.a)(e,e=>{e.data.selectedKit=o,e.dataVersion=e.dataVersion+1})}case j.b:case x.j:case x.b:case x.e:return Object(i.a)(e,e=>{e.dataVersion=e.dataVersion+1});default:return e}},styles:function(e=[],t){switch(t.type){case x.h:{const{project:e}=t.payload;return e.data.styles}case j.b:case x.j:case x.i:{const{styles:o}=t.payload;return o?[...e,...o]:e}default:return e}},ui:function(e=w,t){switch(t.type){case"UPDATE_UI":{const{key:o,value:n}=t,a=P(P({},e),{},{[o]:n});return"deviceMode"===o&&"manual"!==a.rightSidebar.lock&&("desktop"!==n?a.rightSidebar=P(P({},a.rightSidebar),{},{isOpen:!0,lock:"auto"}):a.rightSidebar.isOpen&&(a.rightSidebar=P(P({},a.rightSidebar),{},{isOpen:!1,lock:void 0}))),a}default:return e}}},_={screenshots:function(e={},t,o,n){switch(t.type){case x.h:case j.c:{const e=H(n.page.data),t={};for(const[e,o]of Object.entries(n.globalBlocks)){const n=o.data;if(k(n)){const o=n.value;t[e]={_thumbnailSrc:o._thumbnailSrc,_thumbnailWidth:o._thumbnailWidth,_thumbnailHeight:o._thumbnailHeight,_thumbnailTime:o._thumbnailTime}}Object.assign(t,H(n.value))}return z(z(z({},e),t),{},{_published:z(z({},e),t)})}case x.A:{const{payload:{blockId:o,data:n}}=t;return Object(i.a)(e,e=>{e[o]=n})}case x.m:{const{data:{value:{_id:o}},meta:n}=t.payload,a={_thumbnailSrc:n._thumbnailSrc,_thumbnailWidth:n._thumbnailWidth,_thumbnailHeight:n._thumbnailHeight,_thumbnailTime:n._thumbnailTime};return Object(i.a)(e,e=>{e[o]=a,e._published[o]=a})}default:return e}}},(e={},t)=>{const o={};return Object.entries(F).reduce((o,[n,a])=>(o[n]=a(e[n],t,e),o),o),Object.entries(_).reduce((o,[n,a])=>(o[n]=a(e[n],t,e,o),o),o),o}),{keysToTrack:["blocksOrder","blocksData","currentStyleId","currentStyle","extraFontStyles","globalBlocksUpdates"],onBeforeUpdate:(e,t,o)=>{if(t.type===x.x||t.type===x.o||t.type===x.p){const n=Object(l.c)(e),a=Object(l.o)(e);(t.type===x.p?n:[t.payload.id]).forEach(e=>{if(n.includes(e)&&a[e]){const t=o.getSnapshots();o.replaceSnapshots(t.map(t=>((null==t?void 0:t.blocksOrder)&&(t.blocksOrder=t.blocksOrder.filter(t=>t!==e)),t)))}})}}});let M;function L({middleware:e=[]}={}){if(M)throw new Error("store is already created");return M=Object(n.d)(R,Object(n.c)(a.reduxBatch,Object(n.a)(...e))),M}function W(){if(!M)throw new Error("store is not yet created");return M}},,function(e,t,o){"use strict";o.d(t,"g",(function(){return p})),o.d(t,"f",(function(){return b})),o.d(t,"d",(function(){return m})),o.d(t,"a",(function(){return h})),o.d(t,"b",(function(){return v})),o.d(t,"c",(function(){return y})),o.d(t,"h",(function(){return O})),o.d(t,"e",(function(){return S}));var n=o(2),a=o(39),r=o(8),i=o(10),l=o(30),s=o(7);function c(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function d(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?c(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):c(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function u(e,t,o){const n=e+(String(o).charAt(0).toUpperCase()+String(o).substr(1));return Object(a.e)(t[o],t[n])}function p(e,t){return u("tablet",e,t)}function b(e,t){return u("mobile",e,t)}function m(e,t){return Object(a.e)(e,t)}function h({key:e,device:t="desktop",state:o="normal"}){const n="temp"===e.substr(0,4)?"temp":"",a=n.length>0?e.substr(4):e;return Object(i.a)([n,g({key:a,device:t,state:o})])}function g({key:e,device:t,state:o}){const n=s.e(o),a=l.i(t),r=n===s.d?"":n,c=a===l.d()?"":a;return Object(i.a)([r,c,e])}function v({v:e,key:t,device:o="desktop",state:n="normal"}){const r=h({key:t,device:o,state:n});return Object(a.e)(e[t],e[r])}const f=Object(r.memoize)(()=>l.h().reduce((e,t)=>{const o=s.f().reduce((e,o)=>(e.push({device:t,state:o}),e),[]);return e.concat(o)},[]));function y(e,t){return f().reduce((o,n)=>o||v(d({v:e,key:t},n)),"")}function O(e,t,o){return f().some(n=>{const a=v(d({v:e,key:t},n));return a&&a!==o})}function S(e,t){return f().map(e=>h(d({key:t},e)))}},function(e,t,o){"use strict";o.d(t,"h",(function(){return s})),o.d(t,"g",(function(){return c})),o.d(t,"r",(function(){return d})),o.d(t,"o",(function(){return u})),o.d(t,"p",(function(){return p})),o.d(t,"q",(function(){return b})),o.d(t,"m",(function(){return m})),o.d(t,"n",(function(){return h})),o.d(t,"k",(function(){return g})),o.d(t,"y",(function(){return v})),o.d(t,"f",(function(){return f})),o.d(t,"z",(function(){return y})),o.d(t,"C",(function(){return O})),o.d(t,"d",(function(){return S})),o.d(t,"j",(function(){return C})),o.d(t,"i",(function(){return x})),o.d(t,"s",(function(){return j})),o.d(t,"u",(function(){return B})),o.d(t,"t",(function(){return P})),o.d(t,"b",(function(){return w})),o.d(t,"e",(function(){return T})),o.d(t,"A",(function(){return z})),o.d(t,"v",(function(){return E})),o.d(t,"x",(function(){return k})),o.d(t,"B",(function(){return H})),o.d(t,"c",(function(){return F})),o.d(t,"l",(function(){return _})),o.d(t,"a",(function(){return R})),o.d(t,"w",(function(){return M})),o.d(t,"F",(function(){return L})),o.d(t,"E",(function(){return W})),o.d(t,"K",(function(){return I})),o.d(t,"J",(function(){return N})),o.d(t,"I",(function(){return A})),o.d(t,"D",(function(){return D})),o.d(t,"N",(function(){return V})),o.d(t,"G",(function(){return $})),o.d(t,"H",(function(){return G})),o.d(t,"L",(function(){return U})),o.d(t,"P",(function(){return K})),o.d(t,"O",(function(){return q})),o.d(t,"M",(function(){return Y}));var n=o(2),a=o(24),r=o(44);function i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function l(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?i(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):i(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const s="HYDRATE",c="EDITOR_RENDERED",d="UPDATE_BLOCKS",u="REMOVE_BLOCK",p="REMOVE_BLOCKS",b="REORDER_BLOCKS",m="MAKE_NORMAL_TO_GLOBAL_BLOCK",h="MAKE_POPUP_TO_GLOBAL_BLOCK",g="MAKE_GLOBAL_BLOCK_TO_POPUP",v="UPDATE_GLOBAL_BLOCK",f="DELETE_GLOBAL_BLOCK",y="UPDATE_POPUP_RULES",O="UPDATE_UI",S="COPY_ELEMENT",C="IMPORT_TEMPLATE",x="IMPORT_KIT",j="UPDATE_CURRENT_KIT_ID",B="UPDATE_CURRENT_STYLE_ID",P="UPDATE_CURRENT_STYLE",w="ADD_FONTS",T="DELETE_FONTS",z="UPDATE_SCREENSHOT",E="UPDATE_DISABLED_ELEMENTS",k="UPDATE_GB_RULES",H="UPDATE_TRIGGERS",F="ADD_GLOBAL_BLOCK",_="MAKE_GLOBAL_TO_NORMAL_BLOCK",R="ADD_BLOCK",M="UPDATE_ERROR";function L({project:e,projectStatus:t,fonts:o,page:n,globalBlocks:a,blocksThumbnailSizes:r,authorized:i,syncAllowed:l}){return{type:s,payload:{project:e,projectStatus:t,fonts:o,page:n,globalBlocks:a,blocksThumbnailSizes:r,authorized:i,syncAllowed:l}}}function W(){return{type:c}}function I(e){return{type:B,payload:e}}function N(e){return{type:P,payload:e}}function A(e){return{type:j,payload:e}}function D({type:e,fonts:t}){return(o,n)=>{const i=Object(r.c)(n()),s=i[e]&&i[e].data||[],c={[""+e]:{data:s.map(e=>t.some(({brizyId:t})=>t===e.brizyId)?l(l({},e),{},{deleted:!0}):e)}};return o({type:T,payload:Object(a.mergeDeep)(i,c)})}}function V({data:e,meta:t}){return{type:y,payload:e,meta:t}}function $(e){return{type:x,payload:e}}function G(e){return{type:S,value:e}}function U(e){return{type:E,payload:e}}function K(e,t){return{type:H,payload:{data:e},meta:t}}function q({blockId:e,data:t,meta:o}){return{type:z,payload:{blockId:e,data:t},meta:o}}function Y(e){return{type:M,payload:e}}},function(e,t,o){"use strict";o.d(t,"b",(function(){return p})),o.d(t,"c",(function(){return b})),o.d(t,"a",(function(){return m})),o.d(t,"d",(function(){return h})),o.d(t,"u",(function(){return s})),o.d(t,"p",(function(){return c})),o.d(t,"n",(function(){return g})),o.d(t,"m",(function(){return v})),o.d(t,"o",(function(){return f})),o.d(t,"l",(function(){return y})),o.d(t,"z",(function(){return O})),o.d(t,"f",(function(){return S})),o.d(t,"x",(function(){return C})),o.d(t,"C",(function(){return x})),o.d(t,"w",(function(){return j})),o.d(t,"i",(function(){return B})),o.d(t,"A",(function(){return P})),o.d(t,"e",(function(){return w})),o.d(t,"g",(function(){return T})),o.d(t,"h",(function(){return z})),o.d(t,"y",(function(){return E})),o.d(t,"q",(function(){return k})),o.d(t,"r",(function(){return H})),o.d(t,"s",(function(){return F})),o.d(t,"j",(function(){return _})),o.d(t,"k",(function(){return R})),o.d(t,"t",(function(){return M})),o.d(t,"v",(function(){return L})),o.d(t,"B",(function(){return W}));var n=o(2),a=o(8),r=o(24),i=o(57),l=o(44);function s(){return{type:"UNDO"}}function c(){return{type:"REDO"}}function d(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function u(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?d(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):d(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const p="IMPORT_STORY",b="PUBLISH",m="FETCH_PAGE_SUCCESS",h="UPDATE_EXTRA_FONT_STYLES";function g(e){return{type:"MAKE_NORMAL_TO_GLOBAL_BLOCK",payload:e}}function v({fromBlockId:e,block:t}){return{type:"MAKE_GLOBAL_TO_NORMAL_BLOCK",payload:{fromBlockId:e,block:t}}}function f(e){return{type:"MAKE_POPUP_TO_GLOBAL_BLOCK",payload:e}}function y({fromBlockId:e,block:t}){return{type:"MAKE_GLOBAL_BLOCK_TO_POPUP",payload:{fromBlockId:e,block:t}}}function O({id:e,data:t,meta:o}){return{type:"UPDATE_GLOBAL_BLOCK",payload:{id:e,data:t},meta:u({is_autosave:1},o)}}const S=e=>(t,o)=>{const n=Object(l.c)(o()),s=e.reduce((e,t)=>{var o;const{type:r,fonts:l}=t,s=(null===(o=n[r])||void 0===o?void 0:o.data)||[],[c,d]=a.default.partition(l,e=>Object.prototype.hasOwnProperty.call(e,"deleted")),p=d.map(e=>u(u({},e),{},{brizyId:Object(i.a)()}));return u(u({},e),{},{[r]:{data:s.map(e=>c.find(({brizyId:t})=>e.brizyId===t)||e).concat(p)}})},{});return t({type:"ADD_FONTS",payload:Object(r.mergeDeep)(n,s)})},C=e=>({type:"UPDATE_EXTRA_FONT_STYLES",payload:e});function x(e,t){return{type:"UPDATE_UI",key:e,value:t}}function j({blocks:e,meta:t={}}){return{type:"UPDATE_BLOCKS",payload:{blocks:e},meta:u({is_autosave:1},t)}}const B=()=>({type:m}),P=e=>t=>new Promise((o,n)=>{t({type:"PUBLISH",payload:{status:e},meta:{onSuccess:o,onError:n}})});function w(e,t={insertIndex:0}){return{type:"ADD_BLOCK",payload:e,meta:t}}function T(e,t={insertIndex:0}){return{type:"ADD_GLOBAL_BLOCK",payload:e,meta:t}}function z({id:e}){return{type:"DELETE_GLOBAL_BLOCK",payload:{id:e}}}function E({data:e,meta:t}){return{type:"UPDATE_GB_RULES",payload:e,meta:t}}function k({index:e,id:t}){return{type:"REMOVE_BLOCK",payload:{index:e,id:t}}}function H(){return{type:"REMOVE_BLOCKS"}}function F(e){return{type:"REORDER_BLOCKS",payload:e}}function _(e,t={insertIndex:0}){return{type:p,payload:e,meta:t}}function R(e,t={insertIndex:0}){return{meta:t,type:"IMPORT_TEMPLATE",payload:e}}function M(e){return x("deviceMode",e)}function L(e){return{type:"UPDATE_AUTHORIZATION",payload:e}}function W(e){return{type:"UPDATE_SYNC_ALLOWED",payload:e}}},,function(e,t,o){"use strict";(function(e){o.d(t,"a",(function(){return j}));var n=o(12),a=o(2),r=o(0),i=o.n(r),l=o(97),s=o(24),c=o(37),d=o(66),u=o(17),p=o(23),b=o(19),m=o(14),h=o(26),g=o(20),v=o(440),f=o(126);function y(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function O(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?y(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):y(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const S=u.a.get("menuData"),C=(e,t)=>Object(l.a)((e=>Array.isArray(e)?[]:{})(e),e,t);function x(e,t,o){const n=e.slice();return t.forEach((function(t,a){if(void 0===n[a]){const e=!1!==o.clone&&o.isMergeableObject(t);n[a]=e?C(t,o):t}else o.isMergeableObject(t)?n[a]=Object(l.a)(e[a],t,o):-1===e.indexOf(t)&&n.push(t)})),n}class j extends g.a{constructor(...e){super(...e),Object(a.a)(this,"handleKeyDown",(e,{keyName:t,id:o})=>{e.preventDefault();const n=this.getValue(),a=n.findIndex(({value:{_id:e}})=>e===o);switch(t){case"alt+N":case"ctrl+N":case"cmd+N":case"right_cmd+N":return void this.addColumn(a+1);case"alt+D":case"ctrl+D":case"cmd+D":case"right_cmd+D":return void("StoryWrapper"===n[a].type?this.insertItem(a+1,Object(m.r)(n[a])):this.cloneItem(a));case"alt+C":case"ctrl+C":case"cmd+C":case"right_cmd+C":return void this.copy(a);case"alt+V":case"ctrl+V":case"cmd+V":case"right_cmd+V":return void("StoryWrapper"===n[a].type?this.paste(a,e=>{const{offsetX:t=0,offsetY:o=0}=n[a].value.items[0].value;let r=Object(s.setIn)(e,["value","items",0,"value","offsetX"],t);return r=Object(s.setIn)(r,["value","items",0,"value","offsetY"],o),Object(m.r)(r)}):this.paste(a));case"alt+shift+V":case"ctrl+shift+V":case"cmd+shift+V":case"right_cmd+shift+V":case"shift+alt+V":case"shift+ctrl+V":case"shift+cmd+V":case"shift+right_cmd+V":return void this.pasteStyles(a);case"ctrl+right":case"cmd+right":case"right_cmd+right":return void this.changeHorizontalAlign(a,"increase");case"ctrl+left":case"cmd+left":case"right_cmd+left":return void this.changeHorizontalAlign(a,"decrease");case"ctrl+up":case"cmd+up":case"right_cmd+up":case"alt+up":return void this.changeVerticalAlign(a,"decrease");case"ctrl+down":case"cmd+down":case"right_cmd+down":case"alt+down":return void this.changeVerticalAlign(a,"increase");case"alt+del":case"del":case"cmd+backspace":case"cmd+del":case"right_cmd+backspace":case"right_cmd+del":return void this.removeItem(a)}}),Object(a.a)(this,"renderItem",(e,t,o)=>{const{sliceStartIndex:n,sliceEndIndex:a}=j.defaultProps,{sliceStartIndex:r=n,sliceEndIndex:i=a}=this.props;if(t>=r&&t<i){const n=e.value._id,a=this.renderItemData(e,n,t,o);return this.renderItemWrapper(a,n,t,e,o)}return null}),Object(a.a)(this,"getCurrentCopiedElement",()=>{const{path:e,value:t}=Object(b.e)(Object(p.b)().getState());return t?Object(s.getIn)(B(t),e):null})}insertItem(e,t){const o=Object(m.t)(t),n=Object(m.q)(o),a=this.getDBValue()||[],r=Object(s.insert)(a,e,n);this.handleValueChange(r,{arrayOperation:"insert"})}insertItemsBatch(e,t){const o=this.getDBValue()||[],n=t.reduce((t,o,n)=>{const a=Object(m.t)(o),r=Object(m.q)(a);return Object(s.insert)(t,e+n,r)},o);this.handleValueChange(n,{arrayOperation:"insert_bulk"})}updateItem(e,t,o={}){const n=this.getDBValue(),a=Object(s.setIn)(n,[e,"value"],t);this.handleValueChange(a,Object.assign(o,{arrayOperation:"itemChange"}))}removeItem(e){const t=this.getDBValue()||[],o=Object(s.removeAt)(t,e);this.handleValueChange(o,{arrayOperation:"remove"})}replaceItem(e,t,o){const n=Object(m.t)(t,{exclude:["_id"]}),a=Object(m.q)(n,o.idOptions),r=this.getDBValue()||[],i=Object(s.replaceAt)(r,e,a);this.handleValueChange(i,{arrayOperation:"replace",itemIndex:e,oldValue:r})}cloneItem(e,t=e+1){const o=this.getDBValue()||[];if(!o[e])throw new Error("Can't clone invalid item at index "+e);this.insertItem(t,o[e])}getDefaultValue(){return this.props.defaultValue||[]}getValue(){return this.getDBValue()||this.getDefaultValue()}getValue2(){const e=this.getDefaultValue();return{v:this.getDBValue()||e}}validateValue(){}getItemProps(e,t,o){const{itemProps:n}=j.defaultProps,{itemProps:a=n}=this.props;return"function"==typeof a?a(e,t,o):a}renderItemData(e,t,o,a){const{type:r,value:l}=e,s=d.a.getComponent(r),c=this.getDefaultValue(),u=this.getItemProps(e,o,a),p=[...this.getPath(),o,"value"],b=c[o]&&c[o].value,m=l,h=(e,t={})=>{const{intent:n}=t;switch(n){case"replace_all":this.replaceItem(o,e,t);break;case"remove_all":this.removeItem(o,t);break;default:this.updateItem(o,e,t)}};if(s)return i.a.createElement(v.a,{key:t,onRemove:()=>this.removeItem(o)},i.a.createElement(s,Object(n.a)({},u,{path:p,defaultValue:b,dbValue:m,reduxState:this.getReduxState(),reduxDispatch:this.getReduxDispatch(),onChange:h})));{const e=d.a.getNotFoundComponent();return i.a.createElement(e,Object(n.a)({},u,{key:t,path:p,defaultValue:b,dbValue:m,reduxState:this.getReduxState(),reduxDispatch:this.getReduxDispatch(),onChange:h,componentId:r}))}}renderItemWrapper(e,t,o,n,a){return e}renderItemsContainer(e){return e}renderForEdit(e){const t=e.map(this.renderItem);return this.renderItemsContainer(t,e)}changeVerticalAlign(t,o){const n=this.getValue(),a=Object(b.x)(Object(p.b)().getState()),r=e.Brizy.activeEditorComponent.getPath(),{path:i,value:{type:l,value:c}}=Object(m.m)(r,a,"verticalAlign");if(c){const e=["top","center","bottom"],{defaultValue:{style:{verticalAlign:a}}}=d.a.getComponent(l),r=c.verticalAlign||a||"top",u=Object(m.l)(e,r,o),p=this.getPath(),b=i.reduce((e,t,o)=>(void 0===p[o]&&e.push(i[o]),e),[]),h=Object(s.setIn)(n,[...b,"value"],O(O({},c),{},{verticalAlign:u}));this.updateItem(t,h[t].value)}}changeHorizontalAlign(t,o){const n=this.getValue(),a=e.Brizy.activeEditorComponent.getPath(),r=Object(p.b)().getState(),i=Object(b.x)(r),{deviceMode:l}=r.ui,c="desktop"===l?"horizontalAlign":l+"HorizontalAlign",{path:u,value:{type:h,value:g}}=Object(m.m)(a,i,c);if(g){const e=["left","center","right"],{defaultValue:{style:a}}=d.a.getComponent(h),r=g[c]||a[c]||"left",i=Object(m.l)(e,r,o),l=this.getPath(),p=u.reduce((e,t,o)=>(void 0===l[o]&&e.push(u[o]),e),[]),b=Object(s.setIn)(n,[...p,"value"],O(O({},g),{},{[c]:i}));this.updateItem(t,b[t].value)}}copy(e){const t=this.getReduxDispatch(),o=[...this.getPath(),e],n=B(Object(b.w)(this.getReduxState()));t(Object(h.H)({value:n,path:o}))}paste(e,t=(e=>e)){const o=this.getValue()[e],{path:n,value:a}=Object(b.e)(Object(p.b)().getState());if(!a)return;const{value:r}=Object(m.k)(n,B(a),"Cloneable"===o.type||"Wrapper"===o.type?({type:e})=>"Cloneable"===e||"Wrapper"===e:({type:e})=>e===o.type);r&&this.insertItem(e+1,t(r))}pasteStyles(e){const{path:t,value:o}=Object(b.e)(Object(p.b)().getState());if(!o)return;const n=this.getValue()[e],a=this.getCurrentCopiedElement();let r=0;if(a&&("Wrapper"===a.type&&"Wrapper"===n.type||"StoryWrapper"===a.type&&"StoryWrapper"===n.type)){if(a.value.items[0].type!==n.value.items[0].type)return;r=1,"Form"===a.value.items[0].type||"IconText"===a.value.items[0].type?r=3:"ImageGallery"===a.value.items[0].type&&(r=2)}const{value:i}=Object(m.k)(t,B(o),({type:e})=>e===n.type);if(i){const t=Object(m.s)(i,r),o=Object(l.a)(n,t,{arrayMerge:x});this.updateItem(e,o.value)}}}function B(e){return Object(m.p)(e=>{const{type:t,value:o}=e;if("Menu"===t){const{menuSelected:t,symbols:n={}}=o,a=t||S[0].id,r=S.find(e=>e.id===a)||{};return Object(c.b)(e,e=>{e.value.items=Object(f.d)(r.items||[],n)})}return e},e)}Object(a.a)(j,"defaultProps",{itemProps:{},sliceStartIndex:0,sliceEndIndex:1/0})}).call(this,o(86))},function(e,t,o){"use strict";o.d(t,"a",(function(){return n})),o.d(t,"c",(function(){return a})),o.d(t,"b",(function(){return r})),o.d(t,"e",(function(){return s})),o.d(t,"d",(function(){return c})),o.d(t,"h",(function(){return d})),o.d(t,"i",(function(){return u})),o.d(t,"g",(function(){return p})),o.d(t,"f",(function(){return b}));const n="desktop",a="tablet",r="mobile",i=["desktop","tablet","mobile"],l=e=>i.includes(e)?e:void 0,s="desktop",c=()=>n,d=()=>["desktop","tablet","mobile"],u=e=>{var t;return null!==(t=l(e))&&void 0!==t?t:s},p=e=>[a,r].includes(e),b=e=>[n].includes(e)},,function(e,t,o){"use strict";function n(e,t,o){return e<t?t:e>o?o:e}function a(e,t){return+(Math.round(Number(e+"e+"+t))+"e-"+t)}o.d(t,"a",(function(){return n})),o.d(t,"d",(function(){return a})),o.d(t,"c",(function(){return r})),o.d(t,"f",(function(){return i})),o.d(t,"e",(function(){return l})),o.d(t,"g",(function(){return s})),o.d(t,"b",(function(){return c}));const r=e=>"number"==typeof e,i=(e,t)=>"number"==typeof e?e:t,l=(e,t)=>"number"==typeof e&&e>=0?e:t,s=(e,t)=>"number"==typeof e&&e>0?e:t,c=(e,t,o)=>o>=e&&o<=t},function(e,t,o){"use strict";o.d(t,"d",(function(){return l})),o.d(t,"i",(function(){return s})),o.d(t,"c",(function(){return c})),o.d(t,"k",(function(){return u})),o.d(t,"l",(function(){return d})),o.d(t,"f",(function(){return p})),o.d(t,"e",(function(){return b})),o.d(t,"w",(function(){return v})),o.d(t,"m",(function(){return y})),o.d(t,"n",(function(){return f})),o.d(t,"s",(function(){return C})),o.d(t,"t",(function(){return x})),o.d(t,"p",(function(){return B})),o.d(t,"r",(function(){return P})),o.d(t,"q",(function(){return z})),o.d(t,"h",(function(){return k})),o.d(t,"b",(function(){return V})),o.d(t,"g",(function(){return A})),o.d(t,"j",(function(){return D})),o.d(t,"a",(function(){return I})),o.d(t,"v",(function(){return N})),o.d(t,"u",(function(){return $})),o.d(t,"o",(function(){return G}));var n=o(8),a=o(23),r=o(19),i=o(44);const l=({type:e,family:t})=>{const o=N(Object(r.I)(Object(a.b)().getState())),n=I(o[e],t,e);if(n)return V[e](n);const i=c();return V[i.group](i.font)},s=(e,t)=>Object.entries(e).reduce((e,o)=>{const[n,{data:a=[]}]=o,r=a.find(e=>t===V[n](e).id);return r?{group:n,font:r}:e},null),c=n.default.memoize(()=>{const e=Object(a.b)().getState(),{font:t}=Object(r.z)(e).data,{config:o}=Object(i.c)(e);return{group:"config",font:I(o.data,t)}});function d(){const{config:e={},blocks:t={},google:o={},upload:n={}}=Object(r.I)(Object(a.b)().getState());return{config:e.data||[],blocks:t.data||[],google:o.data||[],upload:n.data||[]}}function u(){return Object.values(d()).reduce((e,t)=>[...e,...t],[])}function p({includeDeleted:e=!1}={}){const t=Object(a.b)().getState(),{fontStyles:o}=Object(r.g)(t),n=[...o,...Object(i.b)(t)];return e?n:n.filter(e=>!0!==e.deleted)}function b(e){return p({includeDeleted:!0}).find(t=>t.id===e)}var m=o(88),h=o(1);const g=e=>{switch(e){case m.i:return Object(h.a)("Thin");case m.d:return Object(h.a)("Extra Light");case m.e:return Object(h.a)("Light");case m.g:return Object(h.a)("Normal");case m.f:return Object(h.a)("Medium");case m.h:return Object(h.a)("Semi Bold");case m.b:return Object(h.a)("Bold");case m.c:return Object(h.a)("Extra Bold");case m.a:return Object(h.a)("Black");default:String(e)}},v=m.l.reduce((e,t)=>(e[t]=g(t),e),{});function f({type:e,family:t}){if(e&&t){const{weights:o}=l({type:e,family:t});return o.map(e=>({title:g(e),value:e}))}return[{title:g(m.j),value:m.j}]}function y(e,t){return t.includes(Number(e))?e:m.j}var O=o(17),S=o(108);const C=e=>`https://fonts.googleapis.com/css?family=${e.reduce((e,t)=>{const o=t.family.replace(/\s/g,"+"),n=t.variants.join();return""===e?`${o}:${n}`:`${e}|${o}:${n}`},"")}&subset=arabic,bengali,cyrillic,cyrillic-ext,devanagari,greek,greek-ext,gujarati,hebrew,khmer,korean,latin-ext,tamil,telugu,thai,vietnamese`,x=e=>{var t;const o=O.a.get("urls").editorFonts,n=null!==(t=O.a.get("prefix"))&&void 0!==t?t:"brizy",a=Object(S.a)({[n+"-font"]:e.reduce((e,{id:t,weights:o})=>{const n=o.join();return""===e?`${t}:${n}`:`${e}|${t}:${n}`},"")});return Object(S.b)(o)?`${o}&${a}`:`${o}?${a}`},j=({id:e,family:t})=>`.brz .brz-ff-${e}{font-family:${t}!important;}`,B=e=>e.map(e=>{const{id:t,family:o,deleted:n=!1}=A(e)||{};return t&&o?j(n?{id:t,family:A(c().font).family}:{id:t,family:o}):(console.warn("There isn't family: "+JSON.stringify(e)),"")}).join(""),P=e=>e.map(e=>{const{id:t,family:o,deleted:n=!1}=D(e)||{};return t&&o?j(n?{id:t,family:A(c().font).family}:{id:t,family:o}):(console.warn("There isn't family: "+JSON.stringify(e)),"")}).join("");var w=o(31);const T=({fontFamily:e,fontFamilyType:t,fontSize:o,fontWeight:n,letterSpacing:a,lineHeight:r,tabletFontSize:i,tabletFontWeight:s,tabletLetterSpacing:c,tabletLineHeight:d,mobileFontSize:u,mobileFontWeight:p,mobileLetterSpacing:b,mobileLineHeight:m})=>{const{family:h}=l({family:e,type:t});return{desktop:[`font-family: ${h};`,`font-size: ${o}px;`,`font-weight: ${n};`,`letter-spacing: ${a}px;`,`line-height: ${r}em;`].join(""),tablet:[`font-size: ${i}px;`,`font-weight: ${s};`,`letter-spacing: ${c}px;`,`line-height: ${d}em;`].join(""),mobile:[`font-size: ${u}px;`,`font-weight: ${p};`,`letter-spacing: ${b}px;`,`line-height: ${m}em;`].join("")}},z=(e,{getClassName:t=(e=>e)}={})=>e.map(e=>{const{id:o}=e,n=Object(w.a)(e,["id"]),{desktop:a,tablet:r,mobile:i}=T(n),l=t(".brz-tp-"+o.toLowerCase());return[`.brz-ed--desktop ${l}, ${l} { ${a} }`,`.brz-ed--tablet ${l} { ${r} }`,`.brz-ed--mobile ${l} { ${i} }`].join("\n")}).join("\n");var E=o(47);const k=async()=>await(async e=>{const t=await fetch(e),{items:o}=await t.json();return o})(Object(E.a)("googleFonts.json"));var H=o(2),F=o(57),_=o(21);function R(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function M(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?R(Object(o),!0).forEach((function(t){Object(H.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):R(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const L=e=>e.reduce((e,t)=>{const o=parseInt(t);return isNaN(o)||e.includes(o)?e:[...e,o]},[400]),W=e=>e.toLowerCase().replace(/\s+/g,"_"),I=(e=[],t="",o="google")=>"upload"===o?e.find(({id:e})=>e===t):e.find(({family:e})=>W(e)===t),N=e=>Object.entries(e).reduce((e,t)=>{const[o,{data:n}]=t;return M(M({},e),{},"upload"===o?{upload:n}:{google:[...e.google||[],...n]})},{}),A=e=>{const{family:t,category:o,variants:n,brizyId:a,deleted:r}=e;return M(M({id:W(t),title:t,family:`${t}, ${o}`,weights:L(n)},a&&{brizyId:a}),r&&{deleted:r})},D=e=>{const{id:t,family:o,weights:n,brizyId:a,deleted:r}=e;return M(M({id:t,title:o,family:`'${t}'`,weights:L(n)},a&&{brizyId:a}),r&&{deleted:r})},V={config:A,google:A,blocks:A,upload:D},$=async e=>{if(0===e.length)return[];const t=new Map,o=e=>M({brizyId:Object(F.a)()},e),[n,a]=await Promise.all([k(),Object(_.E)()]);return e.forEach(({type:e,family:r})=>{if("google"===e){const e=I(n,r);if(e){const n=t.get("blocks")||[];t.set("blocks",[...n,o(e)])}}if("upload"===e){const e=I(a,r,"upload");if(e){const n=t.get("upload")||[];t.set("upload",[...n,o(e)])}}if("unknowns"===e){const e=I(a,r,"upload");if(e){const n=t.get("upload")||[];t.set("upload",[...n,o(e)])}else{const e=I(n,r);if(e){const n=t.get("blocks")||[];t.set("blocks",[...n,o(e)])}}}}),Object.values([...t]).reduce((e,t)=>{const[o,n]=t;return[...e,{type:o,fonts:n}]},[])};function G({group:e,font:t}){const o=V[e],{family:n}=o(t);return`.brz .brz-root__container,.brz .brz-popup2,.brz .brz-popup {font-family:${n}!important;}`}},function(e,t,o){"use strict";var n=o(2),a=o(0),r=o.n(a),i=o(6),l=o.n(i),s=o(8),c=o(5),d=o.n(c);class u extends r.a.Component{getClassName(){return d()("brz-control__select-option",{active:this.props.active,disabled:this.props.disabled})}render(){const{title:e,disabled:t,onClick:o,value:n,children:a}=this.props,i=t?()=>{}:o;return r.a.createElement("div",{className:this.getClassName(),title:e,"data-value":n,onClick:i},a)}}Object(n.a)(u,"propTypes",{active:l.a.bool,title:l.a.string,disabled:l.a.bool,value:l.a.oneOfType([l.a.string,l.a.number]),onClick:l.a.func}),Object(n.a)(u,"defaultProps",{active:!1,title:"",disabled:!1,value:"",onClick:s.default.noop}),t.a=u},,function(e,t,o){"use strict";o.d(t,"a",(function(){return B}));var n=o(2),a=o(0),r=o.n(a),i=o(8),l=o(5),s=o.n(l),c=o(78),d=o(154),u=o(16),p=o(3),b=o(63),m=o(7),h=o(19),g=o(23),v=o(11);var f=o(57),y=o(94),O=o(109);function S(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function C(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?S(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):S(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const x=Object(f.a)(7);function j({children:e,className:t,component:o,attributes:n={},animationClass:a,renderContent:l=i.identity,v:f,vs:S,vd:j,componentId:B,id:P,onChange:w,meta:{sectionPopup:T,sectionPopup2:z}},E){const k="absolute"===f.elementPosition||"fixed"===f.elementPosition,H=s()(t,null==n?void 0:n.className,k&&Object(v.css)(`${B}-${P}-${x}`,`${P}-${x}`,function(e,t,o){return Object(v.renderStyles)({v:e,vs:t,vd:o,styles:{".brz &&:hover":{interval:["cssStyleOffset"]}}})}(f,S,j)));if(k){var F,_,R,M;const t=m.e(f.tabsState),i=Object(h.h)(Object(g.b)().getState()),v=e=>Object(p.defaultValueValue)({v:f,key:e,device:i,state:t}),S=({x:e,y:t})=>{const o=m.e(f.tabsState),n=Object(h.h)(Object(g.b)().getState()),a=(e,t)=>({[Object(p.defaultValueKey)({key:e,device:n,state:o})]:t});w(b.h(a,e,b.i(a,t,{})))},x=()=>({width:O.b,height:O.a});return r.a.createElement(d.a,{hAlign:null!==(F=b.a(v))&&void 0!==F?F:"left",vAlign:null!==(_=b.e(v))&&void 0!==_?_:"top",xSuffix:null!==(R=b.c(v))&&void 0!==R?R:"px",ySuffix:null!==(M=b.g(v))&&void 0!==M?M:"px",getValue:()=>{var e,t;return{x:null!==(e=b.b(v))&&void 0!==e?e:0,y:null!==(t=b.f(v))&&void 0!==t?t:0}},getContainerSizes:x,onStart:u.d,onChange:S},(t,i)=>r.a.createElement(c.a,{component:null!=o?o:"div",componentProps:C(C({},n),{},{className:s()(H,i)}),animationClass:a,ref:e=>{Object(y.a)(e,t),Object(y.a)(e,E)}},l(e)))}return r.a.createElement(c.a,{iterationCount:null===!1&&(T||z?1/0:1),component:null!=o?o:"div",componentProps:C(C({},n),{},{className:H}),animationClass:a,ref:E},l(e))}const B=Object(a.forwardRef)(j)},,,function(e,t,o){"use strict";o.d(t,"f",(function(){return a})),o.d(t,"a",(function(){return r})),o.d(t,"e",(function(){return i})),o.d(t,"d",(function(){return l})),o.d(t,"b",(function(){return s})),o.d(t,"c",(function(){return c}));var n=o(8);function a(e,t){return void 0===e?t:e}const r=e=>null==e||"number"==typeof e&&Number.isNaN(e);function i(e,t){return r(t)?e:t}function l(e,t,o){return r(t)||t===e?o:t}function s(e,t){if(!r(t))return e(t)}function c(...e){return t=>Object(n.foldr)(e,(e,t)=>r(e)?void 0:t(e),t)}},function(e,t){e.exports=jQuery},function(e,t,o){"use strict";o.d(t,"d",(function(){return a})),o.d(t,"b",(function(){return i})),o.d(t,"c",(function(){return l})),o.d(t,"a",(function(){return s}));var n=o(39);const a=e=>{switch(typeof e){case"string":return e;case"number":return e.toString();default:return}};r=a;var r;const i="",l=e=>{var t;return null!==(t=a(e))&&void 0!==t?t:""},s={read:a,empty:i,append:(e,t)=>e+t,concat:e=>e.join(""),eq:function(e,t){return e===t}}},function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"c",(function(){return a})),o.d(t,"f",(function(){return r})),o.d(t,"e",(function(){return i})),o.d(t,"a",(function(){return l})),o.d(t,"d",(function(){return s}));const n=1170,a=1920,r=768,i=430,l=60,s=440},function(e,t,o){"use strict";var n=o(12),a=o(2),r=o(0),i=o.n(r),l=o(8),s=o(5),c=o.n(s),d=o(83),u=o(15),p=(o(45),o(82)),b=o(90);function m(e,t,o,n){const a=t*o,r=t*n,i=e*t;return Math.max(a,Math.min(r,i))}class h extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{isOpen:!1,currentValue:this.props.defaultValue,position:"bottom-left"}),Object(a.a)(this,"onClickOutside",()=>{this.state.isOpen&&this.setState({isOpen:!1})}),Object(a.a)(this,"handleItemClick",e=>{this.setState({isOpen:!1,currentValue:e}),this.props.onChange(e)}),Object(a.a)(this,"handleContentRef",e=>{this.content=e}),Object(a.a)(this,"handleDropdownNode",e=>{this.dropdown=e}),Object(a.a)(this,"handleLabelClick",()=>{this.setState({isOpen:!this.state.isOpen})})}componentDidMount(){this.props.inPortal||this.reposition()}componentWillReceiveProps(e){this.state.defaultValue!==e.defaultValue&&this.setState({currentValue:e.defaultValue})}getScrollPaneStyle(){const{children:e}=this.props,t=i.a.Children.count(e);let o=0;i.a.Children.forEach(e,e=>{const{items:t}=e.props;t&&t.length&&(o+=t.length)});return{height:m(t+o,this.props.itemHeight,this.props.minItems,this.props.maxItems)}}reposition(){const{bottom:e,width:t,x:o}=this.dropdown.getBoundingClientRect();let{position:n}=this.state;const[a,r]=n.split("-");e>=window.innerHeight&&(n="top-"+r),t+o>=window.innerWidth&&(n=a+"-right"),this.isRepositioning=!0,this.setState({position:n},()=>{this.isRepositioning=!1})}renderLabel(){const{labelType:e}=this.props;switch(e){case"icon":return this.renderLabelIcon();case"input":return this.renderLabelInput();default:throw new Error("Invalid label type "+e)}}renderLabelIcon(){return i.a.createElement(u.b,{icon:this.props.labelIcon})}renderLabelInput(){const{children:e}=this.props,{currentValue:t}=this.state;let o;i.a.Children.forEach(e,e=>{const{items:n}=e.props;if(!o)if(n&&n.length){const n=i.a.Children.toArray(e.props.items);o=n.find(e=>e.props.value===t)}else e.props.value===t&&(o=e)});const n=i.a.createElement(u.b,{icon:"nc-stre-down",className:"brz-control__select--arrow"});return i.a.createElement(i.a.Fragment,null,o||this.findFirstItem(),n)}renderItems(e=this.props.children){const{currentValue:t}=this.state;return i.a.Children.map(e,(e,o)=>{const{value:n,disabled:a,items:r}=e.props;return r&&r.length?i.a.cloneElement(e,{key:o,items:this.renderItems(r)}):i.a.cloneElement(e,{key:o,active:n===t,onClick:a?null:()=>this.handleItemClick(n)})})}renderDropDown(){const{inPortal:e,className:t}=this.props;if(!e)return i.a.createElement("div",{className:"brz-control__select-options",ref:this.handleDropdownNode},i.a.createElement(d.a,{className:"brz-ed-scroll-pane",style:this.getScrollPaneStyle()},this.renderItems()));if(this.state.isOpen&&e){const{top:e,left:o,height:n,width:a}=this.content.getBoundingClientRect(),{scrollLeft:r}=this.content.ownerDocument.documentElement,l=c()("brz-control__portal-select brz-control__select",t),s={top:e+n+3,left:o+r,width:a};return i.a.createElement(b.a,{node:this.content.ownerDocument.body,className:l},i.a.createElement("div",{className:"brz-control__select-options",style:s},i.a.createElement(d.a,{className:"brz-ed-scroll-pane",style:this.getScrollPaneStyle()},this.renderItems())))}}render(){const{className:e,labelType:t,currentValue:o,inputAttributes:a,clickOutsideExceptions:r}=this.props,{position:l,isOpen:s}=this.state,d=c()("brz-control__select","brz-control__select--"+l,e,{opened:s}),u=[...r,".brz-control__portal-select"];return i.a.createElement(p.a,{exceptions:u,onClickOutside:this.onClickOutside},i.a.createElement("div",{className:d,ref:this.handleContentRef},i.a.createElement("div",{className:"brz-control__select-current brz-control__select-current__"+t,onClick:this.handleLabelClick},this.renderLabel()),this.renderDropDown(),i.a.createElement("input",Object(n.a)({type:"hidden",value:o},a))))}findFirstItem(e=this.props.children){let t;return i.a.Children.forEach(e,e=>{const{items:o}=e.props;t||(t=o&&o.length?this.findFirstItem(o):e)}),t}}Object(a.a)(h,"defaultProps",{defaultValue:"",inputAttributes:{},labelType:"input",labelIcon:"nc-menu",minItems:1,maxItems:5,itemHeight:38,arrowIcon:"nc-arrow-down",inPortal:!1,clickOutsideExceptions:[],onChange:l.default.noop}),t.a=h},function(e,t,o){"use strict";o.d(t,"d",(function(){return n})),o.d(t,"a",(function(){return a})),o.d(t,"e",(function(){return r})),o.d(t,"c",(function(){return i})),o.d(t,"b",(function(){return l}));const n=e=>e.page||{},a=e=>e.authorized,r=e=>e.syncAllowed,i=e=>e.fonts||{},l=e=>e.extraFontStyles},function(e,t,o){"use strict";o.d(t,"a",(function(){return u}));var n=o(12),a=o(2),r=o(0),i=o.n(r),l=o(5),s=o.n(l),c=o(129),d=o(431);class u extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{icon:null}),Object(a.a)(this,"isUnmounted",!1)}componentDidMount(){const{name:e,type:t}=this.props;this.getSvg(t,e)}componentWillReceiveProps({name:e,type:t}){const{name:o,type:n}=this.props;o===e&&n===t||this.getSvg(t,e)}shouldComponentUpdate({name:e,type:t,className:o},{icon:n}){const{name:a,type:r,className:i}=this.props,{icon:l}=this.state;return l!==n||a!==e||r!==t||i!==o}componentWillUnmount(){this.isUnmounted=!0}fetchIcon(e,t){const o=Object(c.c)(e,t),n=new Headers({"Content-Type":"application/x-www-form-urlencoded; charset=UTF-8"});return fetch(o,{headers:n,method:"GET"}).then(e=>e.text())}async getSvg(e,t){const o=await this.fetchIcon(e,t);this.isUnmounted||this.setState({icon:Object(d.responseToSvg)(o)})}getSvgContent(e){if(e){const t=(new DOMParser).parseFromString(e,"text/html").body.firstChild||{innerHTML:null,attributes:{}},o=t.attributes,n=t.innerHTML;let a={};const r={"xmlns:xlink":"xmlnsXlink","xml:space":"xmlSpace"};for(let e=0;e<o.length;e++){let{name:t,value:n}=o[e];r[t]&&(t=r[t]),a[t]=n}return{attr:a,innerHtml:n}}return{innerHtml:null,attr:{}}}renderForEdit(){const{className:e}=this.props,t=s()("brz-icon-svg",e),{innerHtml:o,attr:a}=this.getSvgContent(this.state.icon);return o&&i.a.createElement("svg",Object(n.a)({},a,{className:t,dangerouslySetInnerHTML:{__html:o}}))}renderForView(){const{className:e,type:t,name:o}=this.props,n=s()("brz-icon-svg",e);return i.a.createElement("svg",{className:n,"data-type":t,"data-name":o})}render(){return this.renderForEdit()}}Object(a.a)(u,"defaultProps",{className:"",name:"",type:""})},function(e,t,o){"use strict";function n(e){return new Promise((function(t,o){const n=new Image;n.onload=function(){t(this)},n.onabort=function(){o(`preloadImage("${e}") onabort`)},n.onerror=function(){o(`preloadImage("${e}") onerror`)},n.src=e}))}o.d(t,"e",(function(){return n})),o.d(t,"g",(function(){return l})),o.d(t,"c",(function(){return g})),o.d(t,"f",(function(){return v})),o.d(t,"b",(function(){return y})),o.d(t,"d",(function(){return f})),o.d(t,"a",(function(){return O}));var a=o(8),r=o(21);const i={acceptedExtensions:["jpeg","jpg","png","gif"],onBase64:e=>{},onUpload:e=>{},onError:e=>console.log("uploadImage default onError",e)};function l(e,t){const{acceptedExtensions:o,onBase64:n,onUpload:l,onError:c}=a.default.extend({},i,t);Promise.resolve(e).then(e=>{const t=e.name.split(".").pop();if(!(t&&a.default.some(o,e=>e===t.toLowerCase())))throw{status:406,message:"Extension is not accepted"};return e}).then(s).then(e=>{n(e);const t=e.replace(/data:image\/.+;base64,/,"");return Object(r.uploadImage)({base64:t})}).then(l).catch(c)}function s(e){return new Promise((function(t,o){const n=new FileReader;n.onload=function(e){t(e.target.result)},n.onerror=function(){o("Error read file.")},n.onabort=function(){o("Abort read file.")},n.readAsDataURL(e)}))}var c=o(17),d=o(108);const u=e=>{const t=a.default.mapObject(e,e=>"number"===e?Math.round(e):e);return Object(d.a)(t)};var p=o(156);const b=c.a.get("urls").site,m=b.includes("?")?b+"&":b+"/?",h={};function g(e,t={iW:5e3,iH:"any"}){if(!e)return null;{const n=u(t);if(p.a.has(e)||0===e.indexOf("wp-")){var o;const t=null!==(o=c.a.get("prefix"))&&void 0!==o?o:"brizy",a=Object(d.a)({[t+"_media"]:e,[t+"_crop"]:n,[t+"_post"]:c.a.get("wp").page});return m+a}return h[e]||(h[e]=!0,Object(r.k)(e).then(()=>{h[e]=!1,p.a.add(e)})),function(e,t={iW:5e3,iH:"any"}){if(e){const o=u(t);return[c.a.get("urls").image,o,e].join("/")}return null}(e,t)}}function v(e){if(!e)return null;if(!(p.a.has(e)||0===e.indexOf("wp-"))&&!h[e])return h[e]=!0,Object(r.k)(e).then(()=>{h[e]=!1,p.a.add(e)}),function(e){return e?[c.a.get("urls").image,"original",e].join("/"):null}(e);const{customFile:t}=c.a.get("urls");return`${t}${e}`}function f(e,t,o){const n=e>t?e/o:t/o;return{width:Math.round(e/n),height:Math.round(t/n)}}function y(e,t={cW:5e3,cH:0}){const{cW:o,cH:n}=t;if(!e||"number"!=typeof o||"number"!=typeof n)throw new Error("Invalid arguments");return`{{${e.replace(/{{|}}/g,"")} cW='${o}' cH='${n}'}}`}function O(e=""){return e.split(".").pop().toLowerCase()}},function(e,t,o){"use strict";o.d(t,"a",(function(){return a}));var n=o(17);function a(e){return n.a.get("urls").assets+"/"+e}},function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"a",(function(){return a}));const n=e=>{if(""===e||"number"!=typeof e&&"string"!=typeof e)return;const t=Number(e);return isNaN(t)?void 0:t},a={read:n}},function(e,t,o){"use strict";o.d(t,"a",(function(){return s})),o.d(t,"c",(function(){return d})),o.d(t,"b",(function(){return l}));var n=o(2),a=o(0),r=o.n(a),i=o(17);const l=()=>i.a.get("user").role;class s extends a.Component{render(){const{allow:e,children:t,component:o,render:n,fallbackComponent:a,fallbackRender:i}=this.props;if(e.includes(l())){if(t)return t;if(o)return r.a.createElement(o,null);if(n)return n()}else{if(a)return r.a.createElement(a,null);if(i)return i()}return null}}Object(n.a)(s,"defaultProps",{allow:[]});var c=o(12);const d=({component:e,fallbackComponent:t,allow:o=[],render:n,fallbackRender:a})=>{function i(i,s){if(o.includes(l())){if(e)return r.a.createElement(e,Object(c.a)({},i,{ref:s}));if(n)return n(i)}else{if(t)return r.a.createElement(t,Object(c.a)({},i,{ref:s}));if(a)return a(i)}return null}return i.displayName=`RolesHOC(${e.displayName||e.name})`,r.a.forwardRef(i)}},function(e,t,o){"use strict";(function(e){var n=o(31),a=o(2),r=o(0),i=o.n(r),l=o(24),s=o(37),c=o(17),d=o(23),u=o(49),p=o(14),b=o(19),m=o(550),h=o(126);function g(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}const v=c.a.get("menuData"),f={duplicate:["ctrl+D","cmd+D","right_cmd+D"],copy:["ctrl+C","cmd+C","right_cmd+C"],paste:["ctrl+V","cmd+V","right_cmd+V"],pasteStyles:["ctrl+shift+V","shift+ctrl+V","cmd+shift+V","shift+cmd+V","right_cmd+shift+V","shift+right_cmd+V"],delete:["del","cmd+backspace","cmd+del","right_cmd+backspace","right_cmd+del"],horizontalAlign:["ctrl+right","ctrl+left","cmd+right","cmd+left","right_cmd+right","right_cmd+left"],verticalAlign:["ctrl+up","ctrl+down","cmd+up","cmd+down","right_cmd+up","right_cmd+down"]},y=i.a.createContext({});class O extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"contextValue",{getParentContextMenuItems:this.getItems}),Object(a.a)(this,"getItems",()=>{let e=this.props,{children:t,shortcutsTypes:o=[],keyNames:r=[]}=e,i=Object(n.a)(e,["children","shortcutsTypes","keyNames"]);const{getParentContextMenuItems:l}=this.context;let s=function(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?g(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):g(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}({onKeyUp:()=>{},onKeyDown:()=>{},keyNames:[...(c=o,c.reduce((e,t)=>(f[t]&&(e=[...e,...f[t]]),e),[])),...r]},i);var c;return s=l?[s,...l()]:[s],s})}handleFilterItems(t){if(t.length&&t[0].id.startsWith("key-helper")){const e=t.find(e=>"key-helper-toolbar-escape"===e.id);return e?[e]:t}const o=e.Brizy.activeEditorComponent;if(!o)return[];const n=o.getPath(),a=Object(d.b)().getState(),r=Object(b.x)(a),i=Object(b.e)(a),s=[...n],c=S(r);if(f.paste.includes(t[0].keyName)){const{value:e}=Object(p.k)(n,c,({type:e})=>"Wrapper"===e||"Cloneable"===e);if(e&&i.value){const{value:o}=Object(p.k)(i.path,S(i.value),({type:e})=>"Wrapper"===e||"Cloneable"===e);if(o&&("Cloneable"===o.type||"Cloneable"===e.type)&&o.value.items[0].type!==e.value.items[0].type){const o=t.find(({id:t})=>t===e.value._id);return o?[o]:[]}}}let u=[];for(let e=0;e<=n.length;e++){const e=Object(l.getIn)(c,s);if(e){const o=t.find(({id:t})=>t===e._id);if(o)return[o]}u.unshift(s.pop())}return[]}shouldShortCutHandle(e,{keyName:t}){const o=f.delete.includes(t),n=f.paste.includes(t),a=f.copy.includes(t),r=o||n||a,i=e.target.closest("[contenteditable=true]")||e.target.closest("input")||e.target.closest("textarea");return!(e.target.closest([".brz-ed-sidebar__right","#brz-toolbar-portal",".brz-ed-tooltip__content-portal",".brz-ed-popup-integrations"].join(","))||i&&r)}render(){const{children:e,id:t}=this.props,o=this.getItems();return i.a.createElement(y.Provider,{value:this.contextValue},e,i.a.createElement(m.a,{items:o,id:t,shouldKeyDownHandle:this.shouldShortCutHandle,shouldKeyUpHandle:this.shouldShortCutHandle,filterItems:this.handleFilterItems}))}}function S(e){return Object(p.p)(e=>{const{type:t,value:o}=e;if("Menu"===t){const{menuSelected:t,symbols:n={}}=o,a=t||v[0].id,r=v.find(e=>e.id===a)||{};return Object(s.b)(e,e=>{e.value.items=Object(h.d)(r.items||[],n)})}return e},e)}Object(a.a)(O,"contextType",y),t.a=Object(u.c)({allow:["admin"],component:O,fallbackComponent:({children:e})=>e||null})}).call(this,o(86))},function(e,t,o){"use strict";o.d(t,"a",(function(){return i})),o.d(t,"b",(function(){return h})),o.d(t,"e",(function(){return x})),o.d(t,"i",(function(){return j})),o.d(t,"f",(function(){return f.b})),o.d(t,"c",(function(){return f.a})),o.d(t,"k",(function(){return B.a})),o.d(t,"g",(function(){return P.d})),o.d(t,"j",(function(){return P.e})),o.d(t,"d",(function(){return P.c})),o.d(t,"h",(function(){return w}));var n=o(17),a=o(47);function r(){return Object(a.a)("editor/img/block-placeholder.jpg")}function i(e){if(!e)return r();const t=n.a.get("urls").blockThumbnails;return t?`${t}/${e.id}.jpg`:Object(a.a)(`thumbs/${e.id}.jpg`)}var l=o(2),s=o(8),c=o(37),d=o(23),u=o(108),p=o(19);function b(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function m(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?b(Object(o),!0).forEach((function(t){Object(l.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):b(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const h=(e,t={})=>{const o=function(e,t){"GlobalBlock"===e.type&&(e=Object(p.l)(Object(d.b)().getState())[e.value._id].data);if(!0===t.searchScreenshotInStoreFirst){const t=Object(p.C)(Object(d.b)().getState());t[e.value._id]&&(e=Object(c.a)(e,o=>{o.meta=m(m({},o.meta),t[e.value._id])}))}const{_thumbnailSrc:o,_thumbnailWidth:n,_thumbnailHeight:a}=g(e);if(o&&n&&a){return{url:s.default.compose(v,g)(e),width:n,height:a}}return null}(e,t);let i;if(o)i=o;else{const{blocksThumbnailSizes:t}=Object(d.b)().getState(),o=t[e.blockId];if(o){const t=n.a.get("urls").blockThumbnails;i={url:t?`${t}/${e.blockId}.jpg`:Object(a.a)(`thumbs/${e.blockId}.jpg`),width:o[0],height:o[1]}}else i={url:r(),width:500,height:200}}return i},g=e=>e.meta||e.value||{};function v({_thumbnailSrc:e,_thumbnailTime:t}){var o;const a=n.a.get("urls").site,r=n.a.get("wp").page,i=null!==(o=n.a.get("prefix"))&&void 0!==o?o:"brizy",l=Object(u.a)({[i+"_post"]:r,[i+"_block_screenshot"]:e,t:t||Date.now()});return Object(u.b)(a)?`${a}&${l}`:`${a}?${l}`}var f=o(115),y=o(14);function O(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function S(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?O(Object(o),!0).forEach((function(t){Object(l.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):O(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const C=(e,t,o)=>e.filter(e=>{var n,a;return(null===(n=t[e])||void 0===n||null===(a=n.position)||void 0===a?void 0:a.align)===o&&"publish"===t[e].status}).sort((e,n)=>t[e].position[o]-t[n].position[o]),x=(e,t,o)=>{if(y.c||y.g)return e;const n=Object(f.b)(e,t,o),a=C(n,t,"top"),r=C(n,t,"bottom");return[...a,...e,...r]};function j(e,t){var o;const n=Number(e.id),a=((null===(o=e.data)||void 0===o?void 0:o.items)||[]).reduce((e,t)=>("GlobalBlock"!==t.type&&(e[t.value._id]={data:t}),e),{}),r=Object.keys(a),i=x(r,t,n),l=S(S({},a),t);return i.map(e=>l[e].data)}var B=o(205),P=o(107);const w=(e,t)=>{const o=n.a.get("urls").assetsExternal;switch(e){case"popups":return`${o}/popups/resolves/${t}.json`;case"stories":return`${o}/stories/resolves/${t}.json`;case"templates":return`${o}/templates/resolves/${t}.json`;default:return`${o}/kits/resolves/${t}.json`}}},function(e,t,o){"use strict";o.d(t,"a",(function(){return w}));var n=o(2),a=o(0),r=o.n(a),i=o(35),l=o.n(i),s=o(6),c=o.n(s),d=o(140),u=o(49),p=o(12);class b extends r.a.Component{render(){const{helperText:e,title:t,onChange:o,inactive:n,meta:a}=this.props;return r.a.createElement(d.Item,{onClick:o,disabled:n},r.a.createElement("span",{className:"react-contexify__item--title"},t),r.a.createElement("span",{className:"react-contexify__item--placeholder"},e(a)))}}Object(n.a)(b,"defaultProps",{title:"",helperText:()=>"",inactive:!1,onChange:()=>{}});var m=o(15);function h(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function g(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?h(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):h(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class v extends r.a.Component{render(){const{title:e,icon:t,items:o,meta:n}=this.props,a=g(g({},n),{},{depth:n.depth+1});return 0===n.depth&&0===n.index?r.a.createElement(r.a.Fragment,null,r.a.createElement(d.Item,{key:"title",className:"react-contexify--title"},t&&r.a.createElement(m.b,{icon:t})," ",e),r.a.createElement(B,{data:o,meta:g(g({},a),{},{isInSubMenu:!1})})):r.a.createElement(d.Submenu,{className:"react-contexify__item__submenu",label:e,hoverDelay:0,arrow:""},r.a.createElement(B,{data:o,meta:g(g({},a),{},{isInSubMenu:!0})}))}}Object(n.a)(v,"defaultProps",{title:"",icon:"",items:[]});var f={button:b,group:v};function y(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function O(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?y(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):y(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function S(e,t){const o=[...e];for(var n=0;n<t.length;n++){let r=!1;for(var a=0;a<e.length;a++)t[n].id===e[a].id&&t[n].type===e[a].type&&t[n].items&&e[a].items&&(r=!0,o[a]=O(O(O({},t[n]),e[a]),{},{items:S(e[a].items,t[n].items)}));r||o.push(t[n])}return o}function C(e,t){return e.filter((e,o)=>"function"==typeof e.disabled?!e.disabled(e,O(O({},t),{},{isInSubMenu:!(0===t.depth&&0===o)})):!e.disabled)}function x(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function j(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?x(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):x(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class B extends r.a.Component{render(){const{data:e,meta:t}=this.props;return C(e,t).map((e,o)=>{const n=f[e.type],a=o,i=j(j({},t),{},{index:o});return r.a.createElement(n,Object(p.a)({},e,{key:a,meta:i}))})}}Object(n.a)(B,"defaultProps",{meta:{}});class P extends r.a.Component{constructor(...e){super(...e),Object(n.a)(this,"getItems",()=>this.props.items)}getChildContext(){return{getParentContextMenuExtendItems:this.getItems}}render(){const{children:e}=this.props;return e}}Object(n.a)(P,"childContextTypes",{getParentContextMenuExtendItems:c.a.func});var w=Object(u.c)({allow:["admin"],component:P,fallbackComponent:({children:e})=>e});class T extends a.Component{constructor(...e){super(...e),Object(n.a)(this,"handleContextMenu",e=>{e.nativeEvent=e,this.props.onContextMenu(e)})}componentDidMount(){l.a.findDOMNode(this).addEventListener("contextmenu",this.handleContextMenu)}componentWillUnmount(){l.a.findDOMNode(this).removeEventListener("contextmenu",this.handleContextMenu)}render(){return this.props.children}}class z extends a.Component{constructor(...e){super(...e),Object(n.a)(this,"getItems",()=>{let{componentId:e,items:t}=this.props;const{getParentContextMenuExtendItems:o,getParentContextMenuItems:n}=this.context;return t=[e,o?S(t,o()):t],t=n?[t,...n()]:[t],t}),Object(n.a)(this,"renderProvider",e=>r.a.createElement(T,e,this.props.children))}getChildContext(){return{getParentContextMenuItems:this.getItems}}squashItems(e){return e.reduce((e,[t,o])=>{var n,a;return e.componentIdMap[t]||(e.componentIdMap[t]=!0,e.items=(n=e.items,a=o,[...n,...a])),e},{componentIdMap:{},items:[]}).items}render(){const{id:e,children:t}=this.props,o=this.squashItems(this.getItems()),n={depth:0};return 0===C(o,n).length?t:r.a.createElement(r.a.Fragment,null,r.a.createElement(d.ContextMenuProvider,{id:e,render:this.renderProvider},t),l.a.createPortal(r.a.createElement(d.ContextMenu,{id:e},r.a.createElement(B,{data:o,meta:n})),document.body))}}Object(n.a)(z,"defaultProps",{id:"",items:[]}),Object(n.a)(z,"contextTypes",{getParentContextMenuExtendItems:c.a.func,getParentContextMenuItems:c.a.func}),Object(n.a)(z,"childContextTypes",{getParentContextMenuItems:c.a.func});t.b=Object(u.c)({allow:["admin"],component:z,fallbackComponent:({children:e})=>e})},function(e,t,o){"use strict";o.d(t,"a",(function(){return a})),o.d(t,"f",(function(){return r})),o.d(t,"g",(function(){return i})),o.d(t,"d",(function(){return l})),o.d(t,"e",(function(){return s})),o.d(t,"c",(function(){return c})),o.d(t,"b",(function(){return d})),o.d(t,"h",(function(){return u}));var n=o(8);const a=(e,t,o=[])=>{if(t(e))return{obj:e,path:o};for(let n in e)if(e.hasOwnProperty(n)&&"object"==typeof e[n]&&null!==e[n]){const{obj:r,path:i}=a(e[n],t,[...o,n]);if(r)return{obj:r,path:i}}return{obj:null,path:null}},r=(e,t,...o)=>{for(let n in e)e.hasOwnProperty(n)&&(e[n]&&"object"==typeof e[n]&&r(e[n],t,...o),t(n,e[n],e,...o))},i=(e,t)=>{for(let o in e)e.hasOwnProperty(o)&&e[o]&&"object"==typeof e[o]&&i(e[o],t);t(e)},l=e=>{const t={};for(let o in e)Array.isArray(e[o])||"object"!=typeof e[o]||null===e[o]?t[o]=e[o]:Object.assign(t,l(e[o]));return t};function s(e){return e.reduce((e,[t,o])=>(e[t]=o,e),{})}const c=(e,t)=>Array.isArray(t)?t.map(e):t&&"object"==typeof t?n.default.mapObject(t,e):t,d=(e,t)=>!(!t||!e.every(e=>t.hasOwnProperty(e))),u=e=>null!==e&&"object"==typeof e?e:{}},,,function(e,t,o){"use strict";o.d(t,"a",(function(){return g}));var n=o(2),a=o(0),r=o.n(a),i=o(8),l=o(5),s=o.n(l),c=o(1);const d=13,u=66,p=73,b=85,m=89,h=90;class g extends a.Component{constructor(...e){super(...e),Object(n.a)(this,"contentRef",r.a.createRef()),Object(n.a)(this,"unmounted",!1),Object(n.a)(this,"lastNotifiedValue",void 0),Object(n.a)(this,"handleClick",e=>{e.preventDefault();const t=this.contentRef.current;null==t||t.classList.add("brz-ed-dd-cancel")}),Object(n.a)(this,"handleKeyDown",e=>{const t=e.which,o=e.metaKey||e.ctrlKey;t!==d&&(!o||t!==u&&t!==p&&t!==b)&&(!o||t!==h&&t!==m)||e.preventDefault()}),Object(n.a)(this,"handleInput",e=>{this.notifyChange(e.currentTarget.textContent||"")}),Object(n.a)(this,"notifyChange",i.default.debounce(e=>{this.unmounted||(this.lastNotifiedValue=e,this.props.onChange(e))},1e3)),Object(n.a)(this,"handleBlur",()=>{var e;null===(e=this.contentRef.current)||void 0===e||e.classList.remove("brz-ed-dd-cancel")}),Object(n.a)(this,"handlePaste",e=>{e.preventDefault();const t=e.clipboardData.getData("text/plain");document.execCommand("insertHTML",!1,t)})}shouldComponentUpdate(e){return void 0!==this.lastNotifiedValue&&this.lastNotifiedValue!==e.value}componentDidUpdate(){this.lastNotifiedValue=this.props.value;const e=this.contentRef.current;var t;e&&e.textContent!==this.lastNotifiedValue&&(e.textContent=null!==(t=this.lastNotifiedValue)&&void 0!==t?t:"")}componentWillUnmount(){this.unmounted=!0}render(){const{tagName:e,value:t,className:o}=this.props,n=s()(o,"brz-"+e,"brz-text__editor");return r.a.createElement(e,{ref:this.contentRef,className:n,contentEditable:!0,dangerouslySetInnerHTML:{__html:t},onClick:this.handleClick,onKeyDown:this.handleKeyDown,onPaste:this.handlePaste,onInput:this.handleInput,onBlur:this.handleBlur})}}Object(n.a)(g,"defaultProps",{value:Object(c.a)("Editable Text"),tagName:"span",className:""})},function(e,t,o){"use strict";o.d(t,"a",(function(){return r}));var n=o(422),a=o.n(n);const r=(e=36)=>a()("abcdefghijklmnopqrstuvwxyz",e)},function(e,t,o){"use strict";o.d(t,"c",(function(){return S})),o.d(t,"a",(function(){return y})),o.d(t,"b",(function(){return C}));var n=o(2),a=o(0),r=o.n(a),i=o(8),l=o(5),s=o.n(l),c=o(212),d=o(780),u=o(90),p=o(82),b=o(779),m=o(153),h=o(32);function g(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function v(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?g(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):g(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class f extends r.a.Component{constructor(e){super(e);const{placement:t,arrowPlacement:o}=e;this.state={placement:t,arrowPlacement:o},this.isRepositioning=!1,this.contentRef=r.a.createRef()}componentDidMount(){const{isOpen:e,toolbar:t}=this.props;e&&t&&this.repositionByToolbar(t)}repositionByToolbar(e){const t=document.documentElement.clientWidth,o=document.documentElement.clientHeight,n=document.documentElement.scrollTop,a=document.documentElement.classList.contains("brz-ow-hidden"),{toolbarRef:r,toolbarCSSPosition:i,toolbarItemIndex:l}=e,s=Object(m.a)(),c=r.current,d=c.getBoundingClientRect(),u=c.querySelector(`.brz-ed-toolbar__items > .brz-ed-toolbar__item:nth-child(${l})`).getBoundingClientRect(),p=this.contentRef.current.getBoundingClientRect(),b=(a?0:n)+d.bottom+14+Math.max(p.height,300)<=(a?o:Math.max(o,document.body.clientHeight)),g=(a?0:n)+d.top-14-p.height>=0,v="fixed"===i?0:n;let f;const y=()=>{const e=`calc(100% - ${v}px - ${d.top}px + 14px)`;f={position:i,top:"unset",bottom:e,left:S()}},O=()=>{const e=v+d.top+d.height+14;f={position:i,top:e,left:S()}},S=()=>{const e=t-p.width-2,o=u.left+u.width/2-p.width/2;return Object(h.a)(o,2,e)};let C;"above"===s&&(g?(C="above",y()):(C="below",O())),"below"===s&&(b?(C="below",O()):(C="above",y()));const x="above"===C?"top":"bottom";let j={left:u.left+u.width/2-f.left};this.isRepositioning=!0,this.setState({placementStyle:f,arrowPlacement:x,arrowPlacementStyle:j},()=>this.isRepositioning=!1)}renderInToolbar(){const{className:e,isOpen:t,size:o,arrow:n,children:a}=this.props,{placementStyle:i,arrowPlacement:l,arrowPlacementStyle:c}=this.state,d=s()("brz-ed-animated brz-ed-animated--fadeInUp","brz-ed-tooltip__overlay",{["brz-ed-tooltip--"+o]:o},{"brz-invisible":!t},e),u=s()("brz-ed-arrow","brz-ed-arrow--"+l);return r.a.createElement("div",{ref:this.contentRef,className:d,style:i},n&&r.a.createElement("div",{className:u,style:c}),a)}renderSimple(){const{className:e,size:t,arrow:o,node:n,placement:a,offset:i,children:l}=this.props,c=s()("brz-ed-animated brz-ed-animated--fadeInUp","brz-ed-tooltip__overlay",{["brz-ed-tooltip--"+t]:t},e);return r.a.createElement(b.a,{referenceElement:n,placement:a,eventsEnabled:!1,modifiers:{offset:{offset:`0, ${i}px`},computeStyle:{gpuAcceleration:!1}}},({ref:e,style:t,arrowProps:n,placement:a})=>r.a.createElement("div",{ref:e,className:c,style:t},o&&r.a.createElement("div",{className:"brz-ed-arrow brz-ed-arrow--"+a,ref:n.ref,style:v(v({},n.style),{},{margin:"0"})}),l))}render(){return this.props.toolbar?this.renderInToolbar():this.renderSimple()}}Object(n.a)(f,"defaultProps",{className:"",isOpen:!1,placement:"top-center",placementStyle:{},arrow:!0,arrowPlacement:"top-center",arrowPlacementStyle:{},size:"",offset:15,toolbar:null,inPortal:!1,node:null});const y=e=>{const{className:t,children:o,onClick:n}=e,a=s()("brz-ed-tooltip__item",t);return r.a.createElement("div",{className:a,onClick:n},o)};let O=[],S=()=>O[O.length-1];class C extends r.a.Component{constructor(...e){super(...e),Object(n.a)(this,"state",{isOpen:!1,isHidden:!1}),Object(n.a)(this,"contentRef",r.a.createRef()),Object(n.a)(this,"handleClickOutside",()=>{const{isOpen:e}=this.state;e&&this.close()}),Object(n.a)(this,"handleContentClick",()=>{const{isOpen:e,isHidden:t}=this.state;e?t?this.show():this.close():this.open()}),Object(n.a)(this,"handleMouseEnter",()=>{this.setState({needClose:!1}),this.open()}),Object(n.a)(this,"handleMouseLeave",()=>{this.setState({needClose:!0}),this.timeout=setTimeout(()=>{this.state.needClose&&this.close()},this.props.closeDelay)})}componentWillUnmount(){const e=O.indexOf(this);-1!==e&&O.splice(e),clearTimeout(this.timeout)}open(){const{isOpen:e}=this.state;e||this.setState({isOpen:!0},()=>{O.push(this),this.props.onOpen()})}close(){const{isOpen:e}=this.state;e&&this.setState({isOpen:!1},()=>{O.pop(),this.props.onClose()})}show(){const{isHidden:e}=this.state;e&&this.setState({isHidden:!1})}hide(){const{isHidden:e}=this.state;e||this.setState({isHidden:!0})}reposition(){this.forceUpdate()}renderOverlay(){const{isOpen:e,isHidden:t}=this.state;if(!e)return null;const{overlayClassName:o,nodeRef:n,overlay:a,arrow:i,placement:l,size:c,offset:d,toolbar:p,inPortal:b,portalNode:m}=this.props,h=n&&n.current||this.contentRef.current,g=m||h.ownerDocument.body,v=r.a.createElement(f,{className:o,node:h,arrow:i,placement:l,size:c,offset:d,isOpen:e,toolbar:p,inPortal:b},a);return b||p?r.a.createElement(u.a,{node:g,className:s()("brz-reset-all","brz-ed-tooltip__content-portal",{"brz-invisible":t})},v):v}renderInToolbar(){const{title:e,children:t,openOnClick:o}=this.props;return r.a.createElement(r.a.Fragment,null,r.a.createElement("div",{title:e,ref:this.contentRef,className:"brz-ed-tooltip__content",onClick:o?this.handleContentClick:i.default.noop},t),this.renderOverlay())}renderSimple(){const{title:e,children:t,openOnClick:o}=this.props;return r.a.createElement(c.c,null,r.a.createElement(d.a,null,()=>r.a.createElement("div",{title:e,ref:this.contentRef,className:"brz-ed-tooltip__content",onClick:o?this.handleContentClick:i.default.noop},t)),this.renderOverlay())}render(){const{toolbar:e,openOnClick:t,className:o,clickOutsideExceptions:n}=this.props,a=s()("brz-ed-tooltip",{"brz-ed-tooltip__static":!e},{"brz-ed-tooltip--opened":this.state.isOpen},o),l=[...n,".brz-ed-tooltip__content-portal"];return r.a.createElement(p.a,{onClickOutside:this.handleClickOutside,exceptions:l},r.a.createElement("div",{className:a,onMouseEnter:t?i.default.noop:this.handleMouseEnter,onMouseLeave:t?i.default.noop:this.handleMouseLeave},e?this.renderInToolbar():this.renderSimple()))}}Object(n.a)(C,"defaultProps",{className:"",overlayClassName:"",arrow:!0,placement:"top-center",openOnClick:!0,closeDelay:0,overlay:"",size:"",title:"",offset:15,toolbar:null,inPortal:!1,portalNode:null,clickOutsideExceptions:[],nodeRef:null,onOpen:()=>{},onClose:()=>{}})},function(e,t,o){"use strict";o.d(t,"f",(function(){return n})),o.d(t,"c",(function(){return a})),o.d(t,"d",(function(){return r})),o.d(t,"e",(function(){return i})),o.d(t,"a",(function(){return l})),o.d(t,"k",(function(){return s})),o.d(t,"h",(function(){return c})),o.d(t,"i",(function(){return d})),o.d(t,"g",(function(){return u})),o.d(t,"j",(function(){return p})),o.d(t,"b",(function(){return b}));const n={start:["mousedown"],move:["mousemove"],end:["mouseup"]};function a(e,t){let o=e;for(;o;){if(t(o))return o;o=o.parentElement}}function r(e){let t=e,o=0;for(;t=t.parentElement;)o++;return o}function i(e){const t=e.parentElement;return t?Array.from(t.children).indexOf(e):-1}function l(e,...t){t.filter(String).forEach(t=>e.classList.add(t))}function s(e,...t){t.forEach(t=>e.classList.remove(t))}function c(e,t,o,n){const a=o-e,r=n-t;return Math.sqrt(a*a+r*r)}function d(e,t,o,n){const a=t<n,r=e<o;return{isAbove:a,isBelow:!a,isLeft:r,isRight:!r}}function u(e,t,o){return e>=o.left&&e<=o.right&&t>=o.top&&t<=o.bottom}function p(e){return{x:e.left+.5*(e.right-e.left),y:e.top+.5*(e.bottom-e.top)}}function b(e,t,o){return e<t?t:e>o?o:e}},,function(e,t,o){"use strict";function n({v:e}){const{tabsState:t}=e;return"tabHover"===t?"hover":"normal"}o.d(t,"i",(function(){return n})),o.d(t,"d",(function(){return r})),o.d(t,"e",(function(){return i})),o.d(t,"f",(function(){return c})),o.d(t,"a",(function(){return d})),o.d(t,"b",(function(){return u})),o.d(t,"c",(function(){return p})),o.d(t,"g",(function(){return b})),o.d(t,"h",(function(){return m}));var a=o(3);o(46);function r({v:e,device:t,state:o}){const r=n({v:e,state:o}),i=Object(a.defaultValueValue)({v:e,key:"borderStyle",device:t,state:o});return"hover"===r&&void 0!==e.hoverBorderStyle&&null!==e.hoverBorderStyle?""===e.hoverBorderStyle?"none":e.hoverBorderStyle:""===i?"none":i}function i({v:e,device:t,state:o,current:r}){const i=n({v:e,state:o}),l=Object(a.defaultValueValue)({v:e,key:"borderWidthType",device:t,state:o}),s=Object(a.defaultValueValue)({v:e,key:"borderWidthType",device:t,state:"hover"}),c=Object(a.defaultValueValue)({v:e,key:"borderWidth",device:t,state:o}),d=Object(a.defaultValueValue)({v:e,key:"borderWidth",device:t,state:"hover"}),u=Object(a.defaultValueValue)({v:e,key:r,device:t,state:o}),p=Object(a.defaultValueValue)({v:e,key:r,device:t,state:"hover"});return"hover"===i&&"grouped"===s?d+"px":"hover"===i&&"ungrouped"===s?p+"px":"grouped"===l?c+"px":u+"px"}var l=o(18),s=o(13);function c({v:e,device:t,state:o,prefix:r="color"}){const i=n({v:e,state:o}),{hex:c}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:r+"Hex",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:r+"Palette",device:t,state:o})),d=Object(a.defaultValueValue)({v:e,key:r+"Opacity",device:t,state:o}),{hex:u}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:r+"Hex",device:t,state:"hover"}),Object(a.defaultValueValue)({v:e,key:r+"Palette",device:t,state:"hover"})),p=Object(a.defaultValueValue)({v:e,device:t,key:r+"Opacity",state:"hover"});return"hover"===i?Object(l.c)(u,p):Object(l.c)(c,d)}function d({v:e,device:t,state:o,prefix:r="bg"}){const i=n({v:e,state:o}),c=Object(a.defaultValueValue)({v:e,key:r+"ColorType",device:t,state:o}),{hex:d}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:r+"ColorHex",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:r+"ColorPalette",device:t,state:o})),u=Object(a.defaultValueValue)({v:e,key:r+"ColorOpacity",device:t,state:o}),p=Object(a.defaultValueValue)({v:e,key:r+"ColorType",device:t,state:"hover"}),{hex:b}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:r+"ColorHex",device:t,state:"hover"}),Object(a.defaultValueValue)({v:e,key:r+"ColorPalette",device:t,state:"hover"})),m=Object(a.defaultValueValue)({v:e,key:r+"ColorOpacity",device:t,state:"hover"});return"hover"===i&&"solid"===p?Object(l.c)(b,m):"solid"===c?Object(l.c)(d,u):"transparent"}function u({v:e,device:t,state:o}){const r=n({v:e,state:o}),i=Object(a.defaultValueValue)({v:e,key:"bgColorType",device:t,state:o}),c=Object(a.defaultValueValue)({v:e,key:"gradientType",device:t,state:o}),d=Object(a.defaultValueValue)({v:e,key:"gradientLinearDegree",device:t,state:o}),{hex:u}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:"bgColorHex",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:"bgColorPalette",device:t,state:o})),p=Object(a.defaultValueValue)({v:e,key:"bgColorOpacity",device:t,state:o}),b=Object(a.defaultValueValue)({v:e,key:"gradientStartPointer",device:t,state:o}),{hex:m}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:"gradientColorHex",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:"gradientColorPalette",device:t,state:o})),h=Object(a.defaultValueValue)({v:e,key:"gradientColorOpacity",device:t,state:o}),g=Object(a.defaultValueValue)({v:e,key:"gradientFinishPointer",device:t,state:o}),v=Object(a.defaultValueValue)({v:e,key:"gradientRadialDegree",device:t,state:o}),f=Object(a.defaultValueValue)({v:e,key:"bgColorType",device:t,state:"hover"}),y=Object(a.defaultValueValue)({v:e,key:"gradientType",device:t,state:"hover"}),O=Object(a.defaultValueValue)({v:e,key:"gradientLinearDegree",device:t,state:"hover"}),{hex:S}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:"bgColorHex",device:t,state:"hover"}),Object(a.defaultValueValue)({v:e,key:"bgColorPalette",device:t,state:"hover"})),C=Object(a.defaultValueValue)({v:e,key:"bgColorOpacity",device:t,state:"hover"}),x=Object(a.defaultValueValue)({v:e,key:"gradientStartPointer",device:t,state:"hover"}),{hex:j}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:"gradientColorHex",device:t,state:"hover"}),Object(a.defaultValueValue)({v:e,key:"gradientColorPalette",device:t,state:"hover"})),B=Object(a.defaultValueValue)({v:e,key:"gradientColorOpacity",device:t,state:"hover"}),P=Object(a.defaultValueValue)({v:e,key:"gradientFinishPointer",device:t,state:"hover"}),w=Object(a.defaultValueValue)({v:e,key:"gradientRadialDegree",device:t,state:"hover"});return"hover"===r&&"gradient"===f?"linear"===y?`linear-gradient(${O}deg, ${Object(l.c)(S,C)} ${x}%, ${Object(l.c)(j,B)} ${P}%)`:`radial-gradient(circle ${w}px,${Object(l.c)(S,C)} ${x}%, ${Object(l.c)(j,B)} ${P}%)`:"hover"===r&&"solid"===f?"none":"gradient"===i?"linear"===c?`linear-gradient(${d}deg, ${Object(l.c)(u,p)} ${b}%, ${Object(l.c)(m,h)} ${g}%)`:`radial-gradient(circle ${v}px, ${Object(l.c)(u,p)} ${b}%, ${Object(l.c)(m,h)} ${g}%)`:"none"}function p({v:e,device:t,state:o}){const r=n({v:e,state:o}),{hex:i}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:"borderColorHex",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:"borderColorPalette",device:t,state:o})),c=Object(a.defaultValueValue)({v:e,key:"borderColorOpacity",device:t,state:o}),{hex:d}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:"borderColorHex",device:t,state:"hover"}),Object(a.defaultValueValue)({v:e,key:"borderColorPalette",device:t,state:"hover"})),u=Object(a.defaultValueValue)({v:e,key:"borderColorOpacity",device:t,state:"hover"});return"hover"===r?Object(l.c)(d,u):Object(l.c)(i,c)}function b({v:e}){const{hoverTransition:t}=e;return`all 0.${t}s ease-in-out`}function m(){return"background, border-radius, color, border-color, box-shadow"}o(129)},function(e,t,o){"use strict";var n={};o.r(n),o.d(n,"facebook",(function(){return Ht}));var a={};o.r(a),o.d(a,"email",(function(){return ga})),o.d(a,"wordpress",(function(){return fa})),o.d(a,"mailchimp",(function(){return Oa})),o.d(a,"sendinblue",(function(){return Ca})),o.d(a,"zapier",(function(){return ja})),o.d(a,"campaignmonitor",(function(){return Pa})),o.d(a,"convertkit",(function(){return Ta})),o.d(a,"activecampaign",(function(){return Ea})),o.d(a,"getresponse",(function(){return Ha})),o.d(a,"mailjet",(function(){return _a})),o.d(a,"egoi",(function(){return Ma})),o.d(a,"hubspot",(function(){return Wa})),o.d(a,"mailerlite",(function(){return Na})),o.d(a,"drip",(function(){return Da})),o.d(a,"smtp",(function(){return $a})),o.d(a,"gmail_smtp",(function(){return Ua})),o.d(a,"mailgun",(function(){return qa})),o.d(a,"madmimi",(function(){return Xa})),o.d(a,"constantcontact",(function(){return Ja})),o.d(a,"aweber",(function(){return er})),o.d(a,"salesforce",(function(){return or})),o.d(a,"sendgrid",(function(){return ar})),o.d(a,"recaptcha",(function(){return ir}));var r={};o.r(r),o.d(r,"google",(function(){return Ir})),o.d(r,"uploader",(function(){return ti}));var i=o(2),l=o(0),s=o.n(l),c=o(37),d=o(210);const u={};class p extends d.EventEmitter{addChangeListener(e,t){this.on(e,t)}removeChangeListener(e,t){this.removeListener(e,t)}get(e){return u[e]}set(e,t){u[e]=t,this.emit(e,t)}}const b=new p;b.setMaxListeners(1/0);var m=b,h=o(5),g=o.n(h),v=o(8),f=o(17),y=o(111),O=o(43),S=o(34),C=o(31),x=o(12),j=o(552),B=o(60),P=o.n(B);function w(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function T(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?w(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):w(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const z=({onScroll:e,forwardedRef:t,style:o,children:n})=>{const a=Object(l.useCallback)(e=>{t(e?e.view:null)},[]);return s.a.createElement(P.a,{ref:a,style:T(T({},o),{},{overflow:"hidden"}),onScroll:e},n)},E=Object(l.forwardRef)((e,t)=>s.a.createElement(z,Object(x.a)({},e,{forwardedRef:t})));E.displayName="CustomScrollbarsVirtualList";const k=e=>{const t=Object(l.forwardRef)((t,o)=>{let{style:n}=t,a=Object(C.a)(t,["style"]);return s.a.createElement("div",Object(x.a)({ref:o,style:T(T({},n),{},{paddingLeft:e,paddingTop:e,marginBottom:e})},a))});return t.displayName="InnerElement",t};var H=e=>{const{height:t,width:o,columnCount:n,columnWidth:a,rowCount:r,rowHeight:i,initialScrollTop:l,renderItem:c,style:d={},gutter:u=0}=e;return s.a.createElement(j.a,{height:t,width:o,columnCount:n,columnWidth:a+u,rowCount:r,rowHeight:i+u,style:d,initialScrollTop:l,outerElementType:E,innerElementType:k(u)},c)},F=o(15);function _(e,t){switch(t.type){case"wait":if("delay"===e.status)return{status:"waiting"};break;case"resolve":if("delay"===e.status||"waiting"===e.status)return{status:"resolved",value:t.value};break;case"reject":if("delay"===e.status||"waiting"===e.status)return{status:"rejected",reason:t.reason}}return e}function R({getPromise:e,renderResolved:t,renderRejected:o,renderWaiting:n,delayMs:a=0}){const r=a&&a>0,[i,s]=Object(l.useReducer)(_,{status:r?"delay":"waiting"});return Object(l.useEffect)(()=>{let t,o=!1;return r&&(t=window.setTimeout(()=>{o||s({type:"wait"})},a)),e().then(e=>{o||(clearTimeout(t),s({type:"resolve",value:e}))}).catch(e=>{o||(clearTimeout(t),s({type:"reject",reason:e}))}),()=>{o=!0}},[]),"waiting"===i.status&&n?n():"resolved"===i.status?t(i.value):"rejected"===i.status&&o?o(i.reason):null}var M=o(442);const L=[{id:1,title:"Animals/Nature"},{id:2,title:"Arrows"},{id:3,title:"Business/Finance"},{id:4,title:"Clothes/Accessories"},{id:5,title:"Design/Development"},{id:6,title:"Emoticons"},{id:7,title:"Energy/Environment"},{id:8,title:"Files/Folders"},{id:10,title:"Food"},{id:11,title:"Home/Buildings"},{id:12,title:"Healthcare/Medical"},{id:13,title:"Holidays"},{id:14,title:"Loaders"},{id:15,title:"Maps/Location"},{id:16,title:"Multimedia"},{id:18,title:"School/Education"},{id:19,title:"Shopping"},{id:20,title:"Social Media"},{id:21,title:"Sport"},{id:22,title:"Technology"},{id:23,title:"Text Editing"},{id:24,title:"Touch Gestures"},{id:25,title:"Transportation"},{id:26,title:"Travel"},{id:27,title:"User Interface"},{id:28,title:"Users"},{id:29,title:"Weather"}],W=[{title:"Accessibility",id:1},{title:"Alert",id:2},{title:"Animals",id:3},{title:"Arrows",id:4},{title:"Audio & Video",id:5},{title:"Automotive",id:6},{title:"Autumn",id:7},{title:"Beverage",id:8},{title:"Buildings",id:9},{title:"Business",id:10},{title:"Camping",id:11},{title:"Charity",id:12},{title:"Chat",id:13},{title:"Chess",id:14},{title:"Childhood",id:15},{title:"Clothing",id:16},{title:"Code",id:17},{title:"Communication",id:18},{title:"Computers",id:19},{title:"Construction",id:20},{title:"Currency",id:21},{title:"Date & Time",id:22},{title:"Design",id:23},{title:"Editors",id:24},{title:"Education",id:25},{title:"Emoji",id:26},{title:"Energy",id:27},{title:"Files",id:28},{title:"Finance",id:29},{title:"Fitness",id:30},{title:"Food",id:31},{title:"Fruits & Vegetables",id:32},{title:"Games",id:33},{title:"Tabletop Gaming",id:34},{title:"Genders",id:35},{title:"Halloween",id:36},{title:"Hands",id:37},{title:"Health",id:38},{title:"Holiday",id:39},{title:"Hotel",id:40},{title:"Household",id:41},{title:"Images",id:42},{title:"Interfaces",id:43},{title:"Logistics",id:44},{title:"Maps",id:45},{title:"Maritime",id:46},{title:"Marketing",id:47},{title:"Mathematics",id:48},{title:"Medical",id:49},{title:"Moving",id:50},{title:"Music",id:51},{title:"Objects",id:52},{title:"Payments & Shopping",id:53},{title:"Pharmacy",id:54},{title:"Political",id:55},{title:"Religion",id:56},{title:"Science",id:57},{title:"Science Fiction",id:58},{title:"Security",id:59},{title:"Shapes",id:60},{title:"Shopping",id:61},{title:"Social",id:62},{title:"Spinners",id:63},{title:"Sports",id:64},{title:"Spring",id:65},{title:"Status",id:66},{title:"Summer",id:67},{title:"Toggle",id:68},{title:"Travel",id:69},{title:"Users & People",id:70},{title:"Vehicles",id:71},{title:"Weather",id:72},{title:"Winter",id:73},{title:"Writing",id:74}],I=[{id:2,name:"fa",title:"FA",icon:"nc-full-cube"}],N=[{id:0,name:"outline",title:"Outline",icon:"nc-cube"},{id:1,name:"glyph",title:"Glyph",icon:"nc-full-cube"}];var A=o(68),D=o(84),V=o(39),$=o(48);const G=Object(V.c)(e=>e>=0&&e<=2?e:void 0,Math.round,$.b);var U=o(41);const K=e=>{if(null===e||"object"!=typeof e)return;const t=U.d(e.title),o=U.d(e.name),n=G(e.type);if(void 0===t||void 0===o||void 0===n)return;const a=U.d(e.family);return{title:t,name:o,type:n,cat:Object(D.g)(e.cat).map($.b).filter(Boolean),family:a}},q=e=>Object(D.g)(null==e?void 0:e.default).map(K).filter(Boolean),Y=e=>{switch(e){case 0:return o.e(4).then(o.t.bind(null,781,3)).then(q);case 1:return o.e(3).then(o.t.bind(null,782,3)).then(q);case 2:return o.e(2).then(o.t.bind(null,783,3)).then(q)}},X=()=>A.j?A.g?[...N,...I]:I:N,Z=e=>{var t;switch(e.type){case 0:case 1:{const t=X()[e.type].name;return`nc-${t} nc-${t}-${e.name}`}case 2:return`${null!==(t=e.family)&&void 0!==t?t:"fa"} fa-${e.name}`}},J=e=>{switch(e){case 0:case 1:return L;case 2:return W}};function Q(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ee(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Q(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Q(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const te=X(),oe=te.reduce((e,{id:t,name:o})=>(e[t]=o,e),{});class ne extends l.Component{constructor(...e){var t;super(...e),Object(i.a)(this,"state",{typeId:(null!==(t=te.find(e=>e.name===this.props.type))&&void 0!==t?t:te[0]).id,categoryId:"*",search:""}),Object(i.a)(this,"containerRef",s.a.createRef()),Object(i.a)(this,"onIconClick",e=>{this.props.onClose(),setTimeout(()=>{this.props.onChange(e)},0)})}componentDidUpdate(){if(this.containerRef.current){const{templateFonts:e}=f.a.get("urls");Object(M.a)(this.containerRef.current,e)}}renderTabs(){const e=te.map(e=>s.a.createElement("div",{key:e.id,className:g()("brz-ed-popup-tab-item",{active:e.id===this.state.typeId}),onClick:()=>this.setState({typeId:e.id})},s.a.createElement("div",{className:"brz-ed-popup-tab-icon"},s.a.createElement(F.b,{icon:e.icon})),s.a.createElement("div",{className:"brz-ed-popup-tab-name"},e.title)));return s.a.createElement("div",{className:"brz-ed-popup-header"},s.a.createElement("div",{className:"brz-ed-popup-header__tabs"},e),s.a.createElement("div",{className:"brz-ed-popup-btn-close",onClick:this.props.onClose}))}renderFilters(){const{categoryId:e,search:t,typeId:o}=this.state,n=[{id:"*",name:"all",title:"All Categories"},...J(o)];return s.a.createElement(s.a.Fragment,null,s.a.createElement("div",{className:"brz-ed-popup__categories"},s.a.createElement(O.a,{className:"brz-ed-popup__select brz-ed-popup__select--block-categories brz-ed-popup-control__select--light",defaultValue:e,maxItems:10,itemHeight:30,onChange:e=>this.setState({categoryId:e})},n.map(({id:e,title:t})=>s.a.createElement(S.a,{key:e,value:e},t)))),s.a.createElement("div",{className:"brz-ed-popup__search"},s.a.createElement("input",{type:"text",className:"brz-input brz-ed-popup__input",placeholder:"Enter Search Keyword",onChange:e=>this.setState({search:e.target.value}),value:t}),s.a.createElement("div",{className:g()("brz-ed-popup__search--icon",{active:t.length>0})},s.a.createElement(F.b,{icon:"nc-search"}))))}filterIcons(e){const{typeId:t,categoryId:o,search:n}=this.state,a=new RegExp(n,"i");return e.filter(({type:e,cat:r,title:i})=>t===e&&("*"===o||r.includes(o))&&(""===n||a.test(i)))}render(){const{name:e,type:t,opened:o,onClose:n}=this.props;return s.a.createElement(y.a,{opened:o,onClose:n},s.a.createElement("div",{ref:this.containerRef,className:"brz-ed-popup-wrapper"},this.renderTabs(),s.a.createElement("div",{className:"brz-ed-popup-content brz-ed-popup-pane brz-ed-popup-icons"},s.a.createElement("div",{className:"brz-ed-popup-body"},s.a.createElement("div",{className:"brz-ed-popup__head--search brz-d-xs-flex brz-align-items-center brz-justify-content-xs-center"},this.renderFilters()),s.a.createElement("div",{className:"brz brz-ed-popup-icons__grid"},s.a.createElement(R,{getPromise:()=>{return e=X().map(e=>e.id),Promise.all(e.map(Y)).then(D.a);var e},renderResolved:o=>{const n=this.filterIcons(o);return s.a.createElement(ae,{icons:n,value:{name:e,type:t},onChange:this.onIconClick})},renderWaiting:()=>s.a.createElement(re,null),delayMs:1e3}))))))}}function ae({icons:e,value:t,onChange:o}){const[n,a]=Object(l.useState)(null),r=Object(l.useRef)(null),i=e.findIndex(e=>e.name===t.name),c=Math.floor(e.length/8)+1,d=Math.floor(i/8),u=0===d?0:d-1;if(Object(l.useEffect)(()=>{if(r.current){const{width:e,height:t}=r.current.getBoundingClientRect();a({width:e,height:t})}},[]),!n)return s.a.createElement("div",{style:{height:"100%"},ref:r},s.a.createElement(re,null));const{width:p,height:b}=n,m=74*u;return s.a.createElement(H,{width:p,height:b,columnCount:8,columnWidth:68,rowCount:c,rowHeight:68,gutter:6,initialScrollTop:m,renderItem:({rowIndex:n,columnIndex:a,style:r})=>{const i=e[8*n+a];if(!i)return null;const{type:l,name:c}={type:oe[i.type],name:i.name},d=g()("brz-ed-popup-icons__grid__item",{active:l===t.type&&c===t.name});return s.a.createElement("div",{style:ee(ee({},r),{},{left:r.left+6,top:r.top+6,width:r.width-6,height:r.height-6}),className:d,onClick:()=>{o({type:l,name:c})}},s.a.createElement("i",{className:g()(["brz-font-icon",Z(i)])}))}})}function re(){return s.a.createElement("div",{style:{height:"100%",display:"flex",justifyContent:"center",alignItems:"center",color:"#828b92",fontSize:"35px"}},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))}Object(i.a)(ne,"defaultProps",{name:"nc-star",type:"outline",onChange:v.default.noop});var ie=o(1);function le(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function se(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?le(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):le(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class ce extends l.Component{constructor(e){super(e),Object(i.a)(this,"handleLoading",e=>{this.setState({loading:e})});const{currentTab:t,tabs:o}=this.props;this.state={loading:!0,currentTab:t,tabs:o}}handleTabChange(e){this.state.loading&&this.props.blockTabsWhenLoading||this.setState({currentTab:e})}handleTabUpdate(e,t){const{tabs:o}=this.state,n=o.map(o=>o.id===e?se(se({},o),t):o);this.setState({tabs:n})}renderHeader(){const{currentTab:e,tabs:t}=this.state,{onClose:o}=this.props,n=t.map(t=>{const{id:o,icon:n,img:a,title:r}=t,i=g()("brz-ed-popup-tab-item",{active:o===e});return s.a.createElement("div",{key:o,className:i,onClick:()=>this.handleTabChange(o)},n&&s.a.createElement("div",{className:"brz-ed-popup-tab-icon"},s.a.createElement(F.b,{icon:n})),a?s.a.createElement("div",{className:"brz-ed-popup-tab-image"},s.a.createElement("img",{className:"brz-img",src:a,alt:r})):s.a.createElement("div",{className:"brz-ed-popup-tab-name"},r))});return s.a.createElement("div",{className:"brz-ed-popup-header"},s.a.createElement("div",{className:"brz-ed-popup-header__tabs"},n),s.a.createElement("div",{className:"brz-ed-popup-btn-close",onClick:o}))}renderCurrentTab(){const{tabs:e,loading:t,currentTab:o}=this.state;return e.reduce((e,{id:n,component:a})=>n===o?[s.a.createElement(a,Object(x.a)({},this.props,{key:n,loading:t,onLoading:this.handleLoading,onTabUpdate:e=>{this.handleTabUpdate(n,e)}}))]:e,[])}renderTabs(){const{tabs:e,loading:t,currentTab:o}=this.state;return e.map(({id:e,component:n})=>{const a=g()("brz-ed-popup-integration-"+e,{"brz-hidden":e!==o});return s.a.createElement(n,Object(x.a)({},this.props,{key:e,loading:t,className:a,onTabUpdate:t=>{this.handleTabUpdate(e,t)}}))})}render(){const{opened:e,onClose:t}=this.props;return s.a.createElement(y.a,{className:"brz-ed-popup-integrations",opened:e,onClose:t},s.a.createElement("div",{className:"brz-ed-popup-wrapper"},this.renderHeader(),s.a.createElement("div",{className:"brz-ed-popup-content"},this.state.loading?this.renderCurrentTab():this.renderTabs())))}}Object(i.a)(ce,"defaultProps",{value:{},opened:!1,tabs:[],currentTab:"",blockTabsWhenLoading:!0,onClose:v.noop});var de=ce,ue=o(47),pe=o(21);const be=s.a.createContext({app:{},connectedApps:[],stages:[],stage:"",oldStage:"",onChange:(e,t)=>{},onChangeNext:v.noop,onChangePrev:v.noop,onConnectApp:v.noop,onDisconnectApp:v.noop,onChangeProgress:v.noop,onError:v.noop});class me extends l.Component{render(){const{stage:e,apps:t,children:o,onClose:n}=this.props;return s.a.Children.map(o,o=>e===o.props.num&&s.a.cloneElement(o,{apps:t,onClose:n}))}}Object(i.a)(me,"defaultProps",{stage:"",apps:[]});var he=e=>{const{stage:t,children:o}=e;return s.a.createElement("div",{className:"brz-ed-popup-integrations__progress"},s.a.Children.map(o,e=>e&&s.a.cloneElement(e,{stage:t})))};class ge extends l.Component{render(){const{stage:e,apps:t,children:o}=this.props;return s.a.Children.map(o,o=>o&&s.a.cloneElement(o,{stage:e,apps:t}))}}Object(i.a)(ge,"defaultProps",{stage:"",apps:[]}),Object(i.a)(ge,"Steps",me),Object(i.a)(ge,"Step",e=>{let{render:t}=e;return t(Object(C.a)(e,["render"]))}),Object(i.a)(ge,"Progress",he),Object(i.a)(ge,"Stage",({stage:e,num:t,text:o,img:n})=>{const a=g()("brz-ed-popup-integrations__progress-stage",{"brz-ed-popup-integrations__progress-stage--active":t===e});return s.a.createElement("div",{className:a},s.a.createElement("span",{className:"brz-span"},n&&s.a.createElement("img",{className:"brz-img",src:n,alt:"Logo"}),o))});var ve=ge;class fe extends l.Component{render(){const{apps:e,render:t}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations__apps brz-d-xs-flex brz-flex-xs-wrap"},e.map((e,o)=>t(e,o)))}}Object(i.a)(fe,"defaultProps",{apps:[],render:v.default.noop});var ye=o(58);const Oe=f.a.get("pro"),Se=f.a.get("urls");class Ce extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{tooltipOpen:!1}),Object(i.a)(this,"iconRef",s.a.createRef()),Object(i.a)(this,"handleTooltipOpen",()=>{this.setState({tooltipOpen:!0})}),Object(i.a)(this,"handleTooltipClose",()=>{this.setState({tooltipOpen:!1})})}renderProInfo(){return s.a.createElement("div",{className:"brz-ed-tooltip-content__pro"},s.a.createElement("p",{className:"brz-p brz-ed-tooltip-content__pro-title"},Object(ie.a)("You’ll need Brizy PRO to use this integration")),s.a.createElement("p",{className:"brz-p brz-ed-tooltip-content__pro-body"},s.a.createElement("a",{className:"brz-a",href:Se.upgradeToPro,rel:"noopener noreferrer",target:"_blank"},s.a.createElement(F.b,{icon:"nc-lock"}),Object(ie.a)("Get Brizy PRO"))))}renderPro(){const{img:e,title:t}=this.props,o=g()("brz-ed-popup-integrations__app-logo",this.state.tooltipOpen&&"brz-ed-popup-integrations__app-logo--open");return s.a.createElement("div",{className:"brz-ed-popup-integrations__app brz-ed-popup-integrations__app--pro"},s.a.createElement(ye.b,{overlayClassName:"brz-ed-tooltip--delay-2",size:"small",offset:"5",openOnClick:!1,nodeRef:this.iconRef,overlay:this.renderProInfo(),onOpen:this.handleTooltipOpen,onClose:this.handleTooltipClose},s.a.createElement("div",{className:o},s.a.createElement("img",{className:"brz-img",src:e,alt:t}),s.a.createElement("span",{ref:this.iconRef,className:"brz-span brz-ed-popup-integrations__app-icon brz-ed-popup-integrations__app-icon--pro"},s.a.createElement(F.b,{icon:"nc-lock"})),s.a.createElement("p",{className:"brz-p brz-ed-badge brz-ed-badge--pro"},"pro")),s.a.createElement("div",{className:"brz-ed-popup-integrations__app-title"},t)))}renderFree(){const{img:e,title:t,loading:o,active:n,onClick:a}=this.props,r=g()("brz-ed-popup-integrations__app",n&&"brz-ed-popup-integrations__app--connected",o&&"brz-ed-popup-integrations__app--loading");return s.a.createElement("div",{className:r,onClick:a},s.a.createElement("div",{className:"brz-ed-popup-integrations__app-logo"},s.a.createElement("img",{className:"brz-img",src:e,alt:t}),n&&!o&&s.a.createElement("span",{className:"brz-span brz-ed-popup-integrations__app-icon"},s.a.createElement(F.b,{icon:"nc-check-small"})),o&&s.a.createElement("span",{className:"brz-span brz-ed-popup-integrations__app-icon"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))),s.a.createElement("div",{className:"brz-ed-popup-integrations__app-title"},t))}render(){return!Oe&&this.props.pro?this.renderPro():this.renderFree()}}Object(i.a)(Ce,"defaultProps",{img:"",pro:!1,shortTitle:"",loading:!1,active:!1,onClick:v.default.noop});const xe=f.a.get("urls");class je extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{loadingApp:"",onConnectApp:v.default.noop})}componentDidUpdate(e){this.props.error!==e.error&&this.state.loadingApp&&this.setState({loadingApp:""})}handleChangeApp(e){const{onConnectApp:t}=this.context;t(e),this.setState({loadingApp:e.id})}renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderProException(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-pro brz-mb-lg-0"},s.a.createElement("span",{className:"brz-span"},Object(ie.a)("Some integrations are available only in PRO")),s.a.createElement("a",{className:"brz-ed-btn brz-ed-btn-width-2 brz-ed-btn-sm brz-ed-btn-icon brz-ed-btn-icon--left brz-ed-btn-rounded brz-ed-btn-pro",rel:"noopener noreferrer",href:xe.upgradeToPro,target:"_blank"},s.a.createElement(F.b,{icon:"nc-lock"}),Object(ie.a)("Get Brizy PRO")))}render(){const{apps:e,height:t,proExceptions:o,error:n}=this.props,{connectedApps:a}=this.context,{loadingApp:r}=this.state;return s.a.createElement(P.a,{style:{height:t}},n&&this.renderError(),o&&this.renderProException(),s.a.createElement(fe,{apps:e,render:e=>s.a.createElement(Ce,Object(x.a)({},e,{key:e.id,loading:r===e.id,active:a.includes(e.id),onClick:()=>{this.handleChangeApp(e)}}))}))}}Object(i.a)(je,"contextType",be),Object(i.a)(je,"defaultProps",{apps:[],height:"100%",proExceptions:!1,error:null});var Be=je;class Pe extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{loading:!0,showProgress:!0,connectedApp:"",connectedApps:[],stage:this.props.stage,stages:this.props.stages,oldStage:"",data:{},error:null,appError:null}),Object(i.a)(this,"appsData",[]),Object(i.a)(this,"appsComponent",{}),Object(i.a)(this,"proExceptions",!1),Object(i.a)(this,"handleConnectApp",async e=>{const{id:t,stages:o}=e;this.setState(Object(c.a)(n=>{n.stages=o,n.connectedApp=t,n.data[t]=e}),()=>{this.handleNext()})}),Object(i.a)(this,"handleDisconnectApp",e=>{const{stage:t,stages:o}=this.props;this.setState(Object(c.a)(n=>{const a=n.connectedApps;n.stage=t,n.stages=o,n.connectedApps=a.filter(t=>t!==e)}))}),Object(i.a)(this,"handleProgress",e=>{this.setState(e)}),Object(i.a)(this,"handleChange",(e,t)=>{this.setState(Object(c.a)(o=>{o.data[e].data=t}))}),Object(i.a)(this,"handleNext",async e=>{const{stages:t,stage:o}=this.state,n=t.findIndex(({type:e})=>e===o)+1,a=e||t[n].type,r=this.getComponent(a);let i=!1;if(r&&"function"==typeof r.onBeforeLoad){const e=t[n+1].type,o={onChangeNext:t=>{const o=t||e;i=!0,this.handleNext(o)}};await r.onBeforeLoad(this.getContextValue(),o)}i||this.setState({stage:a,oldStage:o})}),Object(i.a)(this,"handlePrev",e=>{this.setState(Object(c.a)(t=>{if("appList"===e){const{stage:e,stages:o}=this.props;t.stage=e,t.stages=o,t.connectedApp=""}else{var o;const{stage:n,stages:a}=t,r=a.findIndex(({type:e})=>e===n)-1;t.stage=e||(null===(o=a[r])||void 0===o?void 0:o.type)||"",t.oldStage=n,t.connectedApp=-1===r?"":t.connectedApp}}))}),Object(i.a)(this,"handleError",e=>{this.setState({error:e})})}getContextValue(){const{connectedApp:e,connectedApps:t,data:o,stages:n,stage:a,oldStage:r}=this.state;return{app:o[e]||{},connectedApps:t,stages:n,stage:a,oldStage:r,onChange:this.handleChange,onChangeNext:this.handleNext,onChangePrev:this.handlePrev,onConnectApp:this.handleConnectApp,onDisconnectApp:this.handleDisconnectApp,onChangeProgress:this.handleProgress,onError:this.handleError}}getConnectedApps(e){const{connectedApps:t}=this.state;return Array.isArray(e)?e.reduce((e,t)=>t.completed?[...e,t.id]:e,t):t}getComponent(e){return this.appsComponent[this.state.connectedApp][e]}renderLoading(){return s.a.createElement("div",{className:"brz-ed-popup-content--loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))}renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.state.error))}renderApps(){const{error:e,appError:t}=this.state;return s.a.createElement(s.a.Fragment,null,e&&this.renderError(),s.a.createElement(Be,{apps:this.appsData,proExceptions:this.proExceptions,error:t}))}renderSteps(){var e;const{showProgress:t,stage:o,stages:n,connectedApp:a,data:r}=this.state,i=t&&!(null===(e=n.find(e=>e.type===o))||void 0===e?void 0:e.hideProgress),l=n.reduce((e,t,o,n)=>{const i={num:t.type};return o===n.findIndex(e=>e.title)?i.img=r[a].img:i.text=t.title,t.title?[...e,s.a.createElement(ve.Stage,Object(x.a)({key:o},i))]:e},[]);return s.a.createElement(be.Provider,{value:this.getContextValue()},s.a.createElement(ve,{stage:o},i&&l.length>0&&s.a.createElement(ve.Progress,null,l),s.a.createElement(ve.Steps,{onClose:this.props.onClose},n.map((e,t)=>{const o=this.getComponent(e.type);return s.a.createElement(ve.Step,{key:t,num:e.type,render:e=>o&&s.a.createElement(o,Object(x.a)({},e,{apps:this.appsData}))})}))))}renderContent(){const{stage:e,stages:t}=this.state;return s.a.createElement(be.Provider,{value:this.getContextValue()},""!==e&&t.length?this.renderSteps():this.renderApps())}render(){const e=g()("brz-ed-popup-integration",this.props.className);return s.a.createElement("div",{className:e},this.state.loading?this.renderLoading():this.renderContent())}}Object(i.a)(Pe,"defaultProps",{className:"",tab:{},stage:"",stages:[],onLoading:v.default.noop,onTabUpdate:v.default.noop,onClose:v.default.noop});var we=Pe;function Te(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ze(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Te(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Te(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const Ee=(e,t={})=>{let o=new URL(e);return Object.entries(t).forEach(([e,t])=>{o.searchParams.append(e,t)}),o},ke=e=>e.json().then(t=>ze(ze({},t),{},{status:e.status,ok:e.ok,data:t.data||null})).then(He).catch(()=>{throw{status:500,data:"Server Error"}}),He=e=>{if(e.success)return e;{const{data:t}=e;return ze(ze({},e),{},{status:t.code||e.status})}},Fe=(e,t,o,n)=>{let a=e&&JSON.parse(e)||[];const r=t&&t.length||0;let i=t.filter(e=>e.required).length;!a.some(({target:e})=>"email"===e)&&o.some(({type:e})=>e&&"email"===e.toLowerCase())&&(a=((e,t)=>{const o=t.find(({type:e})=>e&&"email"===e.toLowerCase());return e.push({sourceId:o._id,sourceTitle:o.label,target:"email"}),e})(a,o),i--);let l=0,s=0;return o.map(({_id:e,label:o})=>{const c=a.find(({sourceId:t})=>t===e);let d=null;return c&&c.target&&"_auto_generate"!==c.target?d=c.target:(_e(r+s,n)||s<i?(d=Re(t,a,l),l++):d="_auto_generate",s++),{sourceId:e,sourceTitle:o,target:d}})},_e=(e,t)=>t&&e>=t.maxFields,Re=(e,t,o)=>{const n=v.default.pluck(e,"slug"),a=v.default.pluck(t,"target");return v.default.difference(n,a)[o]},Me=(e,t,o="select")=>{if("select"===o){const o=v.default.pluck(e.filter(e=>e.required),"slug"),n=v.default.pluck(t,"target");return!v.default.difference(o,n).length}if("input"===o)return 0===t.filter(e=>""===e.target).length},Le=e=>/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(String(e).toLowerCase());function We(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}const Ie=e=>{const{api:t}=f.a.get("wp"),o=f.a.get("editorVersion"),n=Ee(t.url,function(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?We(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):We(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}({action:t.getAccounts,hash:t.hash,version:o},e||{}));return Object(pe.I)(n,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(ke).then(e=>e)},Ne=e=>{const{api:t}=f.a.get("wp"),o=f.a.get("editorVersion"),n=Ee(t.url,{action:t.deleteAccount,hash:t.hash,version:o,id:e});return Object(pe.I)(n,{method:"DELETE",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(ke).then(e=>e)};var Ae=o(127),De=o(152);class Ve extends l.Component{render(){const{className:e,size:t,color:o,rightIcon:n,leftIcon:a,loading:r,disabled:i,children:l,onClick:c}=this.props,d=g()("brz-button brz-ed-btn","brz-ed-btn-sm brz-ed-btn-rounded",e,r?"brz-ed-btn--loading":"brz-ed-btn-icon","brz-ed-btn-width-"+t,"brz-ed-btn-"+o,{"brz-ed-btn-icon--left":a},{"brz-ed-btn-icon--right":n},{"brz-ed-btn--disabled":i});return s.a.createElement("button",{className:d,onClick:c},r?s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}):s.a.createElement(s.a.Fragment,null,a&&s.a.createElement(F.b,{icon:a}),l,n&&s.a.createElement(F.b,{icon:n})))}}Object(i.a)(Ve,"defaultProps",{className:"",type:"",color:"gray",size:1,rightIcon:"",leftIcon:"",loading:!1,disabled:!1,onClick:v.default.noop});var $e=Ve;class Ge extends l.Component{renderOptions(){const{active:e,data:{accounts:t,usedAccount:o,completed:n},disconnectLoading:a,onActive:r,onDisconnect:i}=this.props,l=t.map(({name:e,id:t})=>s.a.createElement(De.a,{value:t,key:t},e||"Account "+t,t===o&&n&&s.a.createElement("div",{title:"Disconnect",className:"brz-ed-popup-integrations--delete",onClick:i},s.a.createElement(F.b,{icon:a?"nc-circle-02":"nc-connection",className:a?"brz-ed-animated--spin":""}))));return s.a.createElement(P.a,{autoHeight:!0,autoHeightMax:"100%",style:{height:"auto"}},s.a.createElement(Ae.b,{className:"brz-ed-popup-integrations-option__radio",name:"list",defaultValue:e,onChange:r},l))}renderError(){const{error:e,data:{accounts:t}}=this.props;return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},0===t.length&&Object(ie.a)("Accounts are empty. Please connect a new account and try again."),e))}render(){const{data:{accounts:e},error:t,nextLoading:o,prevLoading:n,connectLoading:a,onConnect:r,onPrev:i,onNext:l}=this.props,c=e.length>0;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__account"},s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("SELECT ACCOUNT")))),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},(!c||t)&&this.renderError(),c&&this.renderOptions(),s.a.createElement("div",{className:"brz-ed-popup-integrations-new__option",onClick:r},s.a.createElement(F.b,{icon:a?"nc-circle-02":"nc-add",className:a?"brz-ed-animated--spin":""}),Object(ie.a)("Connect a new account")),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},s.a.createElement($e,{size:3,leftIcon:"nc-arrow-left",loading:n,onClick:i},Object(ie.a)("Back")),s.a.createElement($e,{color:"teal",rightIcon:"nc-arrow-right",loading:o,onClick:l},Object(ie.a)("Continue")))))}}Object(i.a)(Ge,"defaultProps",{id:"",title:"",shortTitle:"",description:"",img:"",form:{},data:{},active:"",nextLoading:!1,prevLoading:!1,connectLoading:!1,disconnectLoading:!1,onActive:v.default.noop,onPrev:v.default.noop,onNext:v.default.noop,onConnect:v.default.noop,onDisconnect:v.default.noop});var Ue=Ge;var Ke=e=>{const{title:t="",value:o="",icon:n="",type:a="text",required:r=!1,loading:i=!1,onChange:l=v.noop,onKeyDown:c=v.noop,onClickIcon:d=v.noop}=e;return s.a.createElement("div",{className:"brz-input__placeholder"},s.a.createElement("label",{className:"brz-label"},s.a.createElement("input",{required:!0,className:"brz-input",name:t,type:a,value:o,onChange:l,onKeyDown:c}),s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},t,r&&s.a.createElement("span",{className:"brz-span"},"(",Object(ie.a)("required"),")")))),n&&s.a.createElement("div",{className:"brz-input__placeholder-icon"},i?s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}):s.a.createElement(F.b,{icon:n,onClick:d})))};class qe extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"handleKeyDown",e=>{13===e.which&&this.props.onNext()})}renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderInputs(){const{data:e,onChange:t}=this.props;return e.map((e,o)=>{const{title:n,name:a,value:r}=e;return s.a.createElement(Ke,{key:o,title:n,name:a,required:!0,value:r,onChange:({target:e})=>{t(e.value,a)},onKeyDonw:this.handleKeyDown})})}render(){const{img:e,title:t,descriptions:o,error:n,nextLoading:a,prevLoading:r,onNext:i,onPrev:l}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations__connect"},s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-head"},s.a.createElement("img",{className:"brz-img",src:e,title:t,alt:t}),s.a.createElement("p",{className:"brz-p"},o),s.a.createElement("p",{className:"brz-p brz-ed-popup-integrations__connect-info"},s.a.createElement("a",{className:"brz-a",href:"#",target:"_blank"},Object(ie.a)("Need help"),"?"))),s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-body"},n&&this.renderError(),this.renderInputs(),null!==a&&s.a.createElement($e,{color:"teal",loading:a,onClick:i},Object(ie.a)("Connect")),null!==r&&s.a.createElement($e,{color:"default",loading:r,onClick:l},Object(ie.a)("Cancel"))))}}Object(i.a)(qe,"defaultProps",{img:"",title:"",descriptions:"",data:[{title:"",name:"",value:""}],nextLoading:null,prevLoading:null,error:null,onNext:v.default.noop,onPrev:v.default.noop});var Ye=qe;class Xe extends l.Component{renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}render(){const{title:e,img:t,descriptions:o,error:n,nextLoading:a,prevLoading:r,onNext:i,onPrev:l}=this.props,c=null!==a&&null!==r;return s.a.createElement("div",{className:"brz-ed-popup-integrations__connect"},s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-head"},s.a.createElement("img",{className:"brz-img",src:t,alt:e}),s.a.createElement("p",{className:"brz-p"},o)),s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-body"},n&&this.renderError(),c&&s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},null!==a&&s.a.createElement($e,{color:"red",loading:a,onClick:i},Object(ie.a)("Disconnect")),null!==r&&s.a.createElement($e,{color:"default",loading:r,onClick:l},Object(ie.a)("Cancel")))))}}Object(i.a)(Xe,"defaultProps",{title:"",descriptions:"",nextLoading:null,prevLoading:null,error:null,onNext:v.default.noop,onPrev:v.default.noop});var Ze=Xe,Je=o(123),Qe=o(24),et=o(217),tt=o(216),ot=o(780),nt=o(779),at=o(212),rt=o(90),it=o(83);function lt(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function st(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?lt(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):lt(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const ct=(e,t,o,n)=>{const a=t*o,r=t*n,i=e*t;return Math.max(a,Math.min(r,i))};class dt extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{inputValue:""}),Object(i.a)(this,"selectRef",s.a.createRef()),Object(i.a)(this,"inputRef",s.a.createRef()),Object(i.a)(this,"handleChange",(e,t)=>{const{multiple:o,value:n,onChange:a}=this.props;if(o){if(t.isOpen||this.setState({inputValue:""}),e.hasOwnProperty("value")){const t=Array.isArray(n)?n:[];a(Object(Qe.addLast)(t,e.value))}}else e&&(this.setState({inputValue:e.value}),a(e))}),Object(i.a)(this,"handleInputChange",e=>{this.setState({inputValue:e.target.value})}),Object(i.a)(this,"handleRemoveTag",e=>{const{value:t,onChange:o}=this.props;o(Object(Qe.removeAt)(t,e))}),Object(i.a)(this,"handleInputKeyDown",e=>{const{value:t,multiple:o,onChange:n}=this.props;o&&8===e.keyCode&&!this.state.inputValue&&n(Object(Qe.removeLast)(t))})}itemToString(e){return e?e.label:""}renderTags(e){return Array.isArray(e)?e.map((e,t)=>s.a.createElement("div",{key:t,className:"brz-control__select2-tag"},e,s.a.createElement(F.b,{icon:"nc-trash",onClick:()=>{this.handleRemoveTag(t)}}))):null}renderInput(e){const{multiple:t,selectedItem:o,isOpen:n,toggleMenu:a,inputProps:r}=e,i=t?"brz-control__select2-value-container-tag":"brz-control__select2-value-container";return s.a.createElement(ot.a,null,({ref:e})=>s.a.createElement("div",{ref:e,className:i,onClick:()=>{a(),!n&&this.inputRef.current.focus()}},t&&this.renderTags(o),s.a.createElement("input",Object(x.a)({},r,{className:"brz-input brz-control__select2-value"}))))}renderDropdown(e){const{className:t,options:o,value:n,multiple:a,placement:r,fixed:i,itemHeight:l,minItems:c,maxItems:d,isOpen:u,inputValue:p,highlightedIndex:b,selectedItem:m,getItemProps:h,getMenuProps:v}=e;if(!u)return;const f=Array.isArray(n)&&a?o.filter(e=>n.every(t=>t!==e.value)):o,y=this.selectRef.current,O=y.getBoundingClientRect().width,S=y.ownerDocument.body,C=g()("brz-ed-select2-portal",t),j=new tt.a(f,["value"]);return s.a.createElement(rt.a,{node:S,className:C},s.a.createElement(nt.a,{placement:r,positionFixed:i},({ref:e,style:t,placement:o})=>{const n=j.search(p).map((e,t)=>s.a.createElement("li",Object(x.a)({key:e.value},h({index:t,item:e}),{className:g()("brz-li brz-control__select2-option",{"brz-control__select2-option--active":m===e||b===t})}),e.value));return s.a.createElement("div",{ref:e,style:st(st({},t),{},{width:O}),className:"brz-control__select2-menu","data-placement":o},s.a.createElement(it.a,{style:{height:ct(n.length,l,c,d)},className:"brz-control__select2-scroll-pane brz-ed-scroll--small"},s.a.createElement("ul",Object(x.a)({},v(),{className:"brz-ul"}),n.length>0?n:s.a.createElement("li",{className:"brz-li brz-control__select2-option"},Object(ie.a)("Nothing Found")))))}))}render(){const{className:e,placeholder:t,multiple:o,value:n}=this.props,{inputValue:a}=this.state,r=g()("brz-control__select2-container",e);return s.a.createElement("div",{ref:this.selectRef,className:r},s.a.createElement(at.c,null,s.a.createElement(et.a,{initialSelectedItem:n,selectedItem:n,onChange:this.handleChange,itemToString:this.itemToString},({getInputProps:e,getItemProps:n,getMenuProps:r,isOpen:i,highlightedIndex:l,selectedItem:c,toggleMenu:d})=>s.a.createElement("div",{className:"brz-control__select2"},this.renderInput({inputProps:e({ref:this.inputRef,placeholder:t,value:a,onKeyDown:this.handleInputKeyDown,onChange:this.handleInputChange}),multiple:o,selectedItem:c,isOpen:i,toggleMenu:d}),this.renderDropdown(st(st({},this.props),{},{inputValue:a,isOpen:i,highlightedIndex:l,selectedItem:c,getMenuProps:r,getItemProps:n}))))))}}Object(i.a)(dt,"defaultProps",{className:"",value:null,options:[{label:"Test",value:"test"}],placement:"bottom",placeholder:"",fixed:!1,minItems:1,maxItems:5,itemHeight:30,multiple:!1,onChange:v.default.noop});var ut=dt;class pt extends l.Component{renderHead(){const{headTitle:e,headDescription:t}=this.props;if(e&&t)return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},e&&s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},e)),t&&s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},t)))}renderSelect({name:e,value:t,choices:o}){const n=o.map(({title:e,name:t})=>s.a.createElement(S.a,{key:t,value:t},e));return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-select"},s.a.createElement(O.a,{className:"brz-control__select--white",maxItems:"6",itemHeight:"30",inPortal:!0,defaultValue:t,onChange:t=>{this.props.onActive(e,t)}},n))}renderInput({name:e,value:t}){return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-input"},s.a.createElement("input",{className:"brz-input",required:!0,type:"password"===e?"password":"text",value:t,onChange:t=>{this.props.onActive(e,t.target.value)}}))}renderSwitch({name:e,value:t}){return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-input"},s.a.createElement(Je.a,{className:"brz-ed-control__switch--light",defaultValue:t,onChange:t=>{this.props.onActive(e,t)}}))}renderSearch({name:e,multiple:t,value:o,choices:n}){const a=Boolean(o)&&t?o.split(","):o;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-select"},s.a.createElement(ut,{className:"brz-control__select2--light",multiple:t,value:a,options:n,onChange:o=>{this.props.onActive(e,t?o.join(","):o.value)}}))}renderOptions(){const e=this.props.data.map((e,t)=>{const{title:o,required:n,type:a,helper:r}=e;return s.a.createElement("div",{key:t,className:"brz-ed-popup-integrations-step__fields-option"},s.a.createElement("div",{className:"brz-d-xs-flex brz-align-items-xs-center"},s.a.createElement("p",{className:"brz-p"},o,n&&s.a.createElement("strong",{className:"brz-strong brz--required"},"*")),r&&s.a.createElement(ye.b,{className:"brz-ed-popup-integrations-fields__tooltip",openOnClick:!1,inPortal:!0,overlay:s.a.createElement("div",{className:"brz-ed-popup-integrations-fields__info",dangerouslySetInnerHTML:{__html:r}})},s.a.createElement(F.b,{icon:"nc-alert-circle-que"}))),!a&&this.renderInput(e),"select"===a&&this.renderSelect(e),"switch"===a&&this.renderSwitch(e),"search"===a&&this.renderSearch(e))});return s.a.createElement(P.a,{autoHeight:!0,autoHeightMax:"100%",style:{height:"auto"}},e)}renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}render(){const{description:e,error:t,prevLoading:o,nextLoading:n,onPrev:a,onNext:r}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__fields"},this.renderHead(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},t&&this.renderError(),this.renderOptions(),e&&s.a.createElement("p",{className:"brz-p brz-ed-popup-integrations__description"},e),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},null!==o&&s.a.createElement($e,{size:3,leftIcon:"nc-arrow-left",loading:o,onClick:a},Object(ie.a)("Back")),null!==n&&s.a.createElement($e,{color:"teal",rightIcon:"nc-arrow-right",loading:n,onClick:r},Object(ie.a)("Continue")))))}}Object(i.a)(pt,"defaultProps",{id:"",headTitle:"",headDescription:"",description:"",data:[{title:"",value:"",name:"",helper:null}],nextLoading:null,prevLoading:null,onPrev:v.default.noop,onNext:v.default.noop,onActive:v.default.noop});var bt=pt;class mt extends l.Component{renderSelect(e,t){const{formFields:o,fields:n,restrictions:a,onActive:r}=this.props,i=v.default.pluck(o,"target");let l=n.filter(e=>-1===i.indexOf(e.slug)||e.slug===t);const c=n.length+(o.length-v.default.without(i,"_auto_generate").length);(!_e(c,a)||t&&"_auto_generate"===t)&&l.unshift({name:"Auto Generate",required:!1,slug:"_auto_generate"});const d=l.map(({required:e,name:t,slug:o})=>s.a.createElement(S.a,{key:o,value:o},s.a.createElement("span",{className:"brz-span"},t),e&&s.a.createElement("strong",{className:"brz-strong brz--required"},"*")));return s.a.createElement(O.a,{defaultValue:t,className:"brz-control__select--white",maxItems:"6",itemHeight:"30",inPortal:!0,onChange:t=>{r(e,t)}},d)}renderOptions(){const e=this.props.formFields.map(({sourceTitle:e,target:t,sourceId:o})=>s.a.createElement("div",{key:o,className:"brz-ed-popup-integrations-step__fields-option"},s.a.createElement("p",{className:"brz-p"},e),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-select"},this.renderSelect(o,t))));return s.a.createElement(P.a,{autoHeight:!0,autoHeightMax:"100%",style:{height:"auto"}},e)}renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderErrorEmpty(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},Object(ie.a)("Fields are empty. Please add fields and try again.")))}render(){const{title:e,error:t,formFields:o,prevLoading:n,nextLoading:a,onPrev:r,onNext:i}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__fields"},s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("FORM FIELDS"))),s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},e," ",Object(ie.a)("FIELDS")))),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},t&&this.renderError(),o.length?this.renderOptions():this.renderErrorEmpty(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},null!==n&&s.a.createElement($e,{size:3,leftIcon:"nc-arrow-left",loading:n,onClick:r},Object(ie.a)("Back")),null!==a&&s.a.createElement($e,{color:"teal",rightIcon:"nc-arrow-right",loading:a,onClick:i},Object(ie.a)("Continue")))))}}Object(i.a)(mt,"defaultProps",{id:"",title:"",shortTitle:"",description:"",img:"",fields:[],formFields:[],restrictions:{},error:null,nextLoading:null,prevLoading:null,onActive:v.default.noop,onPrev:v.default.noop,onNext:v.default.noop});var ht=mt;class gt extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"handleConfirmation",e=>{this.props.onConfirm("true"===e)})}renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderList(){const{active:e,lists:t,onActive:o}=this.props,n=t.map(({name:e,id:t})=>s.a.createElement(De.a,{value:t,key:t},e||"List "+t));return s.a.createElement(P.a,{autoHeight:!0,autoHeightMax:"100%",style:{height:"auto"}},s.a.createElement(Ae.b,{className:"brz-ed-popup-integrations-option__radio",name:"list",defaultValue:e,onChange:o},n))}renderConfirmation(){const{confirmationNeeded:e}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations__confirmation"},s.a.createElement("p",{className:"brz-p"},Object(ie.a)("Email confirmation to join the list")),s.a.createElement(O.a,{defaultValue:e?"true":"false",className:"brz-control__select--white",maxItems:"6",itemHeight:"30",onChange:this.handleConfirmation},s.a.createElement(S.a,{value:"false"},Object(ie.a)("Not Required")),s.a.createElement(S.a,{value:"true"},Object(ie.a)("Required"))))}renderCreateList(){const{createLoading:e,onCreateList:t}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-new__option",onClick:t},s.a.createElement(F.b,{icon:e?"nc-circle-02":"nc-add",className:e?"brz-ed-animated--spin":""}),Object(ie.a)("Create a new list"))}renderProList(){return s.a.createElement(Ae.b,{className:"brz-ed-popup-integrations-option__radio",name:"proList",defaultValue:"none"},s.a.createElement(De.a,{value:"none"},Object(ie.a)("None")))}render(){const{listPro:e,lists:t,listsCreate:o,hasConfirmation:n,error:a,nextLoading:r,prevLoading:i,onPrev:l,onNext:c}=this.props,d=t.length>0,u=o&&o.length>0;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__lists"},s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("SELECT LIST")))),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},a&&this.renderError(),d&&this.renderList(),e&&this.renderProList(),u&&this.renderCreateList(),n&&this.renderConfirmation(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},null!==i&&s.a.createElement($e,{size:3,leftIcon:"nc-arrow-left",loading:i,onClick:l},Object(ie.a)("Back")),null!==r&&s.a.createElement($e,{size:d||e?1:3,color:d||e?"teal":"gray",rightIcon:"nc-arrow-right",loading:r,onClick:d||e?c:null},Object(ie.a)("Continue")))))}}Object(i.a)(gt,"defaultProps",{id:"",title:"",shortTitle:"",description:"",img:"",active:"",listPro:!1,lists:[],listsCreate:[],apiKeyValue:{},hasConfirmation:!1,createLoading:!1,confirmationNeeded:!1,nextLoading:null,prevLoading:null,error:null,onActive:v.default.noop,onConfirm:v.default.noop,onCreateList:v.default.noop,onPrev:v.default.noop,onNext:v.default.noop});var vt=gt;class ft extends l.Component{render(){const{title:e,onNext:t}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__done"},s.a.createElement("div",{className:"brz-ed-popup-integrations-step__done-icon"},s.a.createElement(F.b,{icon:"nc-check-light"})),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__done-content"},s.a.createElement("p",{className:"brz-p"},Object(ie.a)("You have successfully connect the form with")," ",e)),s.a.createElement($e,{color:"teal",onClick:t},Object(ie.a)("Done")))}}Object(i.a)(ft,"defaultProps",{title:"",onNext:v.default.noop});var yt=ft;async function Ot(e){try{return await(t=e,fetch("https://graph.facebook.com/"+t).then(({status:e})=>200===e))}catch(e){return!1}var t}function St(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ct(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?St(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):St(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const xt=[{name:"appid",title:"App ID"}];class jt extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleChange",(e,t)=>{this.setState(({apiKeyValue:o})=>({apiKeyValue:Ct(Ct({},o),{},{[""+t]:e.trim()})}))}),Object(i.a)(this,"handleConnect",async()=>{const{app:e,onChangeNext:t}=this.context,{apiKeyValue:o}=this.state,n=Object.values(o);if(this.setState({nextLoading:!0,error:null}),n.some(e=>!e))await Object(pe.F)(),this.setState({error:"Fields are empty",nextLoading:!1});else{const{data:a,group:r,id:i}=e,[l]=n;if(!await Ot(l))return void this.setState({isValidate:!1,error:"Your AppId is no valid, re check and try again",nextLoading:!1});if(a&&a.id){const{status:e}=await Ne(a.id);200!==e&&this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")})}const{status:s}=await(e=>{const{api:t}=f.a.get("wp"),o=f.a.get("editorVersion"),n=Ee(t.url,{action:t.addAccount,hash:t.hash,version:o});return Object(pe.I)(n,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(e)}).then(ke).then(e=>e)})(Ct({service:i,group:r},o));200!==s?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):t()}}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0}),await Object(pe.F)(),this.context.onChangePrev()});const{app:{data:o}}=t;this.state={apiKeyValue:o||this.getDefaultValue(),nextLoading:!1,prevLoading:!1,error:null}}static async onBeforeLoad(e,t){e.app.data&&t.onChangeNext("disconnect")}getDefaultValue(){return xt.reduce((e,{name:t})=>Ct(Ct({},e),{},{[""+t]:""}),{})}render(){const{app:e}=this.context,{apiKeyValue:t,nextLoading:o,prevLoading:n,error:a}=this.state,r=xt.map(({title:e,name:o})=>({title:e,name:o,value:t[o]}));return s.a.createElement(Ye,Object(x.a)({},e,{data:r,nextLoading:o,prevLoading:n,error:a,onChange:this.handleChange,onNext:this.handleConnect,onPrev:this.handlePrev}))}}Object(i.a)(jt,"contextType",be);var Bt=jt;class Pt extends l.Component{constructor(e){super(e),Object(i.a)(this,"handleNext",async()=>{const{app:e,onChange:t,onDisconnectApp:o}=this.context;this.setState({nextLoading:!0,error:null});const{status:n}=await Ne(e.data.id);200===n?(o(e.id),t(e.id,null)):this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")})}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.F)(),this.context.onChangePrev("appList")}),this.state={nextLoading:!1,prevLoading:!1,error:null}}render(){const{nextLoading:e,prevLoading:t,error:o}=this.state;return s.a.createElement(Ze,Object(x.a)({},this.context.app,{descriptions:Object(ie.a)("Are you want to delete account")+" ?",nextLoading:e,prevLoading:t,error:o,onPrev:this.handlePrev,onNext:this.handleNext}))}}Object(i.a)(Pt,"contextType",be);var wt=Pt;class Tt extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"handleClose",()=>{this.props.onClose()})}render(){const{app:e}=this.context;return s.a.createElement(yt,Object(x.a)({},e,{onNext:this.handleClose}))}}Object(i.a)(Tt,"contextType",be);var zt=Tt;class Et{}Object(i.a)(Et,"connect",void 0),Object(i.a)(Et,"account",void 0),Object(i.a)(Et,"fields",void 0),Object(i.a)(Et,"list",void 0),Object(i.a)(Et,"done",void 0);class kt extends Et{}Object(i.a)(kt,"connect",Bt),Object(i.a)(kt,"disconnect",wt),Object(i.a)(kt,"done",zt);var Ht=kt;var Ft=class extends we{constructor(...e){super(...e),Object(i.a)(this,"appsData",[]),Object(i.a)(this,"appsComponent",n),Object(i.a)(this,"handleConnectApp",async e=>{const t=e.id,{stages:o}=this.appsData[0];await Object(pe.F)(),this.setState(Object(c.a)(n=>{n.stages=o,n.connectedApp=t,Object.assign(n.data[t],e)}),()=>{this.handleNext()})})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),o=await t.json();this.appsData=o.facebook,await this.getData()}async getData(){const{group:e,service:t}=this.props,{status:o,data:n}=await Ie({group:e,services:t});if(n&&n.length>0&&200===o){const e=n[0],{services:t}=e;this.setState(Object(c.a)(o=>{o.data[t]={data:e},o.loading=!1,o.connectedApps=[t]}))}else this.setState({loading:!1})}};const _t=[{id:"app",title:Object(ie.a)("APPS"),icon:"nc-extensions-2",component:Ft}];class Rt extends l.Component{render(){const{service:e,group:t,opened:o,onClose:n}=this.props;return s.a.createElement(de,{currentTab:"app",service:e,group:t,opened:o,tabs:_t,onClose:n})}}Object(i.a)(Rt,"defaultProps",{service:"facebook",group:"social",opened:!1,onClose:v.noop});var Mt=Rt,Lt=o(35),Wt=o.n(Lt),It=o(139),Nt=o(10);function At(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Dt(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?At(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):At(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Vt extends s.a.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{currentFilter:this.props.defaultFilter}),Object(i.a)(this,"setFilter",e=>{this.setState(t=>({currentFilter:Dt(Dt({},t.currentFilter),e)}))})}render(){const{filterFn:e,data:t,children:o}=this.props,{currentFilter:n}=this.state;return o(t.filter(t=>e(t,n)),n,this.setFilter)}}function $t(e){const{className:t="",title:o="",separator:n=!1,children:a}=e,r=g()("brz-ed-popup-two-sidebar",t);return s.a.createElement("div",{className:r},o&&s.a.createElement("div",{className:"brz-ed-popup-two-sidebar-title"},o),n&&s.a.createElement("div",{className:"brz-ed-popup-two-sidebar-separator"},o),a)}function Gt(e){const{lists:t=[],counters:o={},value:n="",onChange:a=(()=>{})}=e;return t.map(({id:e,title:t,icon:r})=>null!=o[e]&&s.a.createElement("div",{key:e,title:Object(ie.a)(t),className:g()("brz-ed-popup-two-sidebar-list",{"brz-ed-popup-two-sidebar-list-active":e===n}),onClick:()=>a(e)},r&&s.a.createElement("span",{className:"brz-span brz-ed-popup-two-sidebar-list__span-icon"},s.a.createElement(F.b,{icon:r})),s.a.createElement("span",{className:"brz-span brz-ed-popup-two-sidebar-list__span-text"},t),s.a.createElement("span",{className:"brz-span brz-ed-popup-two-sidebar-list__span-new"},"new"),s.a.createElement("span",{className:"brz-span brz-ed-popup-two-sidebar-list__span-quantity"},o[e])))}function Ut(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Kt(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ut(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ut(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function qt(e){const{className:t,children:o}=e,n=g()("brz-ed-popup-two-body__sidebar",t),a=e=>{let{style:t}=e,o=Object(C.a)(e,["style"]);return s.a.createElement("div",Object(x.a)({},o,{style:Kt(Kt({},t),{},{borderRadius:"inherit",backgroundColor:"rgba(129, 138, 145, 0.5)"})}))};return s.a.createElement("div",{className:n},s.a.createElement(P.a,{renderThumbHorizontal:a,renderThumbVertical:a},s.a.createElement("div",{className:"brz-ed-popup-two-sidebar-body"},o)))}class Yt extends s.a.Component{constructor(...e){super(...e),Object(i.a)(this,"handleInputChange",e=>{this.props.onChange(e.target.value)})}render(){const{className:e,value:t}=this.props,o=g()("brz-ed-popup-two-search",e);return s.a.createElement("div",{className:o},s.a.createElement("input",{type:"text",className:"brz-input brz-ed-popup-two__input",placeholder:Object(ie.a)("Type to search"),value:t,onChange:this.handleInputChange}),s.a.createElement("div",{className:"brz-ed-popup-two-search-icon"},s.a.createElement(F.b,{icon:"nc-search"})))}}Object(i.a)(Yt,"defaultProps",{className:"",value:"",onChange:v.default.noop});var Xt=o(6),Zt=o.n(Xt),Jt=o(38),Qt=o(46);let eo=new Map,to=null;class oo extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{imageFetched:!1,showSpinner:!1}),Object(i.a)(this,"content",s.a.createRef()),Object(i.a)(this,"handleIntersection",e=>{e.forEach(({isIntersecting:e,target:t})=>{if(e){const e=eo.get(t);if(!e)return;const o=e.props.src;Object(Qt.e)(o).then(()=>{to&&to.unobserve(t),e.mounted&&e.setState({imageFetched:!0,showSpinner:!1},e.props.onImageLoaded())})}})})}componentDidMount(){const e=this.content.current;if(this.mounted=!0,null===to){const{observerRootSelector:t,observerRootMargin:o,observerThreshold:n}=this.props,a={root:e.ownerDocument.querySelector(t),rootMargin:o,threshold:n};to=new e.ownerDocument.defaultView.IntersectionObserver(this.handleIntersection,a),to.POLL_INTERVAL=200}to.observe(e),eo.set(e,this),setTimeout(()=>{this.mounted&&!this.state.imageFetched&&this.setState({showSpinner:!0})},this.props.spinnerDelay)}componentWillUnmount(){const e=this.content.current;this.mounted=!1,to.unobserve(e),eo.delete(e),0===eo.size&&(to.disconnect(),to=null)}render(){const{width:e,height:t,src:o,style:n}=this.props,{imageFetched:a,showSpinner:r}=this.state,i=Math.round(t/e*100*10)/10;return s.a.createElement("div",{ref:this.content,className:"brz-observer__image",style:{paddingTop:i+"%"}},r&&s.a.createElement("div",{className:"brz-ed-option__block-thumbnail-loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"})),a&&s.a.createElement("img",{className:"brz-img",style:n,src:o,alt:"lazyLoad Image"}))}}Object(i.a)(oo,"defaultProps",{width:100,height:100,src:"",observerRootSelector:null,observerRootMargin:"0px",observerThreshold:[0],spinnerDelay:250,style:{},onImageLoaded:v.default.noop});var no=o(44),ao=o(14);const ro={animationName:"fadeIn",animationFillMode:"both",animationDelay:"200ms",animationDuration:"200ms"},io=f.a.get("pro"),lo=f.a.get("urls");class so extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{tooltipOpen:!1}),Object(i.a)(this,"iconRef",s.a.createRef()),Object(i.a)(this,"handleTooltipOpen",()=>{this.setState({tooltipOpen:!0})}),Object(i.a)(this,"handleTooltipClose",()=>{this.setState({tooltipOpen:!1})}),Object(i.a)(this,"handleClick",()=>{const{data:e,onAdd:t}=this.props;e.loading||e.inactive||t(e)}),Object(i.a)(this,"handleRemove",()=>{const{data:e,onRemove:t}=this.props;t(e)}),Object(i.a)(this,"handleSync",()=>{const{data:e,onSync:t}=this.props;t(e)})}renderProInfo(){return s.a.createElement("div",{className:"brz-ed-tooltip-content__pro"},s.a.createElement("p",{className:"brz-p brz-ed-tooltip-content__pro-title"},Object(ie.a)("You’ll need Brizy PRO to use this block")),s.a.createElement("p",{className:"brz-p brz-ed-tooltip-content__pro-body"},s.a.createElement("a",{className:"brz-a",href:lo.upgradeToPro,target:"_blank",rel:"noopener noreferrer"},s.a.createElement(F.b,{icon:"nc-lock"}),Object(ie.a)("Get Brizy PRO"))))}renderBlank(){var e,t;const{data:{pro:o}}=this.props,n=!io&&o,a=null!==(e=null===(t=this.props.data)||void 0===t?void 0:t.blankTitle)&&void 0!==e?e:Object(ie.a)("Create your own"),r=g()("brz-ed-popup-two-block-item","brz-ed-popup-two-block__blank","brz-ed-popup-two-block__blank-first",{"brz-ed-popup-two-block__blank--pro":n});return n?s.a.createElement(ye.b,{overlayClassName:"brz-ed-tooltip--delay-1",size:"small",offset:"5",openOnClick:!1,nodeRef:this.iconRef,overlay:this.renderProInfo(),onOpen:this.handleTooltipOpen,onClose:this.handleTooltipClose},s.a.createElement("div",{className:r},s.a.createElement("p",{ref:this.iconRef,className:"brz-p brz-d-xs-flex brz-align-items-xs-center"},s.a.createElement(F.b,{icon:"nc-lock"})," ",a),s.a.createElement("p",{className:"brz-p brz-ed-badge brz-ed-badge--pro"},"pro"))):s.a.createElement("div",{onClick:this.handleClick,className:r},s.a.createElement("div",{className:"brz-ed-container-trigger brz-ed-container-trigger--small"}),s.a.createElement("p",{className:"brz-p"},a))}renderPro(){const{animation:e,isLayout:t,data:{thumbnailSrc:o,thumbnailWidth:n,thumbnailHeight:a},onImageLoaded:r}=this.props,{width:i,height:l}=Object(Qt.d)(n,a,292),c=g()("brz-figure brz-ed-popup-two-block-item",this.state.tooltipOpen&&"brz-ed-popup-two-block-item--active"),d=s.a.createElement(s.a.Fragment,null,s.a.createElement(oo,{observerRootSelector:".brz-ed-popup-two-blocks-body",style:e?ro:{},src:o,width:i,height:l,onImageLoaded:r}),s.a.createElement("p",{className:"brz-p brz-ed-badge brz-ed-badge--pro"},"pro"));return t?s.a.createElement("figure",{className:c,onClick:this.handleClick},d):s.a.createElement(ye.b,{overlayClassName:"brz-ed-tooltip--delay-1",size:"small",offset:"5",openOnClick:!1,nodeRef:this.iconRef,overlay:this.renderProInfo(),onOpen:this.handleTooltipOpen,onClose:this.handleTooltipClose},s.a.createElement("figure",{className:c},d,s.a.createElement("span",{ref:this.iconRef,className:"brz-ed-popup-two-block__span-lock"},s.a.createElement(F.b,{icon:"nc-lock"}))))}renderFree(){const{animation:e,data:{thumbnailSrc:t,thumbnailWidth:o,thumbnailHeight:n},onImageLoaded:a}=this.props,{width:r,height:i}=Object(Qt.d)(o,n,292);return s.a.createElement("figure",{className:"brz-figure brz-ed-popup-two-block-item",onClick:this.handleClick},s.a.createElement(oo,{observerRootSelector:".brz-ed-popup-two-blocks-body",style:e?ro:{},src:t,width:r,height:i,onImageLoaded:a}))}renderRemoveIcon(){return s.a.createElement("div",{className:"brz-ed-badge__delete brz-ed-popup-two-block-remove",onClick:this.handleRemove},s.a.createElement(F.b,{icon:"nc-trash"}))}renderSyncIcon(){const{isAuthorized:e,data:{synchronizable:t,synchronized:o}}=this.props;if(t&&e){const e=g()("brz-ed-popup-two-block-sync",{"brz-ed-popup-two-block-sync--uploaded":o});return s.a.createElement("div",{className:e,onClick:this.handleSync},s.a.createElement(F.b,{icon:o?"nc-check-circle-on":"nc-reverse-glyph"}))}}renderLoading(){return s.a.createElement("div",{className:"brz-ed-popup-two-block--loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))}render(){const{isLayout:e,showSync:t,data:{blank:o,showRemoveIcon:n,pro:a,loading:r,inactive:i,renderWrapper:l}}=this.props,c=!io&&a,d=o&&"blank"===o,u=g()("brz-ed-popup-two-block",ao.g&&"brz-ed-popup-two-block-stories",c&&"brz-ed-popup-two-block--pro",e&&"brz-ed-popup-two-block--layout",i&&"inactive");let p;return d?p=this.renderBlank():(p=c?this.renderPro():this.renderFree(),l&&(p=l(p))),s.a.createElement("div",{className:u},p,n&&this.renderRemoveIcon(),r&&this.renderLoading(),t&&this.renderSyncIcon())}}Object(i.a)(so,"defaultProps",{showRemoveIcon:!1,data:{},animation:!1,isLayout:!1,isAuthorized:!1,showSync:!1,onAdd:v.default.noop,onRemove:v.default.noop,onImageLoaded:v.default.noop,onSync:v.default.noop}),Object(i.a)(so,"propTypes",{showRemoveIcon:Zt.a.bool,blockData:Zt.a.object,animation:Zt.a.bool,isLayout:Zt.a.bool,isAuthorized:Zt.a.bool,showSync:Zt.a.bool,onAdd:Zt.a.func,onRemove:Zt.a.func,onImageLoaded:Zt.a.func,onSync:Zt.a.func});class co extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{thumbnailLoaded:!1}),Object(i.a)(this,"handleLoaded",()=>{this.setState({thumbnailLoaded:!0})})}render(){const e=this.props,{data:{name:t,pages:o,color:n}}=e,a=Object(C.a)(e,["data"]),{thumbnailLoaded:r}=this.state,i=g()("brz-ed-popup-two-block-info",ao.g&&"brz-ed-popup-two-block-info-stories");return s.a.createElement("div",{className:i,style:r?ro:{}},s.a.createElement(so,Object(x.a)({},a,{data:this.props.data,isLayout:!0,onImageLoaded:this.handleLoaded})),r&&o.length>1&&s.a.createElement("span",{className:"brz-ed-popup-two-block-info-color",style:{backgroundColor:n}},s.a.createElement("span",{className:"brz-ed-popup-two-block-info-color-opacity",style:{backgroundColor:n}})),s.a.createElement("div",{className:"brz-ed-popup-two-block-info-downline"},s.a.createElement("div",{className:"brz-ed-popup-two-block-info-title"},t),s.a.createElement("div",{className:"brz-ed-popup-two-block-info-title"},o.length," ",o.length>1?ao.g?Object(ie.a)("stories"):Object(ie.a)("layouts"):ao.g?Object(ie.a)("story"):Object(ie.a)("layout"))))}}const uo=e=>({isAuthorized:"connected"===Object(no.a)(e)}),po=Object(Jt.b)(uo)(co);var bo=Object(Jt.b)(uo)(so);class mo extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{currentColumns:this.props.columns}),Object(i.a)(this,"handleResize",()=>{const e=window.innerWidth,{responsive:t,columns:o}=this.props;if(t&&t.length){const n=t.reduce((t,o)=>o.breakpoint>e&&(void 0===t.breakpoint||t.breakpoint>o.breakpoint)?o:t,{});this.setState({currentColumns:n.settings&&n.settings.columns||o})}})}componentDidMount(){this.handleResize(),window.addEventListener("resize",this.handleResize)}componentWillUnmount(){window.removeEventListener("resize",this.handleResize)}render(){const{data:e,showSync:t,onThumbnailAdd:o,onThumbnailRemove:n,onThumbnailSync:a,ThumbnailComponent:r}=this.props,{currentColumns:i}=this.state;let l=[];for(let e=0;e<i;e++)l.push([]);const c=g()("brz-ed-popup-two-blocks__grid__column",ao.g&&"brz-ed-popup-two-blocks__grid__column-stories"),d=e.reduce((e,l,c)=>{const d=s.a.createElement(r,{key:l.uid||c,animation:!0,showSync:t,data:l,onAdd:o,onRemove:n,onSync:a});return e[c%i].push(d),e},l).map((e,t)=>s.a.createElement("div",{key:t,className:c,style:{width:100/i+"%",flexBasis:100/i+"%"}},e));return s.a.createElement("div",{className:"brz-ed-popup-two-blocks__grid"},d)}}function ho(e){const t=f.a.get("urls").templateThumbnails;return t?`${t}/${e.id}.jpg`:Object(ue.a)(`thumbs/${e.id}.jpg`)}Object(i.a)(mo,"defaultProps",{columns:ao.g?5:4,showSync:!1,responsive:[{breakpoint:1460,settings:{columns:ao.g?4:3}},{breakpoint:1200,settings:{columns:3}}],ThumbnailComponent:bo});var go=o(19);class vo extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{imageFetched:!1,showSpinner:!1}),Object(i.a)(this,"mounted",!1)}componentDidMount(){const{src:e,spinnerDelay:t}=this.props;this.mounted=!0,Object(Qt.e)(e).then(()=>{this.setState({imageFetched:!0,showSpinner:!1})}),setTimeout(()=>{this.mounted&&!this.state.imageFetched&&this.setState({showSpinner:!0})},t)}render(){const{imageFetched:e,showSpinner:t}=this.state,{className:o,src:n,style:a}=this.props,r=g()("brz-img",o);return s.a.createElement(l.Fragment,null,e&&s.a.createElement("img",{className:r,src:n,style:a}),t&&s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))}}Object(i.a)(vo,"defaultProps",{className:"",src:"",style:{},spinnerDelay:250});var fo=o(87),yo=o(33),Oo=o(51);function So(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Co(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?So(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):So(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const xo=f.a.get("pro"),jo=f.a.get("urls"),Bo={animationName:"fadeIn",animationFillMode:"both",animationDelay:"200ms",animationDuration:"200ms"};class Po extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{active:this.props.data.pages[0].id,thumbnailHeight:0,transition:0,previewPointer:"none",importStyles:!1}),Object(i.a)(this,"thumbnailDetails",s.a.createRef()),Object(i.a)(this,"getType",()=>ao.g?"stories":"templates"),Object(i.a)(this,"handleUpdateThumbnail",()=>{this.setState({thumbnailHeight:this.thumbnailDetails.current.clientHeight})}),Object(i.a)(this,"handleBack",()=>{this.props.onBack()}),Object(i.a)(this,"handleThumbnailAdd",async()=>{const{data:{name:e},projectFonts:t,onAddBlocks:o,onClose:n}=this.props,{active:a,importStyles:r}=this.state,i=this.getType(),l=await fetch(Object(Oo.h)(i,a)),{blocks:s}=await l.json();let c,d=Object(fo.b)({models:s});if(!this.hasStyleInProject()){const t=await fetch(Object(ue.a)(i+"/meta.json"));c=(await t.json())[i].find(({name:t})=>t===e).styles;const o=Object(D.b)(c,({fontStyles:e})=>e),n=Object(fo.c)(o);d.push(...n)}o({blocks:s,styles:c,fonts:await Object(yo.u)(Object(fo.a)(d,t)),currentStyleId:r&&c&&c[0].id}),n()})}hasStyleInProject(){const{projectStyles:e,data:{styles:t}}=this.props;return e.find(({id:e})=>t.some(({id:t})=>t===e))}componentDidMount(){this.handleUpdateThumbnail(),window.addEventListener("resize",this.handleUpdateThumbnail),setTimeout(()=>{this.setState({previewPointer:"auto"})},200)}componentWillUnmount(){window.removeEventListener("resize",this.handleUpdateThumbnail)}render(){const{HeaderSlotLeft:e,data:{name:t,pages:o,styles:n,pro:a}}=this.props,{active:r,thumbnailHeight:i,previewPointer:c,importStyles:d}=this.state,u=this.hasStyleInProject(),p=o.find(({id:e})=>e===r),b=ho(p),m=o.map((e,t)=>{const o=g()("brz-ed-popup-two-details-page-select",ao.g&&"brz-ed-popup-two-details-page-select-stories",{"brz-ed-popup-two-details-page-select-active-block":e.id===r}),n=ho(e);return s.a.createElement("div",{key:t,className:o,onClick:()=>{this.setState({active:e.id})}},s.a.createElement(vo,{src:n,style:Bo}),s.a.createElement("div",{className:"brz-ed-popup-two-details-page-select-active"},e.title))}),h=p.thumbnailHeight/500,v=!xo&&a,f=g()("brz-ed-popup-two-details-preview",ao.g&&"brz-ed-popup-two-details-preview-stories"),y=g()("brz-ed-popup-two-details-right",ao.g&&"brz-ed-popup-two-details-right-stories"),O=g()("brz-ed-popup-two-body__content brz-ed-popup-two-blocks__grid brz-ed-popup-two-details",ao.g&&"brz-ed-popup-two-details-stories");return s.a.createElement(l.Fragment,null,s.a.createElement(e,null,s.a.createElement("div",{className:"brz-ed-popup-two-header__search brz-ed-popup-two-header__search--hidden"})),s.a.createElement("div",{className:O},s.a.createElement("div",{className:"brz-ed-popup-two-details-left"},s.a.createElement("div",{className:"brz-ed-popup-two-details-back",onClick:this.handleBack},s.a.createElement(F.b,{icon:"nc-arrow-left",className:"brz-ed-popup-two-details-back-icon"}),ao.g?Object(ie.a)("Back to Stories"):Object(ie.a)("Back to Layouts")),s.a.createElement("div",{ref:this.thumbnailDetails,className:f,style:{"--thumbnailHeight":i+"px","--previewPointer":""+c}},ao.g?s.a.createElement(vo,{className:"brz-ed-popup-two-details-preview-img brz-ed-popup-two-details-preview-img-stories",src:b}):s.a.createElement(vo,{className:"brz-ed-popup-two-details-preview-img",src:b,style:Co(Co({},Bo),{},{"--transitionPreview":`transform ${h}s linear`})}))),s.a.createElement("div",{className:y},s.a.createElement("div",{className:"brz-ed-popup-two-details-title"},s.a.createElement("h2",{className:"brz-ed-popup-two-details-title-name"},t),s.a.createElement("div",{className:"brz-ed-popup-two-details-title-count"},o.length," ",o.length>1?ao.g?Object(ie.a)("stories"):Object(ie.a)("layouts"):ao.g?Object(ie.a)("story"):Object(ie.a)("layout"))),s.a.createElement("div",{className:"brz-ed-popup-two-details-page"},s.a.createElement(P.a,null,m))),s.a.createElement("div",{className:"brz-ed-popup-two-details-footer"},s.a.createElement("div",{className:"brz-ed-popup-two-details-footer-grid"},s.a.createElement("div",{className:"brz-ed-popup-two-details-footer-render"},s.a.createElement("div",{className:"brz-ed-popup-two-details-footer-radio"},v?s.a.createElement("div",{className:"brz-ed-popup-two-details-footer-radio-button brz-ed-popup-two-details-footer-radio-button--pro"},ao.g?Object(ie.a)("Upgrade to PRO to use this story"):Object(ie.a)("Upgrade to PRO to use this layout")):n.length>0&&!u&&s.a.createElement("div",{className:"brz-ed-popup-two-details-footer-radio-button",onClick:()=>{this.setState({importStyles:!d})}},s.a.createElement(F.b,{icon:d?"nc-check":"nc-uncheck",className:"brz-ed-popup-two-details-footer-radio-icon"}),Object(ie.a)("Replace global styling"))),v?s.a.createElement("a",{className:"brz-ed-btn brz-ed-btn-width-2 brz-ed-btn-sm brz-ed-btn-icon brz-ed-btn-icon--left brz-ed-btn-rounded brz-ed-btn-pro",href:jo.upgradeToPro,rel:"noopener noreferrer",target:"_blank"},s.a.createElement(F.b,{icon:"nc-lock"}),Object(ie.a)("Get Brizy PRO")):s.a.createElement("div",{className:"brz-ed-popup-two-details-footer-render-button",onClick:this.handleThumbnailAdd},ao.g?Object(ie.a)("Import This Story"):Object(ie.a)("Import This Layout")))))))}}Object(i.a)(Po,"defaultProps",{data:{pages:[]},onClose:v.default.noop,onAddBlocks:v.default.noop,onBack:v.default.noop});var wo=Object(Jt.b)(e=>({projectStyles:Object(go.E)(e),projectFonts:Object(no.c)(e)}),e=>({dispatch:e}))(Po);function To(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function zo(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?To(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):To(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Eo extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{data:null,thumbnailData:null}),Object(i.a)(this,"getType",()=>ao.g?"stories":"templates"),Object(i.a)(this,"handleThumbnailAdd",e=>{this.setState({thumbnailData:e})}),Object(i.a)(this,"handleBlankThumbnailAdd",async e=>{const{onAddBlocks:t,onClose:o}=this.props;t({blocks:[zo(zo({},await this.getBlockResolve(e.id)),{},{blockId:e.id})],fonts:[]}),o()}),Object(i.a)(this,"renderThumbnail",e=>{let{data:t}=e,o=Object(C.a)(e,["data"]);return ao.g&&t.blank?s.a.createElement(bo,Object(x.a)({},o,{data:t.pages[0],onAdd:this.handleBlankThumbnailAdd})):s.a.createElement(po,Object(x.a)({data:t},o))})}async componentDidMount(){const e=await this.getData();this.setState({data:e})}async getData(){const e=this.getType(),t=Object(ue.a)(e+"/meta.json"),o=await fetch(t);return await o.json()}async getBlockResolve(e){const t=this.getType(),o=Object(Oo.h)(t,e),n=await fetch(o);return await n.json()}renderLoading(){const{showSidebar:e,showSearch:t,HeaderSlotLeft:o}=this.props;return s.a.createElement(l.Fragment,null,t&&s.a.createElement(o,null,s.a.createElement(Yt,{className:"brz-ed-popup-two-header__search"})),e&&s.a.createElement("div",{className:"brz-ed-popup-two-body__sidebar"},s.a.createElement("div",{className:"brz-ed-popup-two-sidebar-body"})),s.a.createElement("div",{className:"brz-ed-popup-two-body__content brz-ed-popup-two-body__content--loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"})))}renderList(){const{data:e}=this.state,{showSidebar:t,showSearch:o,HeaderSlotLeft:n}=this.props,a=e[this.getType()],r=a.map(e=>zo(zo(zo({},e),e.pages[0]),{},{thumbnailSrc:ho(e.pages[0])})),i=a,c={};for(let e=0;e<i.length;e++){const t=i[e].cat;for(let e=0;e<t.length;e++){const o=t[e];c["*"]=i.length,void 0===c[o]?c[o]=1:c[o]++}}const d=[{id:"*",title:Object(ie.a)("All Categories")}].concat(e.categories).filter(({hidden:e})=>!0!==e);return s.a.createElement(Vt,{data:r,filterFn:(e,t)=>{const o="*"===t.category||e.cat.includes(Number(t.category)),n=""===t.search||new RegExp(t.search.replace(/[.*+?^${}()|[\]\\]/g,""),"i").test(e.keywords);return o&&n},defaultFilter:{category:"*",search:""}},(e,a,r)=>s.a.createElement(l.Fragment,null,o&&s.a.createElement(n,null,s.a.createElement(Yt,{className:"brz-ed-popup-two-header__search",value:a.search,onChange:e=>r({search:e})})),t&&s.a.createElement(qt,null,s.a.createElement($t,{title:"CATEGORIES"},s.a.createElement(Gt,{lists:d,value:a.category,counters:c,onChange:e=>r({category:e})}))),s.a.createElement("div",{className:"brz-ed-popup-two-body__content brz-ed-popup-two-blocks-body-layouts"},s.a.createElement(P.a,null,e.length>0?s.a.createElement(mo,{data:e,ThumbnailComponent:this.renderThumbnail,onThumbnailAdd:this.handleThumbnailAdd,onThumbnailRemove:this.handleThumbnailRemove}):s.a.createElement("div",{className:"brz-ed-popup-two-blocks__grid brz-ed-popup-two-blocks__grid-clear"},s.a.createElement("p",{className:"brz-ed-popup-two-blocks__grid-clear-text"},Object(ie.a)("Nothing here, please refine your search.")))))))}renderDetails(){return s.a.createElement(wo,Object(x.a)({},this.props,{data:this.state.thumbnailData,onBack:()=>{this.setState({thumbnailData:null})}}))}render(){const{data:e,thumbnailData:t}=this.state;return e?t?this.renderDetails():this.renderList():this.renderLoading()}}Object(i.a)(Eo,"defaultProps",{showSidebar:!0,showSearch:!0,onAddBlocks:v.default.noop,onClose:v.default.noop,onNext:v.default.noop});var ko=o(26);let Ho={type:0,category:"*",search:""};class Fo extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"filterData",(e,t)=>{const o=t.type===e.type,n="*"===t.category||e.cat.includes(Number(t.category)),a=""===t.search||new RegExp(t.search.replace(/[.*+?^${}()|[\]\\]/g,""),"i").test(e.keywords);return o&&n&&a})}getTypesCounters(){const{blocks:e,types:t}=this.props,o=t.reduce((e,{id:t})=>Object.assign(e,{[t]:0}),{});return e.forEach(({type:e})=>{o[e]++}),o}getCategoriesCounter(e){let{blocks:t,types:o,showType:n}=this.props,a=t.length;return n&&o.length&&(t=t.filter(t=>t.type===e),a=t.length),t.reduce((e,{cat:t})=>(t.forEach(t=>{e[t]?Object.assign(e,{[t]:++e[t]}):Object.assign(e,{[t]:1})}),e),{"*":a})}renderLoading(){const{showSidebar:e,showSearch:t,HeaderSlotLeft:o}=this.props;return s.a.createElement(s.a.Fragment,null,t&&s.a.createElement(o,null,s.a.createElement(Yt,{className:"brz-ed-popup-two-header__search"})),e&&s.a.createElement("div",{className:"brz-ed-popup-two-body__sidebar"},s.a.createElement("div",{className:"brz-ed-popup-two-sidebar-body"})),s.a.createElement("div",{className:"brz-ed-popup-two-body__content brz-ed-popup-two-body__content--loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"})))}render(){const{loading:e,kits:t,blocks:o,types:n,categories:a,selectedKit:r,showSearch:i,showSidebar:l,HeaderSlotLeft:c,onChangeKit:d,onChange:u}=this.props;if(e)return this.renderLoading();const p=t.filter(({id:e})=>e!==r).length>0,b=n.length>0,m=a.length>0;return s.a.createElement(Vt,{data:o,filterFn:this.filterData,defaultFilter:Ho},(e,o,h)=>(Ho.type=o.type,s.a.createElement(s.a.Fragment,null,i&&s.a.createElement(c,null,s.a.createElement(Yt,{className:"brz-ed-popup-two-header__search",value:o.search,onChange:e=>h({search:e})})),l&&s.a.createElement(qt,null,p&&s.a.createElement($t,{title:"BLOCKS"},s.a.createElement(O.a,{defaultValue:r,className:"brz-control__select--dark brz-control__select--full-width",maxItems:"6",itemHeight:"30",onChange:d},t.map(({id:e,name:t},o)=>s.a.createElement(S.a,{key:o,value:e},t)))),b&&s.a.createElement($t,{title:"STYLES"},s.a.createElement(Gt,{lists:n,counters:this.getTypesCounters(),value:o.type,onChange:e=>h({type:e})})),m&&s.a.createElement($t,{title:"CATEGORIES"},s.a.createElement(Gt,{lists:a,counters:this.getCategoriesCounter(o.type),value:o.category,onChange:e=>h({category:e})}))),s.a.createElement("div",{className:"brz-ed-popup-two-body__content"},s.a.createElement(P.a,null,e.length>0?s.a.createElement(mo,{data:e,onThumbnailAdd:u}):s.a.createElement("div",{className:"brz-ed-popup-two-blocks__grid brz-ed-popup-two-blocks__grid-clear"},s.a.createElement("p",{className:"brz-ed-popup-two-blocks__grid-clear-text"},Object(ie.a)("Nothing here, please refine your search."))))))))}}Object(i.a)(Fo,"defaultProps",{showSidebar:!0,showSearch:!0,loading:!1,kits:[],styles:[],types:[],categories:[],blocks:[],HeaderSlotLeft:v.default.noop,onAddBlocks:v.default.noop,onClose:v.default.noop,onChange:v.default.noop,onChangeKit:v.default.noop});var _o=Fo;function Ro(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Mo(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ro(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ro(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Lo extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{kits:[],loading:!0,styles:[],types:[],categories:[],blocks:[]}),Object(i.a)(this,"mounted",!1),Object(i.a)(this,"handleThumbnailAdd",async e=>{const{projectFonts:t,onAddBlocks:o,onClose:n}=this.props,a=Mo(Mo({},await this.getBlockResolve(e.id)),{},{blockId:e.id}),r=Object(fo.a)(Object(fo.b)({models:a}),t);o({block:a,fonts:await Object(yo.u)(r)}),n()}),Object(i.a)(this,"handleImportKit",async e=>{const{selectedKit:t,projectFonts:o,projectStyles:n,dispatch:a}=this.props,{kits:r}=this.state;if(t===e)return;const i=this.getKitData(r,e),{styles:l}=i;if(this.setState(i),l.some(({id:e})=>!n.some(({id:t})=>t===e))){const t=l.reduce((e,{fontStyles:t})=>e.concat(Object(fo.c)(t)),[]),n=await Object(yo.u)(Object(fo.a)(t,o));a(Object(ko.G)({selectedKit:e,styles:l,fonts:n}))}else a(Object(ko.I)(e))})}async getMeta(){const{type:e}=this.props;if("popup"===e){const e=await fetch(Object(ue.a)("popups/meta.json"));return await e.json()}{const e=await fetch(Object(ue.a)("kits/meta.json"));return await e.json()}}async getBlockResolve(e){const{type:t}=this.props;if("popup"===t){const t=await fetch(Object(Oo.h)("popups",e));return await t.json()}{const t=await fetch(Object(Oo.h)("kits",e));return await t.json()}}getKitData(e,t=this.props.selectedKit){const o=e.find(({id:e})=>e===t),{categories:n,blocks:a,styles:r,types:i}=o,l=[{id:"*",title:Object(ie.a)("All Categories")},...n],s=a.map(e=>Mo(Mo({},e),{},{thumbnailSrc:Object(Oo.a)(e)}));return{kits:e,styles:r,types:i,categories:l.filter(({hidden:e})=>!0!==e),blocks:s}}getPopupData({blocks:e,categories:t=[],types:o=[]}){const n=[{id:"*",title:Object(ie.a)("All Categories")},...t];return{types:o,blocks:e.map(e=>Mo(Mo({},e),{},{pro:(!ao.a||"blank"!==e.blank)&&e.pro,thumbnailSrc:Object(Oo.a)(e)})),categories:n.filter(({hidden:e})=>!0!==e)}}async componentDidMount(){this.mounted=!0;const e=await this.getMeta();if(this.mounted){const t="normal"===this.props.type?this.getKitData(e):this.getPopupData(e);this.setState(Mo(Mo({},t),{},{loading:!1}))}}componentWillUnmount(){this.mounted=!1}render(){const{kits:e,types:t,blocks:o,categories:n,loading:a}=this.state,{showSearch:r,showSidebar:i,selectedKit:l,HeaderSlotLeft:c}=this.props;return s.a.createElement(_o,{loading:a,selectedKit:l,kits:e,blocks:o,categories:n,types:t,showSearch:r,showSidebar:i,HeaderSlotLeft:c,onChangeKit:this.handleImportKit,onChange:this.handleThumbnailAdd})}}Object(i.a)(Lo,"defaultProps",{showSidebar:!0,showSearch:!0,showType:!0,showCategories:!0,type:"normal",HeaderSlotLeft:v.default.noop(),onAddBlocks:v.default.noop,onClose:v.default.noop});var Wo=Object(Jt.b)(e=>({selectedKit:Object(go.z)(e).data.selectedKit,projectFonts:Object(no.c)(e),projectStyles:Object(go.E)(e)}),e=>({dispatch:e}))(Lo),Io=o(27);class No extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{search:""}),Object(i.a)(this,"handleThumbnailAdd",async e=>{const{globalBlocks:t,projectFonts:o,onAddBlocks:n,onClose:a}=this.props,{resolve:r}=e,i=Object(fo.a)(Object(fo.b)({models:r,globalBlocks:t}),o);n({block:r,fonts:await Object(yo.u)(i)}),a()}),Object(i.a)(this,"handleThumbnailRemove",e=>{const{dispatch:t}=this.props,{id:o}=e;t(Object(Io.h)({id:o}))})}getBlocks(){const{type:e,globalBlocks:t}=this.props;return Object.values(t).filter(({data:t,meta:o={}})=>!t.deleted&&o.type===e)}renderThumbnails(e){const{HeaderSlotLeft:t,showSearch:o}=this.props;return s.a.createElement(l.Fragment,null,o&&s.a.createElement(t,null,s.a.createElement(Yt,{className:"brz-ed-popup-two-header__search",value:this.state.search,onChange:e=>this.setState({search:e})})),s.a.createElement("div",{className:"brz-ed-popup-two-body__content"},s.a.createElement(P.a,null,s.a.createElement(mo,{data:e,onThumbnailAdd:this.handleThumbnailAdd,onThumbnailRemove:this.handleThumbnailRemove}))))}renderEmpty(){const{HeaderSlotLeft:e,showSearch:t,type:o}=this.props;let n,a=Object(ie.a)("Nothing here yet, make a global block first.");switch(o){case"popup":n=ao.c?"editor/img/global_condition_popups_toolbar.gif":"editor/img/global_popups_toolbar.gif",a=Object(ie.a)("Nothing here yet, make a global popup first.");break;default:n="editor/img/global_toolbar.gif"}return s.a.createElement(l.Fragment,null,t&&s.a.createElement(e,null,s.a.createElement(Yt,{className:"brz-ed-popup-two-header__search",value:this.state.search,onChange:e=>this.setState({search:e})})),s.a.createElement("div",{className:"brz-ed-popup-two-body__content"},s.a.createElement("div",{className:"brz-ed-popup-two-blocks__grid brz-ed-popup-two-blocks__grid-clear"},""!==this.state.search?s.a.createElement("p",{className:"brz-ed-popup-two-blocks__grid-clear-text"},Object(ie.a)("Nothing here, please refine your search.")):s.a.createElement(l.Fragment,null,s.a.createElement("p",{className:"brz-ed-popup-two-blocks__grid-clear-text"},a),s.a.createElement("img",{src:`${Object(ue.a)(n)}?${Math.random()}`,className:"brz-ed-popup-two-blocks__grid-clear-image-global",alt:"Global"})))))}renderProInfo(){return s.a.createElement("div",{className:"brz-ed-tooltip-content__pro"},s.a.createElement("p",{className:"brz-p brz-ed-tooltip-content__pro-title"},Object(ie.a)("You can't add it again")))}renderThumbnailTooltip(e){return s.a.createElement(ye.b,{className:"brz-ed-global-tooltip",overlayClassName:"brz-ed-tooltip--delay-1",size:"small",offset:"5",openOnClick:!1,overlay:this.renderProInfo()},e)}render(){const{globalBlocks:e,globalBlocksInPage:t}=this.props,o=this.getBlocks();if(0===o.length)return this.renderEmpty();const n=o.map(o=>{const{url:n,width:a,height:r}=Object(Oo.b)(o.data),{_id:i}=o.data.value,{data:l}=e[i],s=!ao.c&&"SectionPopup"!==l.type&&"SectionPopup2"!==l.type&&t[i];return{id:i,thumbnailSrc:n,thumbnailWidth:a,thumbnailHeight:r,showRemoveIcon:!0,renderWrapper:e=>s?this.renderThumbnailTooltip(e):e,inactive:s,resolve:{type:"GlobalBlock",value:{_id:i}}}},[]);return this.renderThumbnails(n)}}Object(i.a)(No,"defaultProps",{type:"normal",showSearch:!0,onAddBlocks:v.default.noop,onClose:v.default.noop,HeaderSlotLeft:v.default.noop}),Object(i.a)(No,"propTypes",{type:Zt.a.oneOf(["normal","popup"]),showSearch:Zt.a.bool,showSidebar:Zt.a.bool,onAddBlocks:Zt.a.func,onClose:Zt.a.func,HeaderSlotLeft:Zt.a.func});var Ao=Object(Jt.b)(e=>({globalBlocks:Object(go.l)(e),globalBlocksInPage:Object(go.m)(e),projectFonts:Object(no.c)(e)}),e=>({dispatch:e}))(No),Do=o(79);const Vo=()=>{const{hash:e,url:t,cloudSync:o}=f.a.get("wp").api,n=f.a.get("editorVersion"),a=Ee(t,{hash:e,version:n,action:o});return new Promise((e,t)=>{Object(pe.I)(a,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(ke).then(o=>{const{status:n,data:a}=o;if(!n||n>=400)throw o;{const{synchronized:n}=a;0===n?e(o):Vo().then(e).catch(t)}}).catch(t)})},$o=()=>{const{hash:e,url:t,cloudSyncAllowed:o}=f.a.get("wp").api,n=f.a.get("editorVersion"),a=Ee(t,{hash:e,version:n,action:o});return Object(pe.I)(a,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(ke).then(e=>e)},Go=()=>{const[e,t]=Object(l.useState)(!1),[o,n]=Object(l.useState)(!1),[a,r]=Object(l.useState)(void 0);return Object(l.useEffect)(()=>{o&&(()=>{const{hash:e,url:t,cloudSignOut:o}=f.a.get("wp").api,n=f.a.get("editorVersion"),a=Ee(t,{hash:e,version:n,action:o});return Object(pe.I)(a,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(ke).then(e=>e)})().then(e=>{!e.status||e.status>=400?(r(e),Do.a.error(Object(ie.a)("Something went wrong"),{toastContainer:window.parent.document.body})):(n(!1),t(!0))}).catch(e=>{n(!1),r(e),Do.a.error(Object(ie.a)("Something went wrong"),{toastContainer:window.parent.document.body})})},[o]),Object(l.useEffect)(()=>{e&&t(!1)},[e]),{isDisconnect:e,error:a,loading:o,setDisconnect:()=>{n(!0)}}};var Uo=o(128);const Ko={updateAuthorization:Io.v};var qo=Object(Jt.b)(e=>({isAuthorized:"connected"===Object(no.a)(e),syncAllowed:Object(no.e)(e)}),Ko)(e=>{const{isAuthorized:t,syncAllowed:o,onSuccessSync:n,updateAuthorization:a}=e,{isSync:r,setSync:i,loading:c}=(()=>{const[e,t]=Object(l.useState)(!1),[o,n]=Object(l.useState)(!1),[a,r]=Object(l.useState)(void 0);return Object(l.useEffect)(()=>{o&&Vo().then(e=>{!e.status||e.status>=400?(r(e),Do.a.error(Object(ie.a)("Unsuccessful sync"),{toastContainer:window.parent.document.body})):(n(!1),t(!0),Do.a.success(Object(ie.a)("Done, your library was synced"),{toastContainer:window.parent.document.body}))}).catch(e=>{n(!1),r(e),Do.a.error(Object(ie.a)("Unsuccessful sync"),{toastContainer:window.parent.document.body})})},[o]),{isSync:e,error:a,loading:o,setSync:()=>{n(!0)}}})(),{isDisconnect:d,setDisconnect:u,loading:p}=Go();return Object(l.useEffect)(()=>{r&&n&&n()},[r]),Object(l.useEffect)(()=>{d&&(a("disconnect"),Object(Uo.b)("disconnect"))},[d]),s.a.createElement("div",{className:"brz-ed-popup-two__cloud"},s.a.createElement("p",{className:"brz-p"},t?Object(ie.a)("Saved Library is syncing to your Brizy Account"):Object(ie.a)("Access your Library in any WP install by connecting your Brizy Account")),s.a.createElement("div",{className:"brz-ed-popup-two__cloud-icon"},s.a.createElement("div",{className:"brz-d-inline-block brz-p-relative"},s.a.createElement(F.b,{icon:"nc-upload"}),t&&s.a.createElement("div",{className:"brz-ed-popup-two__cloud-icon--connect"},s.a.createElement(F.b,{icon:"nc-check-circle-white"})))),s.a.createElement($e,{className:"brz-ed-popup-two__cloud-button",size:4,color:t?"gray":"teal",loading:p,onClick:()=>{t?u():Sl.open({mode:"stack",prompt:"authorization",props:{}})}},t?Object(ie.a)("Disconnect"):Object(ie.a)("Connect")),t&&o&&s.a.createElement($e,{className:"brz-ed-popup-two__cloud-button-sync",size:4,color:"teal",loading:c,onClick:()=>{i()}},Object(ie.a)("Sync Now")),!o&&s.a.createElement("p",{className:"brz-p"},Object(ie.a)("Your Plugin version is incompatible with Brizy Account version, please update plugin")),s.a.createElement("div",{className:"brz-ed-popup-two__cloud-info"},s.a.createElement(F.b,{icon:"nc-alert-circle-que"}),s.a.createElement("a",{href:"#",target:"_blank",className:"brz-a"},Object(ie.a)("What’s this"),"?")))});function Yo(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Xo(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Yo(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Yo(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const Zo=Boolean(f.a.get("wp"));class Jo extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"currentType",null),Object(i.a)(this,"getDefaultFilter",v.default.memoize(e=>({type:e.length?e[0].id:"",search:""}))),Object(i.a)(this,"getTypesCounters",()=>{const{items:e,types:t}=this.props,o=t.reduce((e,{id:t})=>Xo(Xo({},e),{},{[t]:0}),{});return e.forEach(({type:e})=>{o[e]++}),o}),Object(i.a)(this,"filterData",(e,t)=>{const o=t.type===e.type,n=""===t.search||new RegExp(t.search.replace(/[.*+?^${}()|[\]\\]/g,""),"i").test(e.keywords||"");return o&&n})}getActiveType(e){return this.currentType||e[0].id}renderLoading(){return s.a.createElement("div",{className:"brz-ed-popup-two-body__content brz-ed-popup-two-body__content--loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))}renderEmpty(){const{type:e,types:t,search:o}=this.props,n=this.getActiveType(t),a={width:"LAYOUT"===n?"524px":"322px"};let r="editor/img/save_toolbar.gif",i=Object(ie.a)("Nothing here yet, save a block first.");return"popup"===e&&(r="editor/img/save_popups_toolbar.gif",i=Object(ie.a)("Nothing here yet, save a popup first.")),"LAYOUT"===n&&(i=Object(ie.a)("Nothing here yet, save a layout first."),r="editor/img/save_layout.gif"),s.a.createElement("div",{className:"brz-ed-popup-two-body__content"},s.a.createElement("div",{className:"brz-ed-popup-two-blocks__grid brz-ed-popup-two-blocks__grid-clear"},""!==o?s.a.createElement("p",{className:"brz-ed-popup-two-blocks__grid-clear-text"},Object(ie.a)("Nothing here, please refine your search.")):s.a.createElement(s.a.Fragment,null,s.a.createElement("p",{className:"brz-ed-popup-two-blocks__grid-clear-text"},i),s.a.createElement("img",{key:n,style:a,src:Object(ue.a)(r),className:"brz-ed-popup-two-blocks__grid-clear-image-saved",alt:"Saved"}))))}renderItems(e){const{onChange:t,onDelete:o,onSync:n}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-two-body__content"},s.a.createElement(P.a,null,s.a.createElement(mo,{showSync:Zo,data:e,onThumbnailAdd:t,onThumbnailRemove:o,onThumbnailSync:n})))}render(){const{loading:e,items:t,types:o,showSearch:n,showSync:a,HeaderSlotLeft:r,onSuccessSync:i}=this.props;return s.a.createElement(Vt,{data:t,filterFn:this.filterData,defaultFilter:this.getDefaultFilter(o)},(t,l,c)=>s.a.createElement(s.a.Fragment,null,n&&s.a.createElement(r,null,s.a.createElement(Yt,{className:"brz-ed-popup-two-header__search",value:l.search,onChange:e=>{c({search:e})}})),s.a.createElement(qt,null,s.a.createElement($t,{title:"LIBRARY"},s.a.createElement(Gt,{lists:o,counters:this.getTypesCounters(),value:l.type,onChange:e=>{c({type:e}),this.currentType=e}})),a&&s.a.createElement($t,{separator:!0},s.a.createElement(qo,{onSuccessSync:i}))),e?this.renderLoading():0===t.length?this.renderEmpty():this.renderItems(t)))}}Object(i.a)(Jo,"defaultProps",{type:"normal",showSearch:!0,showSync:!0,search:"",loading:!1,items:[],types:[],HeaderSlotLeft:l.Component,onChange:v.default.noop,onDelete:v.default.noop,onSync:v.default.noop,onSuccessSync:v.default.noop});var Qo=Jo,en=o(211);function tn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function on(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?tn(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):tn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class nn extends l.Component{constructor(...e){var t;super(...e),Object(i.a)(this,"state",{search:"",blocks:[],loading:!0,types:(t=this.props.type,"normal"===t?[{id:"BLOCK",title:Object(ie.a)("Blocks"),icon:"nc-blocks"},{id:"LAYOUT",title:Object(ie.a)("Layouts"),icon:"nc-pages"}]:[{id:"POPUP",title:Object(ie.a)("Popups"),icon:"nc-blocks"}])}),Object(i.a)(this,"updateBlocks",async()=>{const e="normal"===this.props.type?await this.getBlocks():await this.getPopups();this.setState({blocks:e})}),Object(i.a)(this,"handleAddItems",({type:e,uid:t})=>{switch(this.handleLoadingBlock(t,!0),e){case"BLOCK":this.handleAddBlock(t).catch(()=>{var e;this.handleLoadingBlock(t,!1);const{getParentNode:o}=this.props,n=null===(e=(o&&o()||document).ownerDocument)||void 0===e?void 0:e.body;Do.a.error(Object(ie.a)("Unable to insert block. Please try again or contact support"),{toastContainer:n})});break;case"POPUP":this.handleAddPopup(t).catch(()=>{var e;this.handleLoadingBlock(t,!1);const{getParentNode:o}=this.props,n=null===(e=(o&&o()||document).ownerDocument)||void 0===e?void 0:e.body;Do.a.error(Object(ie.a)("Unable to insert popup. Please try again or contact support"),{toastContainer:n})});break;case"LAYOUT":this.handleAddLayout(t).catch(()=>{var e;this.handleLoadingBlock(t,!1);const{getParentNode:o}=this.props,n=null===(e=(o&&o()||document).ownerDocument)||void 0===e?void 0:e.body;Do.a.error(Object(ie.a)("Unable to insert layout. Please try again or contact support"),{toastContainer:n})})}}),Object(i.a)(this,"handleDeleteItem",({type:e,uid:t})=>{switch(e){case"BLOCK":case"POPUP":Object(pe.i)(t);break;case"LAYOUT":Object(pe.j)(t)}this.setState(({blocks:e})=>({blocks:e.filter(e=>e.uid!==t)}))})}async componentDidMount(){const e="normal"===this.props.type?await this.getBlocks():await this.getPopups();this.setState({blocks:e,loading:!1})}async componentDidUpdate(e){e.isAuthorized!==this.props.isAuthorized&&this.updateBlocks()}async getBlocks(){const e=(await Object(pe.z)()).filter(({meta:e})=>"normal"===(null==e?void 0:e.type)),t=await Object(pe.B)();return[...e.map(e=>on(on({},this.makeThumbsData(e)),{},{uid:e.uid,type:"BLOCK",synchronized:e.synchronized||!1,synchronizable:e.synchronizable||!1})),...t.map(e=>on(on({},this.makeThumbsData(e)),{},{uid:e.uid,type:"LAYOUT",synchronized:e.synchronized||!1,synchronizable:e.synchronizable||!1}))]}async getAssets(e){const{projectFonts:t,projectExtraFontStyles:o}=this.props,{extraFontStyles:n=[]}=e.meta||{},a=Object(fo.b)({models:e}),r=Object(fo.c)(n);return{fonts:await Object(yo.u)(Object(fo.a)([...a,...r],t)),extraFontStyles:n.filter(({id:e})=>!o.some(t=>t.id===e))}}async getPopups(){return(await Object(pe.z)()).filter(({meta:e})=>"popup"===(null==e?void 0:e.type)).map(e=>on(on({},this.makeThumbsData(e)),{},{uid:e.uid,type:"POPUP",synchronized:e.synchronized||!1,synchronizable:e.synchronizable||!1}))}async handleAddLayout(e){const{onAddBlocks:t,onClose:o}=this.props,{data:n,meta:a}=await Object(pe.A)(e),{fonts:r,extraFontStyles:i}=await this.getAssets({data:n,meta:a});t({fonts:r,extraFontStyles:i,blocks:n.items}),o()}async handleAddBlock(e){const{onAddBlocks:t,onClose:o}=this.props,{data:n,meta:a}=await Object(pe.y)(e),{fonts:r,extraFontStyles:i}=await this.getAssets({data:n,meta:a});t({fonts:r,extraFontStyles:i,blocks:[n]}),o()}async handleAddPopup(e){const{onAddBlocks:t,onClose:o}=this.props,{data:n,meta:a}=await Object(pe.y)(e),{fonts:r,extraFontStyles:i}=await this.getAssets({data:n,meta:a});t({fonts:r,extraFontStyles:i,blocks:[n]}),o()}handleLoadingBlock(e,t){this.setState(Object(c.a)(o=>{o.blocks.forEach((n,a)=>{n.uid==e&&(o.blocks[a].loading=t)})}))}makeThumbsData(e){const{url:t,width:o,height:n}=Object(Oo.b)(e);return{thumbnailSrc:t,thumbnailWidth:o,thumbnailHeight:n,showRemoveIcon:!0!==e.isCloudEntity,loading:!1}}render(){const{loading:e,blocks:t,types:o,search:n}=this.state,{type:a,HeaderSlotLeft:r,showSearch:i}=this.props,l=Object(en.a)();return s.a.createElement(Qo,{type:a,loading:e,items:t,types:o,showSearch:i,showSync:!l,search:n,HeaderSlotLeft:r,onSuccessSync:this.updateBlocks,onChange:this.handleAddItems,onDelete:this.handleDeleteItem})}}Object(i.a)(nn,"defaultProps",{type:"normal",showSearch:!0,projectFonts:{},projectExtraFontStyles:[],isAuthorized:!1,onAddBlocks:v.default.noop,onClose:v.default.noop,HeaderSlotLeft:l.Component,getParentNode:()=>null});var an=Object(Jt.b)(e=>({projectFonts:Object(no.c)(e),projectExtraFontStyles:Object(no.b)(e),isAuthorized:"connected"===Object(no.a)(e)}))(nn);const rn=[{id:"template",title:ao.g?Object(ie.a)("Stories"):Object(ie.a)("Layouts"),icon:"nc-pages",renderTab:e=>s.a.createElement(Eo,e)},{id:"blocks",title:ao.c?Object(ie.a)("Popups"):Object(ie.a)("Blocks"),icon:"nc-blocks",renderTab:e=>s.a.createElement(Wo,e)},{id:"saved",title:ao.c?Object(ie.a)("Saved Popups"):Object(ie.a)("Saved"),icon:"nc-save-section",renderTab:e=>s.a.createElement(an,e)},{id:"global",title:ao.c?Object(ie.a)("Global Popups"):Object(ie.a)("Global Blocks"),icon:"nc-global",renderTab:e=>s.a.createElement(Ao,e)}];class ln extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{currentTab:this.props.activeTab||"blocks"}),Object(i.a)(this,"wrapper",s.a.createRef()),Object(i.a)(this,"mounted",!1),Object(i.a)(this,"getWrapper",()=>this.wrapper.current),Object(i.a)(this,"handleChange",e=>{const{currentTab:t}=this.state,{onChangeBlocks:o,onChangeGlobal:n,onChangeSaved:a,onChangeTemplate:r}=this.props;switch(t){case"blocks":o&&o(e);break;case"template":r&&r(e);break;case"saved":a&&a(e);break;case"global":n&&n(e)}}),Object(i.a)(this,"handleClose",()=>{this.mounted&&this.props.onClose&&this.props.onClose()})}componentDidMount(){this.mounted=!0}componentWillUnmount(){this.mounted=!1}hasSearch(e){return!!Object(It.a)(e+"Search",this.props)}hasSidebar(e){return!!Object(It.a)(e+"Sidebar",this.props)}handleTabChange(e){this.setState({currentTab:e})}renderTabs(){const{currentTab:e}=this.state,t=rn.filter(({id:e})=>{const t="show"+Object(Nt.c)(e);return!!Object(It.a)(t,this.props)}).map(t=>{const o=g()("brz-ed-popup-two-tab-item",{"brz-ed-popup-two-tab-item-active":t.id===e});return s.a.createElement("div",{key:t.id,className:o,onClick:()=>{this.handleTabChange(t.id)}},s.a.createElement("div",{className:"brz-ed-popup-two-tab-icon"},s.a.createElement(F.b,{icon:t.icon})),s.a.createElement("div",{className:"brz-ed-popup-two-tab-name"},t.title))});return s.a.createElement("div",{className:"brz-ed-popup-two-header"},s.a.createElement("div",{id:"brz-ed-popup-header-left-slot"}),s.a.createElement("div",{className:"brz-ed-popup-two-header__tabs"},t),s.a.createElement("div",{id:"brz-ed-popup-header-right-slot"}),s.a.createElement("div",{className:"brz-ed-popup-two-btn-close",onClick:this.props.onClose}))}renderContent(){const{currentTab:e}=this.state,{renderTab:t}=rn.find(({id:t})=>t===e)||rn[0];return t({HeaderSlotLeft:e=>s.a.createElement(sn,Object(x.a)({},e,{slot:"left"})),type:this.props.type,onClose:this.handleClose,showSearch:this.hasSearch(e),showSidebar:this.hasSidebar(e),onAddBlocks:this.handleChange,getParentNode:this.getWrapper})}render(){return s.a.createElement(y.a,{opened:this.props.opened,onClose:this.handleClose},s.a.createElement("div",{ref:this.wrapper,className:"brz-ed-popup-two-wrapper brz-ed-popup-two-blocks"},this.renderTabs(),s.a.createElement("div",{className:"brz-ed-popup-two-body"},this.renderContent())))}}Object(i.a)(ln,"defaultProps",{activeTab:"blocks",type:"normal",opened:!1,showTemplate:!0,showBlocks:!0,showSaved:!0,showGlobal:!0,templateSidebar:!0,blocksSidebar:!0,savedSidebar:!0,globalSidebar:!0,templateSearch:!0,blocksSearch:!0,savedSearch:!0,globalSearch:!0,onChangeBlocks:v.default.noop,onChangeTemplate:v.default.noop,onChangeSaved:v.default.noop,onChangeGlobal:v.default.noop,onClose:v.default.noop});class sn extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{isMounted:!1}),Object(i.a)(this,"headerSlotNode",null)}componentDidMount(){this.headerSlotNode=window.parent.document.querySelector(`#brz-ed-popup-header-${this.props.slot}-slot`),this.setState({isMounted:!0})}render(){return this.state.isMounted&&this.headerSlotNode&&Wt.a.createPortal(this.props.children,this.headerSlotNode)}}Object(i.a)(sn,"defaultProps",{slot:"left"});var cn=ln;const dn=({formId:e})=>{const{api:t}=f.a.get("wp"),o=f.a.get("editorVersion"),n=Ee(t.url,{formId:e,action:t.getForm,hash:t.hash,version:o});return Object(pe.I)(n,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(ke).then(e=>e)},un=({formId:e})=>{const{api:t}=f.a.get("wp"),o=f.a.get("editorVersion"),n=Ee(t.url,{action:t.createForm,hash:t.hash,version:o});return Object(pe.I)(n,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify({id:e})}).then(ke).then(e=>e)},pn=({formId:e,id:t})=>{const{api:o}=f.a.get("wp"),n=f.a.get("editorVersion"),a=Ee(o.url,{action:o.getIntegration,hash:o.hash,version:n,formId:e,integration:t});return Object(pe.I)(a,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(ke).then(e=>e)},bn=({formId:e,id:t})=>{const{api:o}=f.a.get("wp"),n=f.a.get("editorVersion"),a=Ee(o.url,{action:o.createIntegration,hash:o.hash,version:n,formId:e});return Object(pe.I)(a,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify({id:t})}).then(ke).then(e=>e)},mn=e=>{let{formId:t}=e,o=Object(C.a)(e,["formId"]);const{api:n}=f.a.get("wp"),a=f.a.get("editorVersion"),r=Ee(n.url,{action:n.updateIntegration,hash:n.hash,version:a,formId:t}),i=v.default.pick(o,["id","usedAccount","fieldsMap","usedList","confirmationNeeded","usedFolder","completed"]);return Object(pe.I)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(i)}).then(ke).then(e=>e)};function hn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function gn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?hn(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):hn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const vn=(e,t)=>{const o=t.map(e=>e.title).join(" & ");switch(e.code){case 401:return`${Object(ie.a)("Incorrect")} ${o}`;case 400:return Object(ie.a)("Duplicate Account");default:return Object(ie.a)("Something went wrong")}};class fn extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleChange",(e,t)=>{this.setState(o=>({apiKeyValue:gn(gn({},o.apiKeyValue),{},{[""+t]:e.trim()})}))}),Object(i.a)(this,"handleConnect",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onChangeProgress:a,onChangeNext:r}=this.context,{apiKeyValue:i}=this.state,l=Object.values(i);if(this.setState({nextLoading:!0,error:null}),l.some(e=>!e))await Object(pe.F)(),this.setState({error:Object(ie.a)("Fields are empty"),nextLoading:!1});else{const{status:l,data:s}=await(({formId:e,id:t,data:o})=>{const{api:n}=f.a.get("wp"),a=f.a.get("editorVersion"),r=Ee(n.url,{action:n.authenticateIntegration,hash:n.hash,version:a,formId:e,integration:t});return Object(pe.I)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(o)}).then(ke).then(e=>e)})(gn(gn({},t),{},{formId:o,data:i}));if(200!==l)this.setState({nextLoading:!1,error:vn(s,t.accountApiKeys)});else{const o=t.accounts||[];n(e,gn(gn({},t),{},{accounts:[...o,s]})),a({showProgress:!0}),r()}}}),Object(i.a)(this,"handlePrev",async()=>{const{oldStage:e,onChangeNext:t,onChangePrev:o,onChangeProgress:n}=this.context;this.setState({error:null,prevLoading:!0}),await Object(pe.F)(),n({showProgress:!0}),"account"===e?t("account"):o()});const{data:{accountApiKeys:o}}=t.app,n=o.reduce((e,{name:t})=>gn(gn({},e),{},{[""+t]:""}),{});this.state={apiKeyValue:n,nextLoading:!1,prevLoading:!1,error:null}}static async onBeforeLoad(e,t){const{formId:o,app:{id:n,data:a},onChange:r,onChangeProgress:i,onError:l}=e;let{status:s,data:c}=await(({formId:e,id:t})=>{const{api:o}=f.a.get("wp"),n=f.a.get("editorVersion"),a=Ee(o.url,{action:o.getAccountProperties,hash:o.hash,version:n,formId:e,integration:t});return Object(pe.I)(a,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(ke).then(e=>e)})({id:n,formId:o});(!s||s>=400)&&(c=[],l("Something went wrong")),r(n,gn(gn({},a),{},{accountApiKeys:c})),a.usedAccount||a.accounts&&a.accounts.length?t.onChangeNext():i({showProgress:!1})}render(){const{app:e}=this.context,{apiKeyValue:t,error:o,nextLoading:n,prevLoading:a}=this.state,r=e.data.accountApiKeys.map(({title:e,name:o})=>({title:e,name:o,value:t[o]}));return s.a.createElement(Ye,Object(x.a)({},e,{data:r,error:o,nextLoading:n,prevLoading:a,onPrev:this.handlePrev,onNext:this.handleConnect,onChange:this.handleChange}))}}Object(i.a)(fn,"contextType",be);var yn=fn;function On(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Sn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?On(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):On(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Cn extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleActive",e=>{this.setState({active:e})}),Object(i.a)(this,"handleConnect",async()=>{const{onChangeProgress:e,onChangePrev:t}=this.context;this.setState({connectLoading:!0}),await Object(pe.F)(),e({showProgress:!1}),t("connect")}),Object(i.a)(this,"handleDisconnect",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onDisconnectApp:a,onChangeProgress:r}=this.context;this.setState({nextLoading:!0,error:null});const{status:i,data:l}=await mn(Sn(Sn({},t),{},{formId:o,usedAccount:null}));200!==i?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(this.setState({mode:"account",nextLoading:!1}),n(e,Sn(Sn({},t),l)),r({showProgress:!0}),a(e))}),Object(i.a)(this,"handleAccountMode",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.F)(),this.context.onChangeProgress({showProgress:!0}),this.setState({mode:"account",prevLoading:!1})}),Object(i.a)(this,"handleDisconnectMode",async()=>{this.setState({disconnectLoading:!0,error:null}),await Object(pe.F)(),this.context.onChangeProgress({showProgress:!1}),this.setState({mode:"disconnect",disconnectLoading:!1})}),Object(i.a)(this,"handleNext",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onChangeNext:a}=this.context,{active:r}=this.state;if(this.setState({nextLoading:!0,error:null}),r!==t.usedAccount){const{status:i,data:l}=await mn(Sn(Sn({},t),{},{formId:o,usedAccount:r}));200!==i?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(n(e,Sn(Sn({},t),l)),a())}else await Object(pe.F)(),a()}),Object(i.a)(this,"handlePrev",async()=>{const{onChangePrev:e}=this.context;this.setState({prevLoading:!0}),await Object(pe.F)(),e("appList")}),this.state={active:this.getActiveAccount(t.app.data),mode:"account",nextLoading:!1,prevLoading:!1,connectLoading:!1,disconnectLoading:!1}}getActiveAccount(e){const t=e.accounts.length?e.accounts[0].id:"";return e.usedAccount||t}render(){const{app:e}=this.context;return"account"===this.state.mode?s.a.createElement(Ue,Object(x.a)({},e,this.state,{onActive:this.handleActive,onConnect:this.handleConnect,onDisconnect:this.handleDisconnectMode,onConfirm:this.handleConfirm,onPrev:this.handlePrev,onNext:this.handleNext})):s.a.createElement(Ze,Object(x.a)({},e,this.state,{descriptions:`Subscribers are automatically synced to your ${e.title} list`,onPrev:this.handleAccountMode,onNext:this.handleDisconnect}))}}Object(i.a)(Cn,"contextType",be);var xn=Cn;function jn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Bn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?jn(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):jn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Pn extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleActive",e=>{this.setState({active:e})}),Object(i.a)(this,"handleNext",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onChangeNext:a}=this.context,{active:r}=this.state;if(this.setState({nextLoading:!0,error:null}),r!==t.usedFolder){const{status:i,data:l}=await mn(Bn(Bn({},t),{},{formId:o,usedFolder:r}));200!==i?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(n(e,Bn(Bn({},t),l)),a())}else await Object(pe.F)(),a()}),Object(i.a)(this,"handlePrev",async e=>{this.setState({prevLoading:!0,error:null}),await Object(pe.F)(),e&&"string"==typeof e?this.context.onChangePrev(e):this.context.onChangePrev()}),this.state={active:this.getActiveClient(t.app.data),nextLoading:!1,prevLoading:!1}}getActiveClient(e){const{usedFolder:t,folders:o}=e,n=o.length?o[0].id:"";return t||n}render(){const{app:e}=this.context,{folders:t,accountPro:o}=e.data;return s.a.createElement(vt,Object(x.a)({},this.state,{listPro:o,lists:t,onActive:this.handleActive,onPrev:this.handlePrev,onNext:this.handleNext}))}}Object(i.a)(Pn,"contextType",be);var wn=Pn;function Tn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function zn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Tn(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Tn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class En extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleActive",(e,t)=>{const{formFields:o}=this.state,n=o.findIndex(({sourceId:t})=>t===e);this.setState({formFields:Object(Qe.replaceAt)(o,n,zn(zn({},o[n]),{},{target:t}))})}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.F)(),this.context.onChangePrev()}),Object(i.a)(this,"handleNext",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onChangeNext:a}=this.context,{formFields:r}=this.state;if(this.setState({nextLoading:!0,error:null}),Me(t.fields,r,"select")){const{status:i,data:l}=await mn(zn(zn({},t),{},{formId:o,fieldsMap:JSON.stringify(r),completed:!0}));200!==i?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(n(e,zn(zn({},t),l)),a())}else await Object(pe.F)(),this.setState({error:Object(ie.a)("All fields marked with an asterisk ( * ) must be mapped."),nextLoading:!1})});const{app:{data:{fieldsMap:o,fields:n},restrictions:a},formFields:r}=t;this.state={formFields:Fe(o,n,r,a),prevLoading:!1,nextLoading:!1,error:null}}render(){const{app:e}=this.context,{formFields:t,error:o,nextLoading:n,prevLoading:a}=this.state;return s.a.createElement(ht,Object(x.a)({},e,e.data,{formFields:t,error:o,nextLoading:n,prevLoading:a,onActive:this.handleActive,onPrev:this.handlePrev,onNext:this.handleNext}))}}Object(i.a)(En,"contextType",be);var kn=En;function Hn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Fn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Hn(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Hn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class _n extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleActive",(e,t)=>{const{formFields:o}=this.state,n=o.findIndex(({sourceId:t})=>t===e);this.setState({formFields:Object(Qe.replaceAt)(o,n,Fn(Fn({},o[n]),{},{target:t}))})}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.F)(),this.context.onChangePrev()}),Object(i.a)(this,"handleNext",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onChangeNext:a}=this.context,{formFields:r}=this.state;if(this.setState({error:null,nextLoading:!0}),Me(t.fields,r,"input")){const{status:i,data:l}=await mn(Fn(Fn({},t),{},{formId:o,fieldsMap:JSON.stringify(r),completed:!0}));200!==i?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(n(e,Fn(Fn({},t),l)),a())}else await Object(pe.F)(),this.setState({error:Object(ie.a)("All fields cannot be empty"),nextLoading:!1})});const{app:{data:o,restrictions:n},formFields:a}=t,{fieldsMap:r,fields:l}=o||{};this.state={formFields:Fe(r,l,a,n),prevLoading:!1,nextLoading:!1}}static async onBeforeLoad(e){const{app:{id:t,data:o},onChange:n}=e;n(t,Fn(Fn({},o),{},{fields:[]}))}render(){const{app:{title:e}}=this.context,{formFields:t,error:o,nextLoading:n,prevLoading:a}=this.state,r=t.map(({sourceTitle:e,sourceId:t,target:o})=>({title:e,name:t,value:"_auto_generate"===o?e:o}));return s.a.createElement(bt,{headTitle:Object(ie.a)("FORM FIELDS"),headDescription:`${e} ${Object(ie.a)("FIELDS")}`,data:r,error:o,nextLoading:n,prevLoading:a,onActive:this.handleActive,onPrev:this.handlePrev,onNext:this.handleNext})}}Object(i.a)(_n,"contextType",be);var Rn=_n;function Mn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ln(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Mn(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Mn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Wn extends l.Component{constructor(e){super(e),Object(i.a)(this,"handleChange",(e,t)=>{this.setState(({apiKeyValue:o})=>({apiKeyValue:Ln(Ln({},o),{},{[""+e]:t})}))}),Object(i.a)(this,"handleNext",async()=>{const{app:{id:e,data:t},formId:o,apiKeys:n,onChange:a,onChangeNext:r}=this.props,{apiKeyValue:i}=this.state;if(this.setState({nextLoading:!0,error:null}),n.find(({required:e,name:t})=>e&&!i[t]))await Object(pe.F)(),this.setState({error:Object(ie.a)("All fields marked with an asterisk ( * ) must be completed."),nextLoading:!1});else{const{status:n,data:l}=await(e=>{let{formId:t}=e,o=Object(C.a)(e,["formId"]);const{api:n}=f.a.get("wp"),a=f.a.get("editorVersion"),r=Ee(n.url,{action:n.updateIntegration,hash:n.hash,version:a,formId:t});return Object(pe.I)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(o)}).then(ke).then(e=>e)})(Ln(Ln(Ln({},t),i),{},{formId:o,completed:!0}));200!==n?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(a(e,Ln(Ln({},t),l)),r())}}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0}),await Object(pe.F)(),this.props.onChangePrev()}),this.state={apiKeyValue:this.getDefaultValue(),prevLoading:!1,nextLoading:!1,error:null}}getDefaultValue(){const{app:{data:e},apiKeys:t}=this.props;return t.reduce((t,{name:o})=>Ln(Ln({},t),{},{[""+o]:e[o]||""}),{})}render(){const{app:e,apiKeys:t}=this.props,{apiKeyValue:o,error:n,prevLoading:a,nextLoading:r}=this.state,i=t.map(e=>Ln(Ln({},e),{},{value:o[e.name]}));return s.a.createElement(bt,Object(x.a)({},e,{data:i,error:n,prevLoading:a,nextLoading:r,onActive:this.handleChange,onPrev:this.handlePrev,onNext:this.handleNext}))}}var In=Wn;const Nn=[{name:"emailTo",title:Object(ie.a)("Email To"),required:!0,helper:'<p class="brz-p">If you need to have multiple emails you can separate them by commas:</p>\n <p class="brz-p"><span class="brz-span">me@email.com,</span> <span class="brz-span">hi@email.com</span></p>'},{name:"subject",title:Object(ie.a)("Subject")},{name:"fromEmail",title:Object(ie.a)("From Email")},{name:"fromName",title:Object(ie.a)("From Name")},{name:"replayTo",title:Object(ie.a)("Reply-To")},{name:"cc",title:Object(ie.a)("Cc")},{name:"bcc",title:Object(ie.a)("Bcc")},{name:"metaData",title:Object(ie.a)("Meta Data"),type:"search",multiple:!0,choices:[{label:"Time",value:"time"},{label:"Page URL",value:"pageUrl"},{label:"User Agent",value:"userAgent"},{label:"Remote IP",value:"remoteIp"},{label:"Credit",value:"credit"}]}];class An extends l.Component{render(){return s.a.createElement(In,Object(x.a)({},this.context,{apiKeys:Nn,onClose:this.props.onClose}))}}Object(i.a)(An,"contextType",be);var Dn=An;class Vn extends l.Component{renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderInput({name:e}){const{apiKeyValue:t,onChange:o}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-input"},s.a.createElement("input",{className:"brz-input",value:t[e],onChange:t=>{o(e,t.target.value)}}))}renderSelect({name:e,choices:t}){const{apiKeyValue:o,onChange:n}=this.props,a=o[e],r=(a?t:[{id:"",name:"Please Select Folder"},...t]).map((e,t)=>{const{id:o,name:n}=e;return s.a.createElement(S.a,{key:t,value:o},n)});return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-select"},s.a.createElement(O.a,{defaultValue:a,className:"brz-control__select--white",maxItems:"6",itemHeight:"30",inPortal:!0,onChange:t=>{n(e,t)}},r))}renderTextarea({name:e}){const{apiKeyValue:t,onChange:o}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-input"},s.a.createElement("textarea",{className:"brz-textarea",value:t[e],onChange:t=>{o(e,t.target.value)}}))}renderApiKeys(){const e=this.props.listsCreate.map((e,t)=>{const{title:o,type:n}=e;return s.a.createElement("div",{key:t,className:"brz-ed-popup-integrations-step__fields-option"},s.a.createElement("p",{className:"brz-p"},o),this["render"+Object(Nt.c)(n)](e))});return s.a.createElement(it.a,{style:{maxHeight:255},className:"brz-ed-scroll-pane brz-ed-popup-integrations__scroll-pane"},e)}render(){const{listsCreate:e,nextLoading:t,prevLoading:o,error:n,onPrev:a,onNext:r}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__lists-create"},n&&this.renderError(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("CREATE LIST")))),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},e.length>0&&this.renderApiKeys(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},s.a.createElement($e,{size:3,leftIcon:"nc-arrow-left",loading:o,onClick:a},Object(ie.a)("Back")),s.a.createElement($e,{color:"teal",loading:t,onClick:r},Object(ie.a)("Create")))))}}function $n(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Gn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?$n(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):$n(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}Object(i.a)(Vn,"defaultProps",{id:"",title:"",shortTitle:"",description:"",img:"",form:{},listsCreate:[],apiKeyValue:{},nextLoading:!1,prevLoading:!1,onPrev:v.default.noop,onNext:v.default.noop,onChange:v.default.noop});const Un=(e,t)=>{if("server"===e)return Object(ie.a)("List are not created please connect the support");const{data:{accountPro:o,lists:n},title:a}=t;return o?`Please upgrade your ${a} account to access your lists`:0===n.length?Object(ie.a)("Lists are empty. Please add a new list and try again."):void 0};class Kn extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleActive",e=>{this.setState({active:e})}),Object(i.a)(this,"handleKeysChange",(e,t)=>{this.setState(o=>({apiKeyValue:Gn(Gn({},o.apiKeyValue),{},{[""+e]:t})}))}),Object(i.a)(this,"handleConfirm",async e=>{const{app:{id:t,data:o},formId:n,onChange:a}=this.context,{status:r,data:i}=await mn(Gn(Gn({},o),{},{formId:n,confirmationNeeded:e}));200!==r?this.setState({error:Object(ie.a)("Something went wrong")}):a(t,Gn(Gn({},o),i))}),Object(i.a)(this,"handleCreateMode",async()=>{this.setState({createLoading:!0}),await Object(pe.F)(),this.setState({mode:"create",createLoading:!1,error:null})}),Object(i.a)(this,"handleViewMode",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.F)(),this.setState({prevLoading:!1,mode:"view"})}),Object(i.a)(this,"handleCreateList",async()=>{const{app:{id:e,data:t},formId:o,onChange:n}=this.context,{apiKeyValue:a}=this.state,r=Object.values(a);if(this.setState({nextLoading:!0,error:null}),r.some(e=>!e))await Object(pe.F)(),this.setState({nextLoading:!1,error:Object(ie.a)("All fields cannot be empty")});else{const{status:r,data:i}=await(({formId:e,id:t,data:o})=>{const{api:n}=f.a.get("wp"),a=f.a.get("editorVersion"),r=Ee(n.url,{action:n.createIntegrationGroup,hash:n.hash,version:a,formId:e,integration:t});return Object(pe.I)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(o)}).then(ke).then(e=>e)})({formId:o,id:t.id,data:a,usedAccount:t.usedAccount});200!==r?this.setState({nextLoading:!1,error:Un("server")}):(n(e,Gn(Gn({},t),{},{lists:[...t.lists,i]})),this.setState({active:i.id,apiKeyValue:this.getApiKeyValue(t),mode:"view",nextLoading:!1,error:null}))}}),Object(i.a)(this,"handleNext",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onChangeNext:a}=this.context,{active:r}=this.state;if(this.setState({nextLoading:!0,error:null}),r!==t.usedList){const{status:i,data:l}=await mn(Gn(Gn({},t),{},{formId:o,usedList:r}));200!==i?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(n(e,Gn(Gn({},t),l)),a())}else await Object(pe.F)(),a()}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.F)(),this.context.onChangePrev()});const{data:o}=t.app;this.state={active:this.getActiveList(o),apiKeyValue:this.getApiKeyValue(o),mode:"view",error:Un("application",t.app),createLoading:!1,prevLoading:!1,nextLoading:!1}}static async onBeforeLoad(e){const{app:{id:t,data:o},onChange:n}=e;n(t,Gn(Gn({},o),{},{accountPro:!Array.isArray(o.lists)}))}getActiveList(e){const t=e.lists.find(({id:t})=>t===e.usedList)||{},o=e.lists.length?e.lists[0].id:"";return t.id||o}getApiKeyValue({listProperties:e}){return Array.isArray(e)?e.reduce((e,{name:t})=>Gn(Gn({},e),{},{[""+t]:""}),{}):[]}render(){const{app:e}=this.context,{lists:t,listProperties:o,hasConfirmation:n,accountPro:a,confirmationNeeded:r}=e.data;return"view"===this.state.mode?s.a.createElement(vt,Object(x.a)({},this.state,{lists:t,listsCreate:o,listPro:a,hasConfirmation:n,confirmationNeeded:r,onActive:this.handleActive,onConfirm:this.handleConfirm,onCreateList:this.handleCreateMode,onPrev:this.handlePrev,onNext:this.handleNext})):s.a.createElement(Vn,Object(x.a)({},this.state,{listsCreate:o,onChange:this.handleKeysChange,onPrev:this.handleViewMode,onNext:this.handleCreateList}))}}Object(i.a)(Kn,"contextType",be);var qn=Kn;class Yn extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"handleClose",()=>{this.props.onClose()})}render(){const{app:e}=this.context;return s.a.createElement(yt,Object(x.a)({},e,{onNext:this.handleClose}))}}Object(i.a)(Yn,"contextType",be);var Xn=Yn;const Zn=[{name:"emailTo",title:Object(ie.a)("Email To"),required:!0,helper:'<p class="brz-p">If you need to have multiple emails you can separate them by commas:</p>\n <p class="brz-p"><span class="brz-span">me@email.com,</span> <span class="brz-span">hi@email.com</span></p>'},{name:"subject",title:Object(ie.a)("Subject")},{name:"fromEmail",title:Object(ie.a)("From Email")},{name:"fromName",title:Object(ie.a)("From Name")},{name:"replayTo",title:Object(ie.a)("Reply-To")},{name:"cc",title:Object(ie.a)("Cc")},{name:"bcc",title:Object(ie.a)("Bcc")},{name:"metaData",title:Object(ie.a)("Meta Data"),type:"search",multiple:!0,choices:[{title:"Time",value:"time"},{title:"Page URL",value:"pageUrl"},{title:"User Agent",value:"userAgent"},{title:"Remote IP",value:"remoteIp"},{title:"Credit",value:"credit"}]},{name:"host",title:Object(ie.a)("Host"),required:!0},{name:"port",title:Object(ie.a)("Port"),required:!0},{name:"authentication",title:Object(ie.a)("Authentication"),type:"switch"},{name:"username",title:Object(ie.a)("Username"),required:!0},{name:"password",title:Object(ie.a)("Password"),required:!0},{name:"encryption",title:Object(ie.a)("Encryption"),type:"select",choices:[{title:"SSL",name:"ssl"},{title:"TLS",name:"tls"}]}];class Jn extends l.Component{render(){return s.a.createElement(In,Object(x.a)({},this.props,this.context,{apiKeys:Zn}))}}Object(i.a)(Jn,"contextType",be);var Qn=Jn;const ea=[{name:"emailTo",title:Object(ie.a)("Email To"),required:!0,helper:'<p class="brz-p">If you need to have multiple emails you can separate them by commas:</p>\n <p class="brz-p"><span class="brz-span">me@email.com,</span> <span class="brz-span">hi@email.com</span></p>'},{name:"subject",title:Object(ie.a)("Subject")},{name:"fromEmail",title:Object(ie.a)("From Email")},{name:"fromName",title:Object(ie.a)("From Name")},{name:"replayTo",title:Object(ie.a)("Reply-To")},{name:"cc",title:Object(ie.a)("Cc")},{name:"bcc",title:Object(ie.a)("Bcc")},{name:"metaData",title:Object(ie.a)("Meta Data"),type:"search",multiple:!0,choices:[{title:"TIME",value:"time"},{title:"Page URL",value:"pageUrl"},{title:"User Agent",value:"userAgent"},{title:"Remote IP",value:"remoteIp"},{title:"Credit",value:"credit"}]},{name:"username",title:Object(ie.a)("Username"),required:!0},{name:"password",title:Object(ie.a)("Password"),required:!0}];class ta extends l.Component{render(){return s.a.createElement(In,Object(x.a)({},this.props,this.context,{apiKeys:ea}))}}Object(i.a)(ta,"contextType",be);var oa=ta;class na extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"handleConfirmation",e=>{this.props.onChangeConfirmation(e.target.checked)}),Object(i.a)(this,"handleKeyDown",e=>{const{confirmed:t,onNext:o}=this.props;13===e.which&&t&&o()})}renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},this.props.error)}renderValidationError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error brz-ed-popup-recaptcha-validation-error"},s.a.createElement("p",{className:"brz-p"},Object(ie.a)("Verification process failed, please make sure you have done the following three things and try again in a few minutes.")),s.a.createElement("p",{className:"brz-p"},"1. ",Object(ie.a)("Inputted a valid site key"),". "),s.a.createElement("p",{className:"brz-p"},"2.",Object(ie.a)("Deselected the “Verify the origin of reCAPTCHA solutions” checkbox within your Google account.")),s.a.createElement("p",{className:"brz-p"},"3. ",Object(ie.a)("Established a stable internet connection"),"."))}renderItems(){const{data:e,onChange:t}=this.props;return e.map((e,o)=>{const{title:n,name:a,value:r}=e;return s.a.createElement(Ke,{key:o,title:n,value:r,required:!0,onChange:e=>{t(e.target.value,a)}})})}renderDescriptions(){return s.a.createElement("div",{className:"brz-ed-popup-recaptcha__confirmation"},s.a.createElement("label",{className:"brz-label"},s.a.createElement("input",{className:"brz-input",type:"checkbox",value:this.props.confirmed,onChange:this.handleConfirmation}),'I have deselected "Verify the origins of reCAPTCHA solu-',s.a.createElement("br",{className:"brz-br"}),'tions and clicked "Save Changes" under "Key Settings >',s.a.createElement("br",{className:"brz-br"}),'Advanced Settings" in my Google reCAPTCHA page'))}render(){const{title:e,img:t,validated:o,confirmed:n,error:a,nextLoading:r,prevLoading:i,onRetry:l,onNext:c,onPrev:d}=this.props;return s.a.createElement(it.a,{className:"brz-ed-popup-integrations-apps__scroll-pane",style:{height:"100%"}},s.a.createElement("div",{className:"brz-ed-popup-recaptcha__connect"},s.a.createElement("div",{className:"brz-ed-popup-recaptcha__container"},s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-head"},s.a.createElement("img",{className:"brz-img",src:t,alt:e}),o?this.renderDescriptions():this.renderValidationError(),a&&this.renderError()),s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-body"},this.renderItems(),o?s.a.createElement($e,{color:"teal",loading:r,disabled:!n,onClick:c},Object(ie.a)("Connect")):s.a.createElement($e,{color:"teal",loading:r,onClick:l},Object(ie.a)("Try Again")),s.a.createElement($e,{color:"default",loading:i,onClick:d},Object(ie.a)("Cancel"))))))}}Object(i.a)(na,"defaultProps",{id:"",title:"",img:"",confirmed:!1,error:!1,nextLoading:!1,prevLoading:!1,onChange:v.default.noop,onChangeConfirmation:v.default.noop,onNext:v.default.noop,onPrev:v.default.noop});var aa=na;function ra(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ia(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?ra(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):ra(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}async function la(e){try{return await function(e){const t=window.parent,o=function(e){const t=e.document.body,o=document.createElement("div");return o.setAttribute("class","brz-ed-recaptcha brz-hidden"),t.append(o),o}(t),n=function(e){const t=e.document.body,o=document.createElement("script");return o.setAttribute("src","https://www.google.com/recaptcha/api.js?onload=onloadRecaptchaCallback&render=explicit"),o.setAttribute("async","async"),o.setAttribute("defer","defer"),t.append(o),o}(t);return new Promise((a,r)=>{n.onload=()=>{const i=t.parent.grecaptcha;t.onloadRecaptchaCallback=()=>{const t=i.render(o,{sitekey:e.sitekey,size:"invisible",callback:async t=>{const{status:r}=await(({group:e,service:t,secretkey:o,sitekey:n,response:a})=>{const{api:r}=f.a.get("wp"),i=f.a.get("editorVersion"),l=Ee(r.url,{action:r.addAccount,hash:r.hash,version:i,secretkey:o,response:a});return Object(pe.I)(l,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify({group:e,service:t,sitekey:n,secretkey:o})}).then(ke).then(e=>e)})(ia(ia({group:"recaptcha",service:"recaptcha"},e),{},{response:t}));o.remove(),n.remove(),a(200===r)},"error-callback":()=>{o.remove(),n.remove(),r(!1)}});i.reset(t),i.execute(t)}}})}(e)}catch(e){return e}}function sa(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ca(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?sa(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):sa(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const da=[{name:"sitekey",title:"Site Key"},{name:"secretkey",title:"Secret Key"}];class ua extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleChange",(e,t)=>{this.setState(({apiKeyValue:o})=>({apiKeyValue:ca(ca({},o),{},{[""+t]:e.trim()})}))}),Object(i.a)(this,"handleConfirmation",e=>{this.setState({confirmed:e})}),Object(i.a)(this,"handleNext",async()=>{const{app:e,onChangeNext:t}=this.context,{apiKeyValue:o}=this.state,n=Object.values(o);if(this.setState({nextLoading:!0,error:null}),n.some(e=>!e))await Object(pe.F)(),this.setState({error:"Fields are empty",nextLoading:!1});else{const{data:n}=e;if(n){const{status:e}=await Ne(n.id);200!==e&&this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")})}await la(o)?t():this.setState({nextLoading:!1,validated:!1})}}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0}),await Object(pe.F)(),this.context.onChangePrev()});const{app:{data:o}}=t;this.state={apiKeyValue:o||this.getDefaultValue(),validated:!0,confirmed:!1,prevLoading:!1,nextLoading:!1,error:null}}static async onBeforeLoad(e,t){e.app.data&&t.onChangeNext("disconnect")}getDefaultValue(){return da.reduce((e,{name:t})=>ca(ca({},e),{},{[""+t]:""}),{})}render(){const{apiKeyValue:e,nextLoading:t,prevLoading:o,confirmed:n,error:a,validated:r}=this.state,i=da.map(({title:t,name:o})=>({title:t,name:o,value:e[o]}));return s.a.createElement(aa,Object(x.a)({},this.context.app,{data:i,validated:r,confirmed:n,nextLoading:t,prevLoading:o,error:a,onChange:this.handleChange,onChangeConfirmation:this.handleConfirmation,onNext:this.handleNext,onRetry:this.handleNext,onPrev:this.handlePrev}))}}Object(i.a)(ua,"contextType",be);var pa=ua;class ba extends l.Component{constructor(e){super(e),Object(i.a)(this,"handleNext",async()=>{const{app:e,onChange:t,onDisconnectApp:o}=this.context;this.setState({nextLoading:!0,error:null});const{status:n}=await Ne(e.data.id);n<400?(o(e.id),t(e.id,null)):this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")})}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.F)(),this.context.onChangePrev("appList")}),this.state={nextLoading:!1,prevLoading:!1,error:null}}render(){const{nextLoading:e,prevLoading:t,error:o}=this.state;return s.a.createElement(Ze,Object(x.a)({},this.context.app,{descriptions:Object(ie.a)("Are you want to delete account")+" ?",nextLoading:e,prevLoading:t,error:o,onPrev:this.handlePrev,onNext:this.handleNext}))}}Object(i.a)(ba,"contextType",be);var ma=ba;class ha extends Et{}Object(i.a)(ha,"fields",Dn),Object(i.a)(ha,"done",Xn);var ga=ha;class va extends Et{}Object(i.a)(va,"fields",Dn),Object(i.a)(va,"done",Xn);var fa=va;class ya extends Et{}Object(i.a)(ya,"connect",yn),Object(i.a)(ya,"account",xn),Object(i.a)(ya,"fields",kn),Object(i.a)(ya,"list",qn),Object(i.a)(ya,"done",Xn);var Oa=ya;class Sa extends Et{}Object(i.a)(Sa,"connect",yn),Object(i.a)(Sa,"account",xn),Object(i.a)(Sa,"client",wn),Object(i.a)(Sa,"fields",kn),Object(i.a)(Sa,"list",qn),Object(i.a)(Sa,"done",Xn);var Ca=Sa;class xa extends Et{}Object(i.a)(xa,"connect",yn),Object(i.a)(xa,"account",xn),Object(i.a)(xa,"fields",Rn),Object(i.a)(xa,"done",Xn);var ja=xa;class Ba extends Et{}Object(i.a)(Ba,"connect",yn),Object(i.a)(Ba,"account",xn),Object(i.a)(Ba,"client",wn),Object(i.a)(Ba,"fields",kn),Object(i.a)(Ba,"list",qn),Object(i.a)(Ba,"done",Xn);var Pa=Ba;class wa extends Et{}Object(i.a)(wa,"connect",yn),Object(i.a)(wa,"account",xn),Object(i.a)(wa,"fields",kn),Object(i.a)(wa,"list",qn),Object(i.a)(wa,"done",Xn);var Ta=wa;class za extends Et{}Object(i.a)(za,"connect",yn),Object(i.a)(za,"account",xn),Object(i.a)(za,"fields",kn),Object(i.a)(za,"list",qn),Object(i.a)(za,"done",Xn);var Ea=za;class ka extends Et{}Object(i.a)(ka,"connect",yn),Object(i.a)(ka,"account",xn),Object(i.a)(ka,"fields",kn),Object(i.a)(ka,"list",qn),Object(i.a)(ka,"done",Xn);var Ha=ka;class Fa extends Et{}Object(i.a)(Fa,"connect",yn),Object(i.a)(Fa,"account",xn),Object(i.a)(Fa,"fields",kn),Object(i.a)(Fa,"list",qn),Object(i.a)(Fa,"done",Xn);var _a=Fa;class Ra extends Et{}Object(i.a)(Ra,"connect",yn),Object(i.a)(Ra,"account",xn),Object(i.a)(Ra,"fields",kn),Object(i.a)(Ra,"list",qn),Object(i.a)(Ra,"done",Xn);var Ma=Ra;class La extends Et{}Object(i.a)(La,"connect",yn),Object(i.a)(La,"account",xn),Object(i.a)(La,"list",qn),Object(i.a)(La,"fields",kn),Object(i.a)(La,"done",Xn);var Wa=La;class Ia extends Et{}Object(i.a)(Ia,"connect",yn),Object(i.a)(Ia,"account",xn),Object(i.a)(Ia,"fields",kn),Object(i.a)(Ia,"list",qn),Object(i.a)(Ia,"done",Xn);var Na=Ia;class Aa extends Et{}Object(i.a)(Aa,"connect",yn),Object(i.a)(Aa,"account",xn),Object(i.a)(Aa,"fields",kn),Object(i.a)(Aa,"done",Xn);var Da=Aa;class Va extends Et{}Object(i.a)(Va,"fields",Qn),Object(i.a)(Va,"done",Xn);var $a=Va;class Ga extends Et{}Object(i.a)(Ga,"fields",oa),Object(i.a)(Ga,"done",Xn);var Ua=Ga;class Ka extends Et{}Object(i.a)(Ka,"connect",yn),Object(i.a)(Ka,"account",xn),Object(i.a)(Ka,"fields",kn),Object(i.a)(Ka,"list",qn),Object(i.a)(Ka,"done",Xn);var qa=Ka;class Ya extends Et{}Object(i.a)(Ya,"connect",yn),Object(i.a)(Ya,"account",xn),Object(i.a)(Ya,"list",qn),Object(i.a)(Ya,"fields",kn),Object(i.a)(Ya,"done",Xn);var Xa=Ya;class Za extends Et{}Object(i.a)(Za,"connect",yn),Object(i.a)(Za,"account",xn),Object(i.a)(Za,"fields",kn),Object(i.a)(Za,"list",qn),Object(i.a)(Za,"done",Xn);var Ja=Za;class Qa extends Et{}Object(i.a)(Qa,"connect",yn),Object(i.a)(Qa,"account",xn),Object(i.a)(Qa,"fields",kn),Object(i.a)(Qa,"list",qn),Object(i.a)(Qa,"done",Xn);var er=Qa;class tr extends Et{}Object(i.a)(tr,"connect",yn),Object(i.a)(tr,"account",xn),Object(i.a)(tr,"fields",kn),Object(i.a)(tr,"list",qn),Object(i.a)(tr,"done",Xn);var or=tr;class nr extends Et{}Object(i.a)(nr,"connect",yn),Object(i.a)(nr,"account",xn),Object(i.a)(nr,"fields",kn),Object(i.a)(nr,"list",qn),Object(i.a)(nr,"done",Xn);var ar=nr;class rr extends Et{}Object(i.a)(rr,"connect",pa),Object(i.a)(rr,"done",Xn),Object(i.a)(rr,"disconnect",ma);var ir=rr;function lr(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function sr(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?lr(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):lr(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const cr=f.a.get("pro");var dr=class extends we{constructor(...e){super(...e),Object(i.a)(this,"appsData",[]),Object(i.a)(this,"appsComponent",a),Object(i.a)(this,"proExceptions",!cr),Object(i.a)(this,"handleConnectApp",async e=>{const{id:t,stages:o}=e,{formId:n}=this.props;let{status:a,data:r}=await pn({formId:n,id:t});if(200!==a){if(404!==a)return void this.setState({appError:Object(ie.a)("The integration is not responding, please try again or verify the account credentials")});if(({status:a,data:r}=await bn({formId:n,id:t})),200!==a)return void this.setState({appError:Object(ie.a)("The integration is not responding, please try again or verify the account credentials")})}this.setState(Object(c.a)(n=>{n.appError=null,n.stages=o,n.connectedApp=t,n.data[t]=e,n.data[t].data=r}),()=>{this.handleNext()})})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),{services:o}=await t.json();this.appsData=o,await this.getData()}async getData(){const{formId:e}=this.props,{status:t,data:o}=await dn({formId:e});if(200!==t)if(404===t){const{status:t}=await un({formId:e});t>=400?this.setState({error:Object(ie.a)("Something went wrong")}):this.setState({loading:!1})}else this.setState({error:Object(ie.a)("Something went wrong")});else o&&this.setState({connectedApps:this.getConnectedApps(o.integrations),loading:!1})}getContextValue(){const{formId:e,formFields:t}=this.props;return sr(sr({},super.getContextValue()),{},{formId:e,formFields:t})}},ur=o(213);function pr(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function br(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?pr(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):pr(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const mr=f.a.get("pro"),hr=f.a.get("wp");var gr=class extends we{constructor(...e){super(...e),Object(i.a)(this,"state",{loading:!0,showProgress:!0,connectedApp:"",connectedApps:[],stage:this.props.stage,stages:this.props.stages,oldStage:"",data:{},error:null,appError:null,emailTemplate:"",hasEmailTemplate:!1,textCopied:""}),Object(i.a)(this,"appsData",[]),Object(i.a)(this,"appsComponent",a),Object(i.a)(this,"proExceptions",!mr),Object(i.a)(this,"updateForm",v.default.debounce(()=>{(({formId:e,hasEmailTemplate:t,emailTemplate:o})=>{const{api:n}=f.a.get("wp"),a=f.a.get("editorVersion"),r=Ee(n.url,{formId:e,action:n.updateForm,hash:n.hash,version:a});Object(pe.I)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify({hasEmailTemplate:t,emailTemplate:o})}).then(ke).then(e=>e)})({formId:this.props.formId,hasEmailTemplate:this.state.hasEmailTemplate,emailTemplate:this.state.emailTemplate})},1e3)),Object(i.a)(this,"handleConnectApp",async e=>{const t=e.id,{formId:o}=this.props,{stages:n=[]}=this.appsData.find(e=>e.id===t)||{};let{status:a,data:r}=await((...e)=>pn(...e))({formId:o,id:t});if(200!==a){if(404!==a)return void this.setState({error:Object(ie.a)("Something went wrong")});{const{status:e,data:n}=await((...e)=>bn(...e))({formId:o,id:t});if(200!==e)return void this.setState({error:Object(ie.a)("Something went wrong")});r=n}}this.setState(Object(c.a)(o=>{o.stages=n,o.connectedApp=t,o.data[t]=Object.assign(e,{data:r})}),()=>{this.handleNext()})}),Object(i.a)(this,"handleHtmlChange",e=>{this.setState({emailTemplate:e},this.updateForm)}),Object(i.a)(this,"handleEnableHtml",e=>{this.setState({hasEmailTemplate:e}),!1===e&&this.state.emailTemplate&&this.setState({emailTemplate:""},this.updateForm)})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),o=await t.json();this.appsData=hr?o.wpEmail:o.cloudEmail,await this.getData()}async getData(){const{formId:e,onLoading:t}=this.props,{status:o,data:n}=await dn({formId:e});if(200!==o)if(404===o){const{status:t,data:o}=await un({formId:e});t>=400||!o?this.setState({error:Object(ie.a)("Something went wrong")}):this.setState({connectedApps:this.getConnectedApps(o.integrations),loading:!1})}else this.setState({error:Object(ie.a)("Something went wrong")});else n&&this.setState({connectedApps:this.getConnectedApps(n.integrations),emailTemplate:n.emailTemplate||"",hasEmailTemplate:n.hasEmailTemplate,loading:!1});t(!1)}getContextValue(){const{formId:e,formFields:t}=this.props;return br(br({},super.getContextValue()),{},{formId:e,formFields:t})}handleCopyToClipboard(e){(e=>{const t=document.createElement("textarea");t.value=e,document.body.appendChild(t),t.focus(),t.select();try{document.execCommand("copy")}catch(e){console.error("Fallback: Oops, unable to copy",e)}document.body.removeChild(t)})(`{{${e}}}`),this.setState({textCopied:e},()=>{setTimeout(()=>{this.setState({textCopied:void 0})},800)})}renderFormInfo(){return s.a.createElement("div",{className:"brz-ed-popup-integration-email__info"},this.props.formFields.map((e,t)=>s.a.createElement("p",{key:t,title:"Click to copy",className:"brz-p",onClick:()=>{this.handleCopyToClipboard(e.label)}},s.a.createElement("span",{className:"brz-span brz-"},`{{${e.label}}}`),s.a.createElement(F.b,{icon:"nc-duplicate"}),this.state.textCopied===e.label&&s.a.createElement("span",{className:"brz-span brz-ed-animated brz-ed-animated--fadeIn"},"Copied"))))}renderApps(){const{error:e,emailTemplate:t,hasEmailTemplate:o}=this.state,n=g()("brz-ed-popup-integration-email__template",{"brz-ed-popup-integration-email__template--open":o});return s.a.createElement(s.a.Fragment,null,e&&super.renderError(),s.a.createElement(Be,{apps:this.appsData,proExceptions:this.proExceptions}),!this.proExceptions&&s.a.createElement("div",{className:n},s.a.createElement("div",{className:"brz-ed-popup-integration-email__template-head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("USE CUSTOM TEMPLATE"))),s.a.createElement(Je.a,{className:"brz-ed-control__switch--light",defaultValue:o,onChange:this.handleEnableHtml})),s.a.createElement("div",{className:"brz-ed-popup-integration-email__template-body"},s.a.createElement(ur.a,{className:"brz-ed-popup-integration-email__codemirror",value:t,onChange:this.handleHtmlChange,language:"xml",theme:"idea"}),s.a.createElement("div",{className:"brz-d-xs-flex brz-align-items-xs-center"},s.a.createElement("p",{className:"brz-p"},Object(ie.a)("Tip: Use these shortcodes to populate your template")),s.a.createElement(ye.b,{className:"brz-ed-popup-integration-email__tooltip",size:"small",openOnClick:!1,closeDelay:600,overlay:this.renderFormInfo()},s.a.createElement(F.b,{icon:"nc-alert-circle-que"}))))))}};function vr(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function fr(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?vr(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):vr(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}var yr=class extends we{constructor(...e){super(...e),Object(i.a)(this,"appsData",[]),Object(i.a)(this,"appsComponent",a),Object(i.a)(this,"handleConnectApp",async e=>{const t=e.id;await Object(pe.F)(),this.setState(Object(c.a)(o=>{const n=o.data[t]||{};o.connectedApp=t,o.stages=e.stages,o.data[t]=fr(fr({},n),e)}),()=>{this.handleNext()})})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),{recaptcha:o}=await t.json(),{status:n,data:a}=await Ie({group:"recaptcha",services:"recaptcha"});this.appsData=o,200===n&&a&&a.length>0?this.setState(Object(c.a)(e=>{e.data={recaptcha:{data:a[0]}},e.connectedApps=this.getConnectedApps(a),e.loading=!1})):this.setState({loading:!1})}getConnectedApps(e){return e.reduce((e,t)=>this.appsData.find(({id:e})=>e===t.group)?[...e,t.group]:e,[...this.state.connectedApps])}};const Or=[{id:"email",title:Object(ie.a)("Email"),icon:"nc-email",component:gr},{id:"service",title:Object(ie.a)("APPS"),icon:"nc-extensions-2",component:dr},{id:"recaptcha",title:Object(ie.a)("ReCAPTCHA"),icon:"nc-captcha",component:yr}];class Sr extends l.Component{render(){const{formId:e,formFields:t,opened:o,onClose:n}=this.props;return s.a.createElement(de,{currentTab:"email",formId:e,formFields:t,opened:o,tabs:Or,onClose:n})}}Object(i.a)(Sr,"defaultProps",{formId:"",formFields:[],opened:!1,onClose:v.default.noop});var Cr=Sr,xr=o(74);class jr extends l.Component{render(){const{opened:e,onClose:t}=this.props,o="MacOS"===Object(xr.a)(),n=o?`${Object(ue.a)("editor/img/mac-keyboard1x.png")} 1x , ${Object(ue.a)("editor/img/mac-keyboard2x.png")} 2x`:`${Object(ue.a)("editor/img/pc-keyboard1x.png")} 1x , ${Object(ue.a)("editor/img/pc-keyboard2x.png")} 2x`;return s.a.createElement(y.a,{id:"key-helper",className:"brz-ed-hotkeys-overlay",opened:e,onClose:t},s.a.createElement("div",{className:"brz-ed-hotkeys-wrapper"},s.a.createElement(F.b,{icon:"nc-close-popup",className:"brz-ed-hotkeys-btn-close",onClick:t}),s.a.createElement("div",{className:"brz-ed-hotkeys-label"},Object(ie.a)("Keyboard Shortcuts")),s.a.createElement("div",{className:"brz-ed-hotkeys-image-container"},s.a.createElement("picture",null,s.a.createElement("img",{className:"brz-ed-hotkeys-image",srcSet:n}))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container"},s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column"},s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + C":"Ctrl + C"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Copy"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + V":"Ctrl + V"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Paste"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + shift + V":"Ctrl + Shift + V"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Paste Style"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + D":"Ctrl + D"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Duplicate"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + delete":"Delete"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Delete"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd +":"Ctrl +",s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons",icon:"nc-arrow"}),s.a.createElement("span",{className:"divider"}," / "),s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons brz-ed-deg180",icon:"nc-arrow"})),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Horizontal Align"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd +":"Ctrl +",s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons brz-ed-deg90",icon:"nc-arrow"}),s.a.createElement("span",{className:"divider"}," / "),s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons brz-ed-deg270",icon:"nc-arrow"})),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Vertical Align")))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column"},s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + Z":"Ctrl + Z"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Undo"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + shift + Z":"Ctrl + Shift + Z"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Redo"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + S":"Ctrl + S"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Save Draft / Update Page"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd +":"Ctrl +",s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons",icon:"nc-plus2"}),s.a.createElement("span",{className:"divider"}," / "),s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons",icon:"nc-minus"})),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Responsive Zoom In / Out"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd +":"Ctrl +",s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons",icon:"nc-alert-circle-que"})),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Shortcuts"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + shift + A":"Ctrl + Shift + A"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Add New Block / Layout"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"esc":"Esc"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Select Parent Element")))))))}}Object(i.a)(jr,"defaultProps",{opened:!1,onClose:v.noop});function Br(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Pr(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Br(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Br(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const wr=(e,t)=>{const o=e.family.toUpperCase(),n=t.family.toUpperCase();return o<n?-1:o>n?1:0};class Tr extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{loadingApp:""})}async handleDeleteFont(e,t){this.setState({loadingApp:t.brizyId}),"upload"===e?await(e=>{const{api:t}=f.a.get("wp"),o=f.a.get("editorVersion"),n=Ee(t.url,{action:t.deleteFont,hash:t.hash,version:o,id:e});return Object(pe.I)(n,{method:"POST"}).then(ke).then(e=>e)})(t.id):await Object(pe.F)(),this.setState({loadingApp:""}),this.props.deleteFont({type:e,fonts:[t]})}getSortedFonts(e){return Object.entries(e).map(([e,{data:t}])=>t.map(t=>Pr(Pr({},t),{},{fontGroupType:e}))).reduce((e,t)=>e.concat(t),[]).sort(wr)}render(){const{defaultFont:e,fonts:t}=this.props,{loadingApp:o}=this.state;return s.a.createElement(P.a,null,s.a.createElement("div",{className:"brz-ed-popup-fonts__lists brz-d-xs-flex brz-flex-xs-wrap"},this.getSortedFonts(t).map(t=>{let{fontGroupType:n}=t,a=Object(C.a)(t,["fontGroupType"]);const{id:r,brizyId:i,title:l,family:c}=yo.b[n](a),d=e===r,u=o===i;return s.a.createElement("div",{key:i,className:"brz-ed-popup-fonts__item"},s.a.createElement("div",{className:"brz-ed-popup-fonts__item-logo",style:{fontFamily:c}},"Aa",!d&&!u&&s.a.createElement("div",{className:"brz-ed-badge__delete brz-ed-popup-fonts__delete",onClick:()=>{this.handleDeleteFont(n,a)}},s.a.createElement(F.b,{icon:"nc-trash"}))),s.a.createElement("div",{className:"brz-ed-popup-fonts__item-title"},l),u&&s.a.createElement("span",{className:"brz-span brz-ed-popup-integrations__app-icon"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"})))})))}}Object(i.a)(Tr,"defaultProps",{fonts:{},defaultFont:"",deleteFont:v.default.noop,onClose:v.default.noop});const zr={deleteFont:ko.D};var Er=Object(Jt.b)(e=>({fonts:Object(go.I)(e),defaultFont:Object(go.z)(e).data.font}),zr)(Tr);function kr(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Hr(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?kr(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):kr(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Fr extends l.Component{constructor(e){super(e),Object(i.a)(this,"handleAddNewFont",(e,t)=>{this.setState({selectedFont:t})}),Object(i.a)(this,"handleNext",async()=>{const{selectedFont:e}=this.state,{app:{data:{fonts:t}},onChangeNext:o}=this.context,n=t.find(({family:t})=>t===e);if(this.setState({nextLoading:!0,error:null}),await Object(pe.F)(),n){const e=Object(yo.i)(this.props.fonts,Object(yo.g)(n).id);e?this.props.addFonts([{type:e.group,fonts:[Hr(Hr({},e.font),{},{deleted:!1})]}]):this.props.addFonts([{type:"google",fonts:[n]}]),o()}else this.setState({error:`Font ${e} not found, please try again`,nextLoading:!1})}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0}),await Object(pe.F)(),this.context.onChangePrev()});const{config:t,blocks:o={},google:n={}}=this.props.fonts;this.usedFonts=[...t.data||[],...n.data||[],...o.data||[]],this.state={selectedFont:"",nextLoading:!1,prevLoading:!1,error:null}}static async onBeforeLoad(e){const{app:{id:t,data:o},onChange:n}=e,a=await Object(yo.h)();n(t,Hr(Hr({},o),{},{fonts:a}))}render(){const{app:e}=this.context,{selectedFont:t,prevLoading:o,nextLoading:n,error:a}=this.state,r=e.data.fonts.filter(e=>{const{id:t}=Object(yo.g)(e);return!this.usedFonts.some(e=>{const{id:o,deleted:n}=Object(yo.g)(e);return!0!==n&&o===t})}).map(e=>({value:e.family,label:e.family})),i=[{title:Object(ie.a)("Font name"),type:"search",choices:r,value:t}],c=s.a.createElement(l.Fragment,null,Object(ie.a)("Tip: You can browse the Google font library")," ",s.a.createElement("a",{className:"brz-a",href:"https://fonts.google.com",target:"_blank",rel:"noopener noreferrer"},Object(ie.a)("here")),".");return s.a.createElement(bt,Object(x.a)({},e,{data:i,headTitle:Object(ie.a)("ADD GOOGLE FONT"),description:c,prevLoading:o,nextLoading:n,error:a,onActive:this.handleAddNewFont,onPrev:this.handlePrev,onNext:this.handleNext}))}}Object(i.a)(Fr,"contextType",be);const _r={addFonts:Io.f};var Rr=Object(Jt.b)(e=>({fonts:Object(no.c)(e)}),_r)(Fr);class Mr extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"handleClose",()=>{this.props.onClose()})}render(){const{app:e}=this.context;return s.a.createElement(yt,Object(x.a)({},e,{onNext:this.handleClose}))}}Object(i.a)(Mr,"contextType",be);var Lr=Mr;class Wr extends Et{}Object(i.a)(Wr,"connect",Rr),Object(i.a)(Wr,"done",Lr);var Ir=Wr;function Nr(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ar(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Nr(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Nr(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Dr extends l.Component{constructor(e){super(e),Object(i.a)(this,"handleChange",(e,t)=>{t.length<=17&&this.setState({fontName:t})}),Object(i.a)(this,"handleNext",async()=>{const{fontName:e}=this.state,{app:{id:t,data:o={}},onChange:n,onChangeNext:a}=this.context;this.setState({nextLoading:!0}),await Object(pe.F)(),e.trim()?(n(t,Ar(Ar({},o),{},{fontName:e})),a()):this.setState({nextLoading:!1,error:Object(ie.a)("Font Name is Required")})}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0}),await Object(pe.F)(),this.context.onChangePrev()}),this.state={fontName:"",nextLoading:!1,prevLoading:!1,error:null}}render(){const{app:e}=this.context,{fontName:t,prevLoading:o,nextLoading:n,error:a}=this.state,r=[{title:Object(ie.a)("Font name"),value:t}];return s.a.createElement(bt,Object(x.a)({},e,{headTitle:Object(ie.a)("UPLOAD FONT"),data:r,error:a,prevLoading:o,nextLoading:n,onActive:this.handleChange,onNext:this.handleNext,onPrev:this.handlePrev}))}}Object(i.a)(Dr,"contextType",be);var Vr=Dr,$r=o(57);class Gr extends l.Component{renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderSelect({name:e,value:t,choices:o}){const n=o.map(({title:e,name:t})=>s.a.createElement(S.a,{key:t,value:t},e));return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-select"},s.a.createElement(O.a,{className:"brz-control__select--white",maxItems:"6",itemHeight:"30",inPortal:!0,defaultValue:t,onChange:t=>{this.props.onActive(e,t)}},n))}renderUpload({name:e,value:t,accept:o}){return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-upload"},t?s.a.createElement(l.Fragment,null,s.a.createElement("span",{className:"brz-span"},t.name),s.a.createElement("button",{className:"brz-button brz-ed-btn brz-ed-btn-xs brz-ed-btn-gray brz-ed-btn-red--hover brz-ed-btn-rounded brz-fw-700",onClick:()=>{this.props.onActive(e,"")}}," ",Object(ie.a)("DELETE")," ")):s.a.createElement("label",{className:"brz-label brz-ed-btn brz-ed-btn-xs brz-ed-btn-gray brz-ed-btn-teal--hover brz-ed-btn-rounded brz-fw-700",htmlFor:e},s.a.createElement("input",{id:e,className:"brz-input brz-hidden",type:"file",accept:o,onChange:({target:t})=>{this.props.onActive(e,t.files[0])}}),Object(ie.a)("UPLOAD")))}renderOptions(){const e=this.props.data.map((e,t)=>{const{title:o,type:n,helper:a}=e;return s.a.createElement("div",{key:t,className:"brz-ed-popup-integrations-step__fields-option"},s.a.createElement("div",{className:"brz-d-xs-flex brz-align-items-xs-center"},s.a.createElement("p",{className:"brz-p"},o),a&&s.a.createElement(ye.b,{className:"brz-ed-popup-integrations-fields__tooltip",openOnClick:!1,inPortal:!0,overlay:s.a.createElement("div",{className:"brz-ed-popup-integrations-fields__info",dangerouslySetInnerHTML:{__html:a}})},s.a.createElement(F.b,{icon:"nc-alert-circle-que"}))),"select"===n&&this.renderSelect(e),"upload"===n&&this.renderUpload(e))});return s.a.createElement(it.a,{style:{maxHeight:255},className:"brz-ed-popup-integrations__scroll-pane"},e)}render(){const{error:e,prevLoading:t,nextLoading:o,onPrev:n,onNext:a}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__fields"},e&&this.renderError(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("ADD FONT VARIATION")))),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},this.renderOptions(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},null!==t&&s.a.createElement($e,{size:3,leftIcon:"nc-arrow-left",loading:t,onClick:n},Object(ie.a)("Back")),null!==o&&s.a.createElement($e,{color:"teal",loading:o,onClick:a},Object(ie.a)("Add Font")))))}}Object(i.a)(Gr,"defaultProps",{data:[{title:"",value:"",name:"",helper:null}],nextLoading:null,prevLoading:null,onPrev:v.default.noop,onNext:v.default.noop,onActive:v.default.noop});var Ur=Gr;class Kr extends l.Component{renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderOptions(){const{data:e,onActive:t}=this.props,o=e.map((e,o)=>{const{id:n,title:a,type:r}=e;return s.a.createElement("div",{key:o,className:"brz-ed-popup-integrations-step__fields-option brz-ed-popup-integrations-step__fields-option--big"},s.a.createElement("p",{className:"brz-p brz-ed-popup-integration__font-name"},a),s.a.createElement("p",{className:"brz-p",style:{fontWeight:n,flexBasis:"60%"}},r),s.a.createElement("div",{title:"Disconnect",className:"brz-ed-popup-integrations--delete",onClick:()=>{t(n)}},s.a.createElement(F.b,{icon:"nc-trash"})))});return s.a.createElement(it.a,{style:{maxHeight:255},className:"brz-ed-popup-integrations__scroll-pane"},o)}render(){const{error:e,prevLoading:t,nextLoading:o,createLoading:n,onPrev:a,onNext:r,onCreate:i}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__fields"},e&&this.renderError(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("FONT VARIATION")))),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},this.renderOptions(),s.a.createElement("div",{className:"brz-ed-popup-integrations-new__option",onClick:i},s.a.createElement(F.b,{icon:n?"nc-circle-02":"nc-add",className:n?"brz-ed-animated--spin":""}),Object(ie.a)("Add new font variation")),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},null!==t&&s.a.createElement($e,{size:3,leftIcon:"nc-arrow-left",loading:t,onClick:a},Object(ie.a)("Back")),null!==o&&s.a.createElement($e,{color:"teal",loading:o,onClick:r},Object(ie.a)("Continue")))))}}Object(i.a)(Kr,"defaultProps",{data:[{title:"",value:"",name:""}],nextLoading:null,prevLoading:null,createLoading:!1,onPrev:v.default.noop,onNext:v.default.noop,onActive:v.default.noop,onCreate:v.default.noop});var qr=Kr;function Yr(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Xr(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Yr(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Yr(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const Zr=v.default.memoize(e=>Object.entries(e).map(([e,t])=>({title:t,name:e})));class Jr extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{mode:"add",keyValue:this.getDefaultData(),nextLoading:!1,prevLoading:!1,addLoading:!1,error:null}),Object(i.a)(this,"handleChangeAddMode",async()=>{this.setState({addLoading:!0}),await Object(pe.F)(),this.setState({mode:"add",addLoading:!1})}),Object(i.a)(this,"handleUploadFonts",(e,t)=>{this.setState(({keyValue:o})=>({error:null,keyValue:Xr(Xr({},o),{},{[""+e]:t})}))}),Object(i.a)(this,"handleAddFonts",async()=>{const{app:{id:e,data:t},onChange:o}=this.context,n=this.state.keyValue,{weight:a}=n,r=Object(C.a)(n,["weight"]);if(this.setState({nextLoading:!0,error:null}),await Object(pe.F)(),!Object.values(r).some(e=>Boolean(e)))return void this.setState({nextLoading:!1,error:Object(ie.a)("You must be have one font added")});let i=new Set([...t.weights||[],Number(a)]);o(e,Object.assign({},t,{weights:[...i],files:Xr(Xr({},t.files||[]),{},{[a]:r})})),this.setState({mode:"edit",keyValue:this.getDefaultData(),nextLoading:!1})}),Object(i.a)(this,"handleRemoveFonts",e=>{const{app:{id:t,data:o},onChange:n}=this.context;n(t,Object.assign({},o,{weights:v.default.without(o.weights,e),files:v.default.omit(o.files,e)}))}),Object(i.a)(this,"handleNext",async()=>{const{app:{data:{files:e,fontName:t}},onChangeNext:o}=this.context;this.setState({nextLoading:!0});const{status:n,data:a}=await(({id:e,name:t,files:o})=>{const{api:n}=f.a.get("wp"),a=f.a.get("editorVersion"),r=Ee(n.url,{action:n.createFont,hash:n.hash,version:a}),i=new FormData;return i.append("id",e),i.append("family",t),Object.entries(o).forEach(([e,t])=>{Object.entries(t).forEach(([t,o])=>{o&&i.append(`fonts[${e}][${t}]`,o,o.name)})}),Object(pe.I)(r,{method:"POST",body:i}).then(ke).then(e=>e)})({id:Object($r.a)(),name:t,files:e});200!==n?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(this.props.dispatch(Object(Io.f)([{type:"upload",fonts:[a]}])),o())}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0}),await Object(pe.F)(),this.context.onChangePrev()})}getDefaultData(){return{weight:"400",ttf:"",eot:"",woff:"",woff2:""}}getAddData(){const{weight:e,ttf:t,eot:o,woff:n,woff2:a}=this.state.keyValue;return[{title:Object(ie.a)("Font weight"),name:"weight",type:"select",value:e,choices:Zr(yo.w)},{title:Object(ie.a)("TTF File"),name:"ttf",value:t,type:"upload",accept:".ttf",helper:"The Web Open Font Format (TTF) is a format used in web pages by modern browsers."},{title:Object(ie.a)("EOT File"),name:"eot",value:o,type:"upload",accept:".eot",helper:"The Web Open Font Format (EOT) is a format used in web pages by modern browsers."},{title:Object(ie.a)("WOFF File"),name:"woff",value:n,type:"upload",accept:".woff",helper:"The Web Open Font Format (WOFF) is a format used in web pages by modern browsers."},{title:Object(ie.a)("WOFF2 File"),name:"woff2",value:a,type:"upload",accept:".woff2",helper:"The Web Open Font Format (WOFF2) is a format used in web pages by modern browsers."}]}getEditData(){const{data:{fontName:e,weights:t}}=this.context.app;return t.map(t=>({id:t,title:e,type:yo.w[t]}))}render(){const{mode:e,nextLoading:t,prevLoading:o,addLoading:n,error:a}=this.state;return"add"===e?s.a.createElement(Ur,{data:this.getAddData(),error:a,nextLoading:t,prevLoading:o,onNext:this.handleAddFonts,onPrev:this.handlePrev,onActive:this.handleUploadFonts}):s.a.createElement(qr,{data:this.getEditData(),error:a,nextLoading:t,prevLoading:o,createLoading:n,onNext:this.handleNext,onPrev:this.handlePrev,onCreate:this.handleChangeAddMode,onActive:this.handleRemoveFonts})}}Object(i.a)(Jr,"contextType",be);var Qr=Object(Jt.b)()(Jr);class ei extends Et{}Object(i.a)(ei,"upload",Vr),Object(i.a)(ei,"variation",Qr),Object(i.a)(ei,"done",Lr);var ti=ei;const oi=f.a.get("pro");var ni=class extends we{constructor(...e){super(...e),Object(i.a)(this,"appsData",[]),Object(i.a)(this,"appsComponent",r),Object(i.a)(this,"proExceptions",!oi),Object(i.a)(this,"handleConnectApp",async e=>{const t=e.id,{stages:o=[]}=this.appsData.find(e=>e.id===t)||{};await Object(pe.F)(),this.setState(Object(c.a)(n=>{n.stages=o,n.connectedApp=t,n.data[t]=e}),()=>{this.handleNext()})})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),{fonts:o}=await t.json();this.appsData=o,this.setState({loading:!1})}};const ai=[{id:"upload",title:Object(ie.a)("Add New"),icon:"nc-add",component:ni},{id:"fonts",title:Object(ie.a)("Fonts"),icon:"nc-font",component:Er}];class ri extends l.Component{render(){const{opened:e,onClose:t}=this.props;return s.a.createElement(de,{opened:e,tabs:ai,currentTab:"upload",blockTabsWhenLoading:!1,onClose:t})}}Object(i.a)(ri,"defaultProps",{opened:!1,onClose:v.noop});var ii=ri;var li=e=>s.a.createElement("div",{className:"brz-ed-popup-conditions__buttons"},s.a.createElement("button",{className:"brz-button brz-button__cancel",onClick:e.onClose},"Cancel"),s.a.createElement("button",{className:"brz-button brz-button__save",onClick:e.onChange},e.loading?s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}):"Save"));function si({showTypeButton:e=!0,active:t,children:o,onChange:n,onRemove:a}){const r=t?"include":"exclude",i=t?s.a.createElement(F.b,{icon:"nc-include"}):s.a.createElement(F.b,{icon:"nc-none"}),l=g()("brz-ed-popup-conditions__type","brz-ed-popup-conditions__type-"+r);return s.a.createElement("div",{className:"brz-ed-popup-conditions__condition brz-d-xs-flex"},e&&s.a.createElement("div",{className:l,onClick:()=>n({active:!t})},s.a.createElement("span",{className:"brz-ed-popup-conditions__type-text"},i,Object(Nt.c)(r))),s.a.createElement("div",{className:"brz-ed-popup-conditions__select brz-d-xs-flex"},o),s.a.createElement("div",{className:"brz-ed-popup-conditions__remove",onClick:a},s.a.createElement(F.b,{icon:"nc-trash"})))}var ci=o(125);const di=1,ui=2,pi=16;function bi(e,{appliedFor:t,entityType:o}){return e.findIndex(({groupValue:e,value:n})=>e===t&&n===o)}function mi(e,t){if(!t.length)return t;let o=t;return e.forEach(e=>{const n=bi(t,e);if(e.appliedFor!==di&&e.appliedFor!==ui)o=Object(Qe.setIn)(o,[n,"disabled"],!0);else{const{items:t}=o[n];if(t&&e.entityValues.length){const a=t.findIndex(({value:{_id:t}})=>e.entityValues.includes(t));-1!==a&&(o=Object(Qe.setIn)(o,[n,"items",a,"disabled"],!0))}}}),o}function hi(e){return e.filter((function(t,o){return e.findIndex(({appliedFor:e,entityType:o,entityValues:n})=>e===t.appliedFor&&o===t.entityType&&v.default.isEqual(n,t.entityValues))>=o})).map(e=>{let{id:t}=e;return Object(C.a)(e,["id"])})}class gi extends s.a.Component{renderGroupOptions(e){return[{title:"All",groupValue:"",value:""},...e].map(({title:e,value:t,groupValue:o,disabled:n})=>s.a.createElement(S.a,{key:"key-"+t,value:`${o}|${t}`,disabled:n},e))}renderTypeOptions(e){return[{title:"All",value:""},...e].map((e,o)=>e.items?s.a.createElement(ci.a,{key:o,title:e.title,items:e.items.map(t)},s.a.createElement("span",{className:"brz-span"},e.title)):t(e));function t({title:e,value:t}){return s.a.createElement(S.a,{key:t,value:t},e)}}render(){const{rulesList:e,rule:t,onGroupChange:o,onTypeChange:n}=this.props,a=e[bi(e,t)];return s.a.createElement("div",{className:"brz-ed-popup-conditions__select brz-d-xs-flex"},s.a.createElement(O.a,{className:"brz-control__select--light",maxItems:6,itemHeight:30,defaultValue:`${t.appliedFor}|${t.entityType}`,onChange:o},this.renderGroupOptions(e)),a&&a.items&&s.a.createElement(O.a,{defaultValue:t.entityValues[0],className:"brz-control__select--light",maxItems:6,itemHeight:30,onChange:n},this.renderTypeOptions(a.items)))}}Object(i.a)(gi,"defaultProps",{rulesList:[],rule:{},onGroupChange:v.default.noop,onTypeChange:v.default.noop});var vi=gi;function fi(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function yi(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?fi(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):fi(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Oi extends s.a.Component{constructor(...e){super(...e),Object(i.a)(this,"handleRemove",e=>{this.props.onChange(Object(Qe.removeAt)(this.props.rules,e))}),Object(i.a)(this,"handleVisibilityTypeChange",(e,t)=>{t=t?1:2;const o=Object(Qe.setIn)(this.props.rules,[e,"type"],Number(t));this.props.onChange(o)}),Object(i.a)(this,"handleGroupChange",(e,t)=>{const{rules:o}=this.props;let[n,a]=e.split("|");const r=yi(yi({},o[t]),{},{entityType:a,appliedFor:""===n||null===n?null:Number(n),entityValues:[]});this.props.onChange(Object(Qe.setIn)(o,[t],r))}),Object(i.a)(this,"handleTypeChange",(e,t)=>{const{rules:o}=this.props,n=e?[e]:[];this.props.onChange(Object(Qe.setIn)(o,[t,"entityValues"],n))})}render(){const{rules:e,rulesList:t}=this.props;return e.map((e,o)=>{let{type:n}=e,a=Object(C.a)(e,["type"]);const r=1===n;return s.a.createElement(si,{key:o,active:r,index:o,onChange:()=>this.handleVisibilityTypeChange(o,!r),onRemove:()=>this.handleRemove(o)},s.a.createElement(vi,{rule:a,rulesList:t,onGroupChange:e=>this.handleGroupChange(e,o),onTypeChange:e=>this.handleTypeChange(e,o)}))})}}Object(i.a)(Oi,"defaultProps",{rules:[],rulesList:[],onChange:v.default.noop});var Si=Oi;function Ci(e){const{className:t,type:o="text",placeholder:n="",value:a="",onChange:r=(()=>{})}=e,i=g()("brz-input",t);return s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:i,type:o,placeholder:n,value:a,onChange:({target:{value:e}})=>r(e)}))}function xi(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ji(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?xi(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):xi(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Bi(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Pi(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Bi(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Bi(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function wi(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ti(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?wi(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):wi(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const zi={search_engines:"Any Search Engine",bing:"Bing",yandex:"Yandex",yahoo:"Yahoo",baidu:"Baidu","so.com":"So.com","360.cn":"360.cn",aol:"AOL",duckduckgo:"DuckDuckGo","ask.com":"Ask.com","mail.ru":"Mail.ru",sogou:"Sogou"},Ei={social_networks:"Any Social Networks",facebook:"Facebook",pinterest:"Pinterest",twitter:"Twitter",linkedin:"LinkedIn"},ki={external:"External Links",internal:"Internal Links"};function Hi(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Fi(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Hi(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Hi(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function _i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ri(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?_i(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):_i(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Mi(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Li(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Mi(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Mi(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Wi(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ii(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Wi(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Wi(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Ni(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ai(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ni(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ni(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Di(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Vi(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Di(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Di(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function $i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Gi(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?$i(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):$i(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const Ui={android:"Android",bada:"Bada",blackberry:"BlackBerry OS",chromeOs:"Chrome OS",firefoxOs:"Firefox OS",ios:"IOS",linux:"Linux",mac:"Mac OS",windows:"Windows"};function Ki(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function qi(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ki(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ki(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Yi(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Xi(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Yi(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Yi(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}var Zi=[{id:"pageLoad",title:"On Page Load",type:"number",placeholder:"After (sec)",Component:Ci},{id:"scrolling",title:"On Scroll",defaultValue:{value:"down",within:"",toElement:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.value,onChange:e=>o(ji(ji({},t),{},{value:e}))},s.a.createElement(S.a,{key:"down",value:"down"},"Down"),s.a.createElement(S.a,{key:"up",value:"up"},"Up"),s.a.createElement(S.a,{key:"toElement",value:"toElement"},"To element")),"down"===t.value&&s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"number",placeholder:"% of page height",value:t.within,onChange:({target:{value:e}})=>o(ji(ji({},t),{},{within:e}))})),"toElement"===t.value&&s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:".my-class",value:t.toElement||"",onChange:({target:{value:e}})=>o(ji(ji({},t),{},{toElement:e}))})))}},{id:"click",title:"On Click",type:"number",placeholder:"clicks",Component:Ci},{id:"inactivity",title:"After Inactivity",type:"number",placeholder:"After (sec)",Component:Ci},{id:"exitIntent",title:"On Page Exit Intent",defaultValue:!0},{id:"showing",title:"Show After X",defaultValue:{value:"views",type:"equals",views:5,sessions:3},duplicatesAmount:2,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.value,onChange:e=>o(Pi(Pi({},t),{},{value:e}))},s.a.createElement(S.a,{key:"views",value:"views"},"viewed pages"),s.a.createElement(S.a,{key:"sessions",value:"sessions"},"Sessions")),s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(Pi(Pi({},t),{},{type:e}))},s.a.createElement(S.a,{key:"is fewer",value:"is fewer"},"is fewer than"),s.a.createElement(S.a,{key:"equals",value:"equals"},"equals"),s.a.createElement(S.a,{key:"is more",value:"is more"},"is more than")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"number",placeholder:"Number of",value:t[t.value],onChange:({target:{value:e}})=>o(Pi(Pi({},t),{},{[t.value]:e}))})))}},{id:"referrer",title:"Arriving From",defaultValue:{type:"is",value:"show",url:"",source:"search_engines"},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.value,onChange:e=>o(Ti(Ti({},t),{},{value:e}))},s.a.createElement(S.a,{key:"show",value:"show"},"Show"),s.a.createElement(S.a,{key:"hide",value:"hide"},"Hide"),s.a.createElement(S.a,{key:"regex",value:"regex"},"Regex"),s.a.createElement(S.a,{key:"source",value:"source"},"Source")),"source"===t.value?[s.a.createElement(O.a,{key:"type",className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(Ti(Ti({},t),{},{type:e}))},s.a.createElement(S.a,{key:"is",value:"is"},"is"),s.a.createElement(S.a,{key:"is not",value:"is not"},"is not")),s.a.createElement(O.a,{className:"brz-control__select--light",key:"source",itemHeight:30,defaultValue:t.source,onChange:e=>o(Ti(Ti({},t),{},{source:e}))},s.a.createElement(ci.a,{key:"Organic",title:"Organic",items:n(zi)},s.a.createElement("span",{className:"brz-span"},"Organic")),s.a.createElement(ci.a,{key:"Social Networks",title:"Social Networks",items:n(Ei)},s.a.createElement("span",{className:"brz-span"},"Networks")),s.a.createElement(ci.a,{key:"Other",title:"Other",items:n(ki)},s.a.createElement("span",{className:"brz-span"},"Other")))]:s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:"URL",value:t.url,onChange:({target:{value:e}})=>o(Ti(Ti({},t),{},{url:e}))})));function n(e){return Object.entries(e).map(([e,t])=>s.a.createElement(S.a,{key:e,value:e},t))}}},{id:"loggedIn",title:"Hide for logged in users",defaultValue:{value:"all",user:void 0},duplicatesAmount:1/0,Component:function(e){const{value:t={},onChange:o=(()=>{})}=e,{availableRoles:n}=f.a.get("wp");let a=null;return"custom"===t.value&&(a=Array.isArray(n)&&n.length?s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.user,onChange:e=>o(Fi(Fi({},t),{},{user:e}))},n.map(({role:e,name:t})=>s.a.createElement(S.a,{key:e,value:e},t))):s.a.createElement("span",null,"There are no available users. Add user first")),s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.value,onChange:function(e){var t;const a="all"===e?{value:e}:{value:e,user:null==n||null===(t=n[0])||void 0===t?void 0:t.role};o(a)}},s.a.createElement(S.a,{key:"all",value:"all"},"All users"),s.a.createElement(S.a,{key:"custom",value:"custom"},"Custom")),a)}},{id:"devices",title:"Show on devices",defaultValue:"desktop",duplicatesAmount:3,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t,onChange:e=>o(e)},s.a.createElement(S.a,{key:"desktop",value:"desktop"},"Desktop"),s.a.createElement(S.a,{key:"tablet",value:"tablet"},"Tablet"),s.a.createElement(S.a,{key:"mobile",value:"mobile"},"Mobile")))}},{id:"currentUrl",title:"Current Page URL",defaultValue:{type:"matches",value:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(Ri(Ri({},t),{},{type:e}))},s.a.createElement(S.a,{key:"matches",value:"matches"},"matches"),s.a.createElement(S.a,{key:"contains",value:"contains"},"contains"),s.a.createElement(S.a,{key:"does not contain",value:"does not contain"},"does not contain"),s.a.createElement(S.a,{key:"does not match",value:"does not match"},"does not match")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:"URL",value:t.value,onChange:({target:{value:e}})=>o(Ri(Ri({},t),{},{value:e}))})))}},{id:"currentDate",title:"Current Date",defaultValue:{type:"matches",value:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e,n=(new Date).toJSON().slice(0,10).split("-").reverse().join("/");return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(Li(Li({},t),{},{type:e}))},s.a.createElement(S.a,{key:"before",value:"before"},"is before"),s.a.createElement(S.a,{key:"matches",value:"matches"},"matches"),s.a.createElement(S.a,{key:"after",value:"after"},"is after")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:n,value:t.value,onChange:({target:{value:e}})=>o(Li(Li({},t),{},{value:e}))})))}},{id:"lastVisitDate",title:"Last Visit Date",defaultValue:{type:"matches",value:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e,n=(new Date).toJSON().slice(0,10).split("-").reverse().join("/");return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(Ii(Ii({},t),{},{type:e}))},s.a.createElement(S.a,{key:"before",value:"before"},"is before"),s.a.createElement(S.a,{key:"matches",value:"matches"},"matches"),s.a.createElement(S.a,{key:"after",value:"after"},"is after")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:n,value:t.value,onChange:({target:{value:e}})=>o(Ii(Ii({},t),{},{value:e}))})))}},{id:"timeFrom",title:"Time From",defaultValue:{type:"greater",visit:"first",time:"days",value:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.visit,onChange:e=>o(Ai(Ai({},t),{},{visit:e}))},s.a.createElement(S.a,{key:"first",value:"first"},"the first visit"),s.a.createElement(S.a,{key:"last",value:"last"},"the last visit")),s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(Ai(Ai({},t),{},{type:e}))},s.a.createElement(S.a,{key:"greater",value:"greater"},"is greater than"),s.a.createElement(S.a,{key:"less",value:"less"},"is less than")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"number",placeholder:"Number of",value:t.value,onChange:({target:{value:e}})=>o(Ai(Ai({},t),{},{value:e}))})),s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.time,onChange:e=>o(Ai(Ai({},t),{},{time:e}))},s.a.createElement(S.a,{key:"days",value:"days"},"days"),s.a.createElement(S.a,{key:"hours",value:"hours"},"hours")))}},{id:"cookie",title:"Cookie",defaultValue:{type:"matches",param:"",value:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:"param",value:t.param,onChange:({target:{value:e}})=>o(Vi(Vi({},t),{},{param:e}))})),s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(Vi(Vi({},t),{},{type:e}))},s.a.createElement(S.a,{key:"matches",value:"matches"},"matches"),s.a.createElement(S.a,{key:"contains",value:"contains"},"contains"),s.a.createElement(S.a,{key:"does not contain",value:"does not contain"},"does not contain"),s.a.createElement(S.a,{key:"does not match",value:"does not match"},"does not match")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:"value",value:t.value,onChange:({target:{value:e}})=>o(Vi(Vi({},t),{},{value:e}))})))}},{id:"os",title:"Operating System",defaultValue:{type:"is",value:"windows"},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(Gi(Gi({},t),{},{type:e}))},s.a.createElement(S.a,{key:"is",value:"is"},"is"),s.a.createElement(S.a,{key:"is not",value:"is not"},"is not")),s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.value,onChange:e=>o(Gi(Gi({},t),{},{value:e}))},(n=Ui,Object.entries(n).map(([e,t])=>s.a.createElement(S.a,{key:e,value:e},t)))));var n}},{id:"otherPopups",title:"No other popup",defaultValue:{type:"was",value:"page"},duplicatesAmount:1,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(qi(qi({},t),{},{type:e}))},s.a.createElement(S.a,{key:"was",value:"was"},"was shown"),s.a.createElement(S.a,{key:"was not",value:"was not"},"was not shown")),s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.value,onChange:e=>o(qi(qi({},t),{},{value:e}))},s.a.createElement(S.a,{key:"page",value:"page"},"on the same page"),s.a.createElement(S.a,{key:"session",value:"session"},"during the session")))}},{id:"specificPopup",title:"Other specific popup",defaultValue:{type:"was",value:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(Xi(Xi({},t),{},{type:e}))},s.a.createElement(S.a,{key:"was",value:"was"},"was shown"),s.a.createElement(S.a,{key:"was not",value:"was not"},"was not shown")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:"#popup-id",value:t.value,onChange:({target:{value:e}})=>o(Xi(Xi({},t),{},{value:e}))})))}}];function Ji(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Qi(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ji(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ji(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class el extends s.a.Component{constructor(e){super(e),Object(i.a)(this,"handleChange",()=>{if(A.g){const{values:e,triggerOnce:t}=this.state,o={id:"triggerOnce",active:!0,value:t};this.setState({loading:!0},()=>{const t={syncSuccess:()=>this.setState({loading:!1}),syncFail:()=>this.setState({loading:!1})};this.props.dispatch(Object(ko.P)([...e,o],t))})}}),Object(i.a)(this,"handleTriggerOnceChange",e=>{A.g&&this.setState({triggerOnce:e})}),Object(i.a)(this,"handleWrapperTriggerChange",(e,t)=>{A.g&&this.setState({values:Object(Qe.setIn)(this.state.values,[e],Qi(Qi({},this.state.values[e]),t))})}),Object(i.a)(this,"handleWrapperTriggerRemove",e=>{A.g&&this.setState({values:Object(Qe.removeAt)(this.state.values,e)})}),Object(i.a)(this,"handleValueChange",(e,t)=>{A.g&&this.setState({values:Object(Qe.setIn)(this.state.values,[e,"value"],t)})}),Object(i.a)(this,"handleAdd",()=>{if(A.g){const{values:e}=this.state,t=this.getAvailableItems();t[0]&&this.setState({values:[...e,{id:t[0].id,active:!0,value:t[0].defaultValue}]})}});const t=e.values.find(({id:e})=>"triggerOnce"===e)||{},o=Object(Qe.removeAt)(e.values,e.values.indexOf(t));this.state={triggerOnce:t.value||!1,values:o,loading:!1}}handleTriggerChange(e,t){const{values:o}=this.state,{defaultValue:n}=Zi.find(({id:e})=>e===t),a=Object(Qe.setIn)(o,[e],Qi(Qi({},o[e]),{},{id:t,value:n}));this.setState({values:a})}getAvailableItems(e){const{values:t}=this.state;let o=t.reduce((e,{id:t})=>(e[t]?e[t]++:e[t]=1,e),{});return Zi.filter(({id:n,duplicatesAmount:a=1})=>{const r=t.find(e=>e.id===n),i=o[n]&&a>o[n];return e===n||i||!r}).sort(({id:e,duplicatesAmount:o=0},{id:n,duplicatesAmount:a=0})=>{const r=t.find(t=>t.id===e),i=t.find(e=>e.id===n);return r?1:i?-1:o>a?1:o<a?-1:0})}renderTriggers(e){const{values:t}=this.state,o=t[e].id,n=this.getAvailableItems(o).map(({id:e,title:t},o)=>s.a.createElement(S.a,{key:o,value:e},t));return s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:o,onChange:t=>this.handleTriggerChange(e,t)},n)}render(){const{values:e,triggerOnce:t}=this.state,o=e.map((e,t)=>{const o=Zi.find(({id:t})=>t===e.id)||{},{Component:n}=o,a=Object(C.a)(o,["Component"]),r=n?s.a.createElement(n,Object(x.a)({},a,e,{onChange:e=>this.handleValueChange(t,e)})):null;return s.a.createElement(si,{showTypeButton:!1,key:t,active:e.active,onChange:e=>this.handleWrapperTriggerChange(t,e),onRemove:()=>this.handleWrapperTriggerRemove(t)},this.renderTriggers(t),r)});return s.a.createElement(s.a.Fragment,null,s.a.createElement("div",{className:"brz-ed-popup-conditions__trigger-once"},s.a.createElement("div",null,"Trigger Popup Only Once"),s.a.createElement(Je.a,{defaultValue:t,onChange:this.handleTriggerOnceChange})),s.a.createElement(it.a,{style:{overflow:"hidden",height:"350px"},className:"brz-ed-scroll--medium brz-ed-scroll--new-dark"},o,s.a.createElement("div",{className:"brz-ed-popup-conditions__add-condition",onClick:this.handleAdd},s.a.createElement(F.b,{icon:"nc-add"})," Add new trigger condition")),s.a.createElement(li,{loading:this.state.loading,onChange:this.handleChange,onClose:this.props.onClose}))}}var tl={rules:function({value:e=[],asyncGetValue:t,onClose:o=(()=>{}),onChange:n=(()=>{})}){const[a,r]=Object(l.useState)(e),[i,c]=Object(l.useState)(!1),[d,u]=Object(l.useState)(null),[p,b]=function(e){const[t,o]=Object(l.useState)([]),[n,a]=Object(l.useState)(!0);return Object(l.useEffect)(()=>{!async function(){a(!0);const e=(await Object(pe.m)()||[]).map(({items:e})=>e).flat();a(!1),o(e)}()},[]),Object(l.useEffect)(()=>{t.length&&async function(){const n=function(e){return e.reduce((e,t)=>(e.find(({appliedFor:e,entityType:o})=>e===t.appliedFor&&o===t.entityType)||e.push(t),e),[])}(e);let a=t;n.forEach(async e=>{const n=bi(t,e),r=e.appliedFor,i=t[n]&&t[n].items;if([di,ui,pi].includes(r)&&!i){let t=[];switch(r){case di:case pi:{const{posts:o}=await Object(pe.v)(e.entityType);t=o.map(({ID:e,title:t})=>({title:t,value:e}));break}case ui:t=(await Object(pe.D)(e.entityType)).map(({name:e,term_id:t})=>({title:e,value:t}));break}a=Object(Qe.setIn)(a,[n,"items"],t),o(a)}})}()},[e,t]),[n,mi(e,t)]}(a);return Object(l.useEffect)(()=>{t&&async function(){const e=await t()||[];r(e)}()},[]),s.a.createElement(s.a.Fragment,null,p?s.a.createElement("div",{className:"brz-ed-popup-conditions__spin"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"})):s.a.createElement(it.a,{style:{overflow:"hidden",height:"350px"},className:"brz-ed-scroll--medium brz-ed-scroll--new-dark"},s.a.createElement(Si,{rules:a,rulesList:b,onChange:function(e){A.g&&r(e)}}),s.a.createElement("div",{className:"brz-ed-popup-conditions__add-condition",onClick:function(){A.g&&r([...a,{type:1,appliedFor:di,entityType:"page",entityValues:[]}])}},s.a.createElement(F.b,{icon:"nc-add"})," Add new display condition")),d&&s.a.createElement("div",{className:"error"},d),s.a.createElement(li,{loading:i,onChange:function(){A.g&&(c(!0),u(null),n({data:{rules:hi(a)},meta:{syncSuccess:()=>c(!1),syncFail:e=>{c(!1),u(e.responseJSON.data.message)}}}))},onClose:o}))},triggers:Object(Jt.b)(e=>({values:Object(go.G)(e)}),e=>({dispatch:e}))(el)};const ol=f.a.get("urls");class nl extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{activeTab:this.props.options[0].type}),Object(i.a)(this,"handleTabChange",e=>this.setState({activeTab:e}))}renderIcons(){const{options:e}=this.props,{activeTab:t}=this.state;return e.map(e=>{const o=g()("brz-ed-popup-tab-item","brz-ed-popup-tab-item-conditions",{active:t===e.type});return s.a.createElement("div",{key:e.type,className:o,onClick:()=>this.handleTabChange(e.type)},s.a.createElement("div",{className:"brz-ed-popup-tab-icon"},s.a.createElement(F.b,{icon:e.icon})),s.a.createElement("div",{className:"brz-ed-popup-tab-name"},e.label))})}renderProException(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-pro brz-mb-lg-0"},s.a.createElement("span",{className:"brz-span"},Object(ie.a)("Block conditions are available only in PRO")),s.a.createElement("a",{className:"brz-ed-btn brz-ed-btn-width-2 brz-ed-btn-sm brz-ed-btn-icon brz-ed-btn-icon--left brz-ed-btn-rounded brz-ed-btn-pro",rel:"noopener noreferrer",href:ol.upgradeToPro,target:"_blank"},s.a.createElement(F.b,{icon:"nc-lock"}),Object(ie.a)("Get Brizy PRO")))}render(){const{options:e,opened:t,onClose:o}=this.props,{activeTab:n}=this.state,a=tl[n],r=e.find(({type:e})=>e===n),{type:i,icon:l,label:c,title:d}=r,u=Object(C.a)(r,["type","icon","label","title"]);return s.a.createElement(y.a,{opened:t,onClose:o},s.a.createElement("div",{className:"brz-ed-popup-wrapper"},s.a.createElement("div",{className:"brz-ed-popup-header"},s.a.createElement("div",{className:"brz-ed-popup-header__tabs"},this.renderIcons()),s.a.createElement("div",{className:"brz-ed-popup-btn-close",onClick:o})),s.a.createElement("div",{className:"brz-ed-popup-content brz-ed-popup-pane brz-ed-popup-icons"},s.a.createElement("div",{className:"brz-ed-popup-body"},!A.g&&this.renderProException(),s.a.createElement("div",{className:g()("brz-ed-popup-conditions",{"brz-ed-popup-conditions__free":!A.g})},s.a.createElement("div",{className:"brz-ed-popup-conditions__head"},s.a.createElement("h3",null,d)),s.a.createElement("div",{className:"brz-ed-popup-conditions__body"},s.a.createElement(a,Object(x.a)({},u,{onClose:o}))))))))}}Object(i.a)(nl,"defaultProps",{options:[],onChange:()=>{},onClose:()=>{}});const al={updateAuthorization:Io.v,updateSyncAllowed:Io.B},rl=Object(Jt.b)(null,al),il=Boolean(f.a.get("wp")),ll=[{title:"username",name:"username",required:!0},{title:"password",name:"password",type:"password",required:!0}];class sl extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{data:null,loading:!0,nextLoading:!1,prevLoading:!1,recoverLoading:!1,notice:null,formData:{username:"",password:"",recoverEmail:""}}),Object(i.a)(this,"handleChange",(e,t)=>{void 0!==this.state.formData[e]&&this.setState(Object(c.a)(o=>{o.formData[e]=t}))}),Object(i.a)(this,"handleConnect",()=>{const{username:e,password:t}=this.state.formData,{onSuccess:o,onClose:n,updateAuthorization:a,updateSyncAllowed:r}=this.props;this.setState({notice:null,nextLoading:!0}),e&&e.trim()&&t&&t.trim()?(e=>{const{hash:t,url:o,cloudSignIn:n}=f.a.get("wp").api,a=f.a.get("editorVersion"),r=Ee(o,{hash:t,version:a,action:n});return Object(pe.I)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(e)}).then(ke).then(e=>e)})({password:t,email:e}).then(e=>{if(!e.status||e.status>=400)throw e;a("connected"),Object(Uo.b)("connected"),il&&$o().then(e=>{const{status:t,data:o}=e||{};!t||t>=400?console.warn("Something went wrong",e):(null==o?void 0:o.isSyncAllowed)&&r(!0)}),o&&o(),n&&n()}).catch(e=>{this.setState({nextLoading:!1,notice:{message:Object(ie.a)("Incorrect username or password"),type:"error"}})}):this.setState({nextLoading:!1,notice:{message:Object(ie.a)("Incorrect username or password"),type:"error"}})}),Object(i.a)(this,"handleSkip",async()=>{const{onSkip:e,onClose:t,updateAuthorization:o}=this.props;this.setState({prevLoading:!0}),await Object(pe.F)(),this.setState({prevLoading:!1}),o("pending"),Object(Uo.b)("pending"),e&&e(),t&&t()}),Object(i.a)(this,"handleRecover",async()=>{const{recoverEmail:e}=this.state.formData;this.setState({notice:null,recoverLoading:!0}),Le(e)?e&&e.trim()?(e=>{const{hash:t,url:o,cloudResetPassword:n}=f.a.get("wp").api,a=f.a.get("editorVersion"),r=Ee(o,{hash:t,version:a,action:n});return Object(pe.I)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify({email:e})}).then(ke).then(e=>e)})(e).then(e=>{if(!e.status||e.status>=400)throw e;this.setState({recoverLoading:!1,notice:{message:Object(ie.a)("Check your email address"),type:"success"}})}).catch(e=>{this.setState({recoverLoading:!1,notice:{message:Object(ie.a)("Failed to reset password"),type:"error"}})}):(await Object(pe.F)(),this.setState({recoverLoading:!1,notice:{message:Object(ie.a)("Email to recover password cannot be empty"),type:"error"}})):this.setState({recoverLoading:!1,notice:{message:Object(ie.a)("The email address format is not valid"),type:"error"}})})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),{cloudAuthorization:o}=await t.json(),{onLoading:n}=this.props;this.setState({data:o,loading:!1}),n&&n(!1)}renderLoading(){return s.a.createElement("div",{className:"brz-ed-popup-content--loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))}renderNotice(){const{notice:e}=this.state;if(null!==e){const{message:t,type:o}=e;return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-"+o},s.a.createElement("span",{className:"brz-span"},t))}}renderContent(){if(this.state.data){const{data:{img:e,signInDescription:t},formData:{recoverEmail:o},notice:n,nextLoading:a,prevLoading:r,recoverLoading:i}=this.state;return s.a.createElement(P.a,{className:"brz-text-lg-center"},s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-head"},s.a.createElement("img",{className:"brz-img",src:e,alt:"Brizy"}),s.a.createElement("p",{className:"brz-p"},t)),s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-body"},n&&this.renderNotice(),ll.map(({title:e,name:t,required:o,type:n="text"},a)=>s.a.createElement(Ke,{key:a,title:e,type:n,value:this.state.formData[t]||"",required:o,onChange:({target:e})=>{this.handleChange(t,e.value)}})),s.a.createElement("div",{className:"brz-ed-popup-authorization__buttons"},s.a.createElement($e,{color:"teal",loading:a,onClick:this.handleConnect},Object(ie.a)("Connect")),s.a.createElement($e,{color:"default",loading:r,onClick:this.handleSkip},Object(ie.a)("Skip"))),s.a.createElement(Ke,{title:"Email to recover password",icon:"nc-right-arrow-tail",loading:i,value:o||"",onChange:({target:e})=>{this.handleChange("recoverEmail",e.value)},onClickIcon:this.handleRecover})))}}render(){const e=g()("brz-ed-popup-authorization",this.props.className);return s.a.createElement("div",{className:e},this.state.loading?this.renderLoading():this.renderContent())}}Object(i.a)(sl,"defaultProps",{className:"",onSuccess:v.noop,onSkip:v.noop,onClose:v.noop,onLoading:v.noop});var cl=rl(sl);const dl=Boolean(f.a.get("wp")),ul=[{title:"email",name:"email",required:!0},{title:"password",name:"password",type:"password",required:!0},{title:"Confirm Password",name:"confirmPassword",type:"password",required:!0}],pl={updateAuthorization:Io.v,updateSyncAllowed:Io.B},bl=Object(Jt.b)(null,pl);class ml extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{data:null,notice:null,nextLoading:!1,loading:!0,formData:{email:"",password:"",confirmPassword:""}}),Object(i.a)(this,"handleChange",(e,t)=>{void 0!==this.state.formData[e]&&this.setState(Object(c.a)(o=>{o.formData[e]=t}))}),Object(i.a)(this,"handleConnect",async()=>{const{onSuccess:e,onClose:t,updateAuthorization:o,updateSyncAllowed:n}=this.props,{email:a,password:r,confirmPassword:i}=this.state.formData;Le(a)?r===i?(this.setState({notice:null,nextLoading:!0}),(null==a?void 0:a.trim())&&(null==r?void 0:r.trim())&&(null==i?void 0:i.trim())?(e=>{const{hash:t,url:o,cloudSignUp:n}=f.a.get("wp").api,a=f.a.get("editorVersion"),r=Ee(o,{hash:t,version:a,action:n});return Object(pe.I)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(e)}).then(ke).then(e=>e)})({email:a,password:r,confirmPassword:i}).then(a=>{if(!a.status||a.status>=400)throw a;o("connected"),Object(Uo.b)("connected"),dl&&$o().then(e=>{const{status:t,data:o}=e||{};!t||t>=400?console.warn("Something went wrong",e):(null==o?void 0:o.isSyncAllowed)&&n(!0)}),e&&e(),t&&t()}).catch(e=>{this.setState({nextLoading:!1,notice:{message:Object(ie.a)("Incorrect username or password"),type:"error"}})}):this.setState({nextLoading:!1,notice:{message:Object(ie.a)("All fields cannot be empty"),type:"error"}})):this.setState({nextLoading:!1,notice:{message:Object(ie.a)("Password and confirm password is not the same"),type:"error"}}):this.setState({nextLoading:!1,notice:{message:Object(ie.a)("The email address format is not valid"),type:"error"}})})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),{cloudAuthorization:o}=await t.json(),{onLoading:n}=this.props;this.setState({data:o,loading:!1}),n&&n(!1)}renderLoading(){return s.a.createElement("div",{className:"brz-ed-popup-content--loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))}renderNotice(){const{notice:e}=this.state;if(e){const{message:t,type:o}=e;return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-"+o},s.a.createElement("span",{className:"brz-span"},t))}}renderContent(){if(this.state.data){const{data:{img:e,signUpDescription:t},nextLoading:o}=this.state;return s.a.createElement(P.a,{className:"brz-text-lg-center"},s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-head"},s.a.createElement("img",{className:"brz-img",src:e,alt:"Brizy"}),s.a.createElement("p",{className:"brz-p"},t)),s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-body"},this.renderNotice(),ul.map(({title:e,name:t,required:o,type:n="text"},a)=>s.a.createElement(Ke,{key:a,title:e,type:n,value:this.state.formData[t]||"",required:o,onChange:({target:e})=>{this.handleChange(t,e.value)}})),s.a.createElement("div",{className:"brz-ed-popup-authorization__buttons"},s.a.createElement($e,{color:"teal",loading:o,onClick:this.handleConnect},Object(ie.a)("Create Account & Connect")))))}}render(){const e=g()("brz-ed-popup-authorization",this.props.className);return s.a.createElement("div",{className:e},this.state.loading?this.renderLoading():this.renderContent())}}Object(i.a)(ml,"defaultProps",{className:"",onSuccess:v.noop,onSkip:v.noop,onClose:v.noop,onLoading:v.noop});var hl=bl(ml);const gl=[{id:"signIn",title:Object(ie.a)("Cloud"),icon:"nc-upload",component:cl},{id:"signUp",title:Object(ie.a)("SignUp"),icon:"nc-add",component:hl}];function vl(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function fl(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?vl(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):vl(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const yl={icon:ne,apps:Mt,blocks:cn,form:Cr,keyHelper:jr,fonts:ii,conditions:nl,authorization:({opened:e,onClose:t})=>s.a.createElement(de,{opened:e,tabs:gl,currentTab:"signIn",onClose:t})};class Ol extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{prompts:[]}),Object(i.a)(this,"onUIStateChange",e=>{this.open(e)})}static open(e){m.set("prompt",e)}componentDidMount(){m.addChangeListener("prompt",this.onUIStateChange)}componentWillUnmount(){m.removeChangeListener("prompt",this.onUIStateChange)}close(e){this.setState(Object(c.a)(t=>{t.prompts[e].opened=!1}),()=>{this.setState(Object(c.a)(t=>{t.prompts.splice(e,1)}))})}open(e){const{mode:t="single"}=e,{prompts:o}=this.state,n=o.findIndex(({prompt:t})=>t==e.prompt);-1===n?this.setState(Object(c.a)(t=>{t.prompts.push(e)}),()=>{this.setState(Object(c.a)(e=>{const t=e.prompts.length;e.prompts[t-1].opened=!0}))}):"stack"===t?this.setState(Object(c.a)(t=>{t.prompts[n]=fl(fl({},e),{},{opened:!0})})):this.setState(Object(c.a)(t=>{t.prompts.forEach((e,o)=>{t.prompts[o].opened=!1}),t.prompts[n]=fl(fl({},e),{},{opened:!0})}))}getComponent(e,t){const o=yl[e];return s.a.createElement(o,t)}render(){const{prompts:e}=this.state;return e.length?e.map(({opened:e,prompt:t,props:o={}},n)=>this.getComponent(t,fl(fl({},o),{},{opened:e,key:n,onClose:()=>{this.close(n),o.onClose&&o.onClose()}}))):null}}var Sl=t.a=Ol},function(e,t,o){"use strict";o.d(t,"d",(function(){return b})),o.d(t,"a",(function(){return m})),o.d(t,"e",(function(){return h})),o.d(t,"b",(function(){return g})),o.d(t,"h",(function(){return v})),o.d(t,"c",(function(){return f})),o.d(t,"f",(function(){return y})),o.d(t,"i",(function(){return O})),o.d(t,"g",(function(){return S}));var n=o(2),a=o(48),r=o(41),i=o(39),l=o(132),s=o(215),c=o(214);function d(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function u(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?d(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):d(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const p=Object(i.c)(e=>e&&"px"===e||"%"===e?e:void 0,r.a.read),b=e=>l.a(e("elementPosition")),m=e=>s.a(e("offsetXAlignment")),h=e=>c.a(e("offsetYAlignment")),g=e=>a.a.read(e("offsetX")),v=(e,t,o)=>u(u({},o),e("offsetX",t)),f=e=>p(e("offsetXSuffix")),y=e=>a.a.read(e("offsetY")),O=(e,t,o)=>u(u({},o),e("offsetY",t)),S=e=>p(e("offsetYSuffix"))},function(e,t,o){"use strict";o.d(t,"b",(function(){return b}));var n=o(2),a=o(0),r=o.n(a),i=o(6),l=o.n(i),s=o(49),c=o(23),d=o(19),u=o(155),p=o(179);const b=e=>e.filter(e=>{const{type:t,disabled:o,devices:n,roles:a}=e;if(!t)return!1;if(!0===o)return!1;if(n&&"all"!==n){const e=Object(d.h)(Object(c.b)().getState());if("desktop"===n&&"desktop"!==e)return!1;if("responsive"===n&&"desktop"===e)return!1}if(Array.isArray(a)&&!a.includes(Object(s.b)()))return!1;const r=u.a[t];return!r||"function"!=typeof r.shouldOptionBeFiltered||!u.a[t].shouldOptionBeFiltered(e)});class m extends r.a.Component{render(){const{data:e,className:t,optionClassName:o,toolbar:n,location:a,wrapOptions:i}=this.props,l=b(e).map((e,t)=>r.a.createElement(p.a,{key:e.id||t,className:o,toolbar:n,data:e,location:a}));return i?r.a.createElement("div",{className:t},l):l}}Object(n.a)(m,"propTypes",{wrapOptions:l.a.bool}),Object(n.a)(m,"defaultProps",{className:"",optionClassName:"",location:"",data:null,toolbar:null,wrapOptions:!0}),t.a=m},,function(e,t,o){"use strict";var n=o(105);let a,r={},i={};const l={registerComponent(e){r[e.componentId]=e},getComponents:()=>r,getComponent:e=>r[e]||null,registerNotFoundComponent(e){a=e},getNotFoundComponent(){if(!a)throw new Error("NotFoundComponent not registered");return a},registerShortcode(e){i=e},getShortcodes:()=>Object(n.b)("getShortcodes",i)};t.a=l},function(e,t,o){"use strict";o.d(t,"b",(function(){return a})),o.d(t,"a",(function(){return r})),o.d(t,"d",(function(){return i})),o.d(t,"c",(function(){return l}));var n=o(32);const a=(e,t)=>{const o=t/(e.imageWidth/e.imageHeight);let a=Object(n.a)(e.width||t,0,t),r=e.height||o;if("%"===e.widthSuffix&&(a=e.width*t/100),"%"===e.heightSuffix){const t=a/(e.imageWidth/e.imageHeight);r=e.height*t/100}return{width:Object(n.d)(a,2),height:Object(n.d)(r,2)}},r=(e,t,o=!1)=>{const r=a(e,t);let i=1,l=1;e.imageWidth/r.width<e.imageHeight/r.height?l=Object(n.d)(r.width/e.imageWidth,8):i=Object(n.d)(r.height/e.imageHeight,8);const s=Object(n.d)(e.imageWidth*(e.zoom/100)*l*i,2),c=Object(n.d)(e.imageHeight*(e.zoom/100)*l*i,2),d={imgWidth:s,imgHeight:c,imgMarginWidth:s-Object(n.d)(r.width*(e.zoom/100),2),imgMarginHeight:c-Object(n.d)(r.height*(e.zoom/100),2),wrapperWidth:r.width,wrapperHeight:r.height,positionX:e.positionX,positionY:e.positionY},u=((e,t)=>{let o,n;const a=e.positionX,r=e.positionY,i=e.imgWidth-e.wrapperWidth,l=e.imgHeight-e.wrapperHeight,s=a*e.imgWidth/100,c=r*e.imgHeight/100;return o=s-e.wrapperWidth/2,n=c-e.wrapperHeight/2,e.imgWidth>e.wrapperWidth?(o<0&&(o=0),o>i&&(o=i)):o=t?0:i/2,e.imgHeight>e.wrapperHeight?(n<0&&(n=0),n>l&&(n=l)):n=t?0:l/2,{left:-o,top:-n}})(d,o);return{width:Object(n.d)(d.imgWidth,2),height:Object(n.d)(d.imgHeight,2),marginLeft:Object(n.d)(u.left,2),marginTop:Object(n.d)(u.top,2)}},i=e=>"svg"===e,l=e=>"gif"===e},function(e,t,o){"use strict";o.d(t,"e",(function(){return r})),o.d(t,"b",(function(){return i})),o.d(t,"h",(function(){return l})),o.d(t,"f",(function(){return s})),o.d(t,"i",(function(){return c})),o.d(t,"d",(function(){return d})),o.d(t,"a",(function(){return u})),o.d(t,"c",(function(){return p})),o.d(t,"g",(function(){return b})),o.d(t,"j",(function(){return m})),o.d(t,"k",(function(){return h}));var n=o(17);const a=()=>n.a.get("mode")||"page",r="internal_story"===a(),i="external_story"===a(),l=r||i,s="page"===a(),c="template"===a(),d="internal_popup"===a(),u="external_popup"===a(),p=d||u,b=!!n.a.get("pro"),m=!!n.a.get("wp"),h=e=>"internal_popup"===e||"external_popup"===e},,function(e,t,o){"use strict";o.d(t,"a",(function(){return n})),o.d(t,"h",(function(){return a})),o.d(t,"g",(function(){return r})),o.d(t,"i",(function(){return i})),o.d(t,"b",(function(){return l})),o.d(t,"j",(function(){return s})),o.d(t,"c",(function(){return c})),o.d(t,"f",(function(){return d})),o.d(t,"e",(function(){return u})),o.d(t,"d",(function(){return p}));class n{constructor(e){this.name="CustomError",this.message=e,this.date=new Date}getName(){return this.name}getMessage(){return this.message}}class a extends n{constructor(e){super(e),this.name="Project"}}class r extends n{constructor(e){super(e),this.name="Page"}}class i extends n{constructor(e){super(e),this.name="SavedBlocks"}}class l extends n{constructor(e){super(e),this.name="GlobalBlocks"}}class s extends n{constructor(e){super(e),this.name="SavedLayout"}}const c=1,d=2,u=3,p=[c,u]},,,,function(e,t,o){"use strict";function n(){let e="Unknown OS";{const{appVersion:t}=navigator;-1!==t.indexOf("Win")&&(e="Windows"),-1!==t.indexOf("Mac")&&(e="MacOS"),-1!==t.indexOf("Linux")&&(e="Linux")}return e}o.d(t,"a",(function(){return n}))},,,,function(e,t,o){"use strict";var n=o(12),a=o(31),r=o(2),i=o(0),l=o.n(i),s=o(5),c=o.n(s),d=o(39);let u;const p=new Map,b=(e,t)=>{e.filter(({isIntersecting:e})=>e).map(e=>Object(d.b)(o=>o(e,t),p.get(e.target)))},m=()=>{var e;return null!==(e=u)&&void 0!==e?e:u=new IntersectionObserver(b)},h=(e,t)=>{if(!p.has(e)){const o=m();p.set(e,t),o.observe(e)}return m()},g=e=>{p.delete(e),u&&(u.unobserve(e),0===p.size&&(u.disconnect(),u=void 0))};function v(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function f(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?v(Object(o),!0).forEach((function(t){Object(r.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):v(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class y extends l.a.Component{constructor(...e){super(...e),Object(r.a)(this,"state",{isVisible:!1}),Object(r.a)(this,"handleIntersection",({isIntersecting:e,target:t})=>{e&&(g(t),this.setState({isVisible:!0}))}),Object(r.a)(this,"ref",l.a.createRef()),Object(r.a)(this,"updateRef",()=>{this.props.forwardedRef&&("function"==typeof this.props.forwardedRef?this.props.forwardedRef(this.ref.current):this.props.forwardedRef.current=this.ref.current)}),Object(r.a)(this,"hasAnimation",()=>!!this.props.animationClass)}componentDidMount(){this.updateRef(),this.props.animationClass&&Object(d.b)(e=>h(e,this.handleIntersection),this.ref.current)}componentDidUpdate(e){this.updateRef(),e.animationClass!==this.props.animationClass&&(this.props.animationClass?Object(d.b)(e=>h(e,this.handleIntersection),this.ref.current):Object(d.b)(g,this.ref.current))}componentWillUnmount(){Object(d.b)(g,this.ref.current)}renderForEdit(){const e=this.props,{component:t,animationClass:o="",forwardedRef:n,children:r,className:l,componentProps:{className:s}}=e,d=Object(a.a)(e.componentProps,["className"]),{isVisible:u}=this.state,p=this.hasAnimation(),b=u&&p,m=c()(l,s,{"brz-observer__animation":p,"brz-animated":p,[o]:b,"brz-animate":b,"brz-animate-opacity":b}),h=f(f({},d),{},{className:m,ref:this.ref});return Object(i.createElement)(t,h,r)}renderForView(){const e=this.props,{component:t,animationClass:o="",iterationCount:n=1,children:r,className:l,forwardedRef:s,componentProps:{className:d}}=e,u=Object(a.a)(e.componentProps,["className"]),p=this.hasAnimation(),b=f(f(f({},u),p?{"data-iteration-count":n}:{}),{},{className:c()(l,d,{"brz-animated":p,[o]:p}),ref:this.ref});return Object(i.createElement)(t,b,r)}render(){return this.renderForEdit()}}function O(e,t){return l.a.createElement(y,Object(n.a)({},e,{forwardedRef:t}))}const S=Object(i.forwardRef)(O);t.a=S},function(e,t,o){"use strict";o.d(t,"a",(function(){return y}));var n=o(0),a=o.n(n),r=o(38),i=o(100),l=o(17),s=o(26),c=o(19),d=o(70),u=o(1),p=o(21),b=o(2),m=o(157),h=o(15);function g(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function v(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?g(Object(o),!0).forEach((function(t){Object(b.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):g(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const f=e=>{let t=null;return e&&(t=document.createElement("div"),t.id="ct-container",e.append(t)),t},y={error:(e,t={})=>{m.a.error(e,v(v({renderIcon:()=>a.a.createElement(h.b,{icon:"nc-info"}),bar:{size:"2px",style:"solid",color:"currentColor"}},t),{},{toastContainer:f(t.toastContainer)}))},success:(e,t={})=>{m.a.success(e,v(v({renderIcon:()=>a.a.createElement(h.b,{icon:"nc-info"}),bar:{size:"2px",style:"solid",color:"currentColor"}},t),{},{toastContainer:f(t.toastContainer)}))},info:(e,t={})=>{m.a.info(e,v(v({renderIcon:()=>a.a.createElement(h.b,{icon:"nc-info"}),bar:{size:"2px",style:"solid",color:"currentColor"}},t),{},{toastContainer:f(t.toastContainer)}))},warn:(e,t={})=>{m.a.warn(e,v(v({renderIcon:()=>a.a.createElement(h.b,{icon:"nc-info"}),bar:{size:"2px",style:"solid",color:"currentColor"}},t),{},{toastContainer:f(t.toastContainer)}))}},O=e=>e.lockedBy.user_email,S=({children:e})=>a.a.createElement("div",{className:"brz-ed-notification"},a.a.createElement("div",{className:"brz-ed-notification__body brz-d-xs-flex brz-flex-xs-column brz-align-items-xs-center brz-text-lg-center"},e)),C=({children:e})=>a.a.createElement("div",{className:"brz-ed-notification__head"},e),x=({children:e})=>a.a.createElement("div",{className:"brz-ed-notification__content"},e),j=({children:e})=>a.a.createElement("div",{className:"brz-ed-notification__footer brz-d-xs-flex brz-align-items-xs-center"},e);t.b=Object(r.b)(e=>({error:Object(c.j)(e)}))(({error:e,dispatch:t})=>{const{code:o,data:n}=e||{};let r;switch(o){case d.c:r=a.a.createElement(S,null,a.a.createElement(C,null,a.a.createElement(h.b,{icon:"nc-warning",className:"brz-ed-notification__warning"})),a.a.createElement(x,null,n.lockedBy?`${O(n)} ${Object(u.a)("is already editing project")}`:n.statusText||Object(u.a)("Something went wrong")),a.a.createElement(j,null,a.a.createElement("button",{className:"brz-button brz-ed-btn brz-ed-btn-blue brz-ed-btn-round brz-ed-btn-xs-2",onClick:()=>{window.parent.location.reload()}},Object(u.a)("Refresh"))));break;case d.f:{const e=l.a.get("urls");r=a.a.createElement(S,null,a.a.createElement(C,null,a.a.createElement(h.b,{icon:"nc-warning",className:"brz-ed-notification__warning"})),a.a.createElement(x,null,n.lockedBy?`${Object(u.a)("You can’t make changes")}.\n ${O(n)} ${Object(u.a)("is currently working on this page. Do you want to take over")} ?`:n),a.a.createElement(j,null,a.a.createElement("a",{className:"brz-a brz-d-xs-flex brz-align-items-xs-center brz-ed-notification__to-dashboard",href:e.backToDashboard},Object(u.a)("To Dashboard")),a.a.createElement("button",{className:"brz-button brz-ed-notification__take-over brz-ed-btn brz-ed-btn-blue brz-ed-btn-round brz-ed-btn-xs-2",onClick:()=>{t(Object(s.M)(null)),Object(p.J)().catch(()=>{y.error(Object(u.a)("Take over failed please refresh the page"))})}},Object(u.a)("Take over"))));break}case d.e:r=a.a.createElement(S,null,a.a.createElement(C,null,a.a.createElement(h.b,{icon:"nc-warning",className:"brz-ed-notification__warning"})),a.a.createElement(x,null,n),a.a.createElement(j,null,a.a.createElement("button",{className:"brz-button brz-ed-btn brz-ed-btn-blue brz-ed-btn-round brz-ed-btn-xs-2",onClick:()=>{window.parent.location.reload()}},Object(u.a)("Refresh"))));break;default:r=null}return a.a.createElement(i.CSSTransition,{in:Boolean(r),timeout:300,classNames:"brz-ed-fade",unmountOnExit:!0},r||a.a.createElement("span",null))})},,,function(e,t,o){"use strict";o.d(t,"a",(function(){return u}));var n=o(2),a=o(0),r=o.n(a),i=o(35),l=o.n(i),s=o(40),c=o.n(s);let d=[];class u extends r.a.Component{constructor(...e){super(...e),Object(n.a)(this,"handleAll",e=>{d.forEach(t=>{const{exceptions:o,onClickOutside:n}=t.props;let a=0;if(o.length>0){const{functionExceptions:t,stringExceptions:n}=o.reduce((e,t)=>{switch(typeof t){case"function":e.functionExceptions.push(t);break;case"string":e.stringExceptions.push(t)}return e},{functionExceptions:[],stringExceptions:[]});t.length>0&&(a+=t.filter(t=>!0===t(e.target)).length),0===a&&n.length>0&&(a+=c()(e.target).closest(n.join(",")).length)}if(0===a){const o=l.a.findDOMNode(t);o&&!o.contains(e.target)&&n(e)}})})}componentDidMount(){0===d.length&&(document.addEventListener("mousedown",this.handleAll,!0),window.parent.document.addEventListener("mousedown",this.handleAll,!0)),d.push(this)}componentWillUnmount(){d.splice(d.indexOf(this),1),0===d.length&&(document.removeEventListener("mousedown",this.handleAll,!0),window.parent.document.removeEventListener("mousedown",this.handleAll,!0))}render(){return r.a.Children.only(this.props.children)}}Object(n.a)(u,"defaultProps",{exceptions:[]})},function(e,t,o){"use strict";o.d(t,"a",(function(){return h}));var n=o(2),a=o(0),r=o.n(a),i=o(35),l=o.n(i),s=o(5),c=o.n(s),d=o(8);class u extends a.Component{constructor(...e){super(...e),Object(n.a)(this,"content",r.a.createRef()),Object(n.a)(this,"updateDOM",()=>{setTimeout(()=>{if(this.unmounted)return;const e=this.content.current;e&&this.props.onUpdateDOM(this.math,e)},0)})}componentDidMount(){this.updateDOM()}componentDidUpdate(){this.updateDOM()}componentWillUnmount(){this.unmounted=!0}math(e,t,o,n,a){const r=Math.max(o,e),i=r-e,l=e/r*a,s=a-l;return{client:e,offset:t,position:n,track:a,overflow:i,thumb:l,piece:s,shift:0===i?0:n/i*s,scroll:r}}render(){return r.a.createElement("div",{ref:this.content,className:this.props.className,style:this.props.style,onScroll:this.updateDOM},this.props.children)}}u.defaultProps={onUpdateDOM:d.default.noop};var p=o(40),b=o.n(p);class m extends a.Component{constructor(e){super(e),this.state={startTop:!1,startLeft:!1},this.handleMouseDown=this.handleMouseDown.bind(this),this.handleMouseMove=this.handleMouseMove.bind(this),this.handleMouseUp=this.handleMouseUp.bind(this)}componentDidMount(){const e=l.a.findDOMNode(this);this.document=b()(e.style?e.ownerDocument:e.document||e),this.window=b()(this.document[0].defaultView||this.document[0].parentWindow)}handleMouseDown(e,t,o){if(b()(o.target).hasClass("brz-ed-sidebar-block-remove"))return e(o),void t(o);e(o),this.window.on("mousemove",this.handleMouseMove),this.window.on("mouseup",this.handleMouseUp),this.setState({startLeft:o.clientX,startTop:o.clientY}),this.props.onDragStart(this),t(o)}handleMouseMove(e){var t={top:e.clientY-this.state.startTop,left:e.clientX-this.state.startLeft};this.props.onDragMove(t,this),e.preventDefault()}handleMouseUp(){this.window.off("mousemove",this.handleMouseMove),this.window.off("mouseup",this.handleMouseUp),this.props.onDragEnd(this)}render(){const e=r.a.Children.only(this.props.children);return r.a.cloneElement(e,{onMouseDown:t=>{this.handleMouseDown(e.props.onMouseDown||d.default.noop,this.props.onMouseDown||d.default.noop,t)}})}}m.defaultProps={currentWindow:{},onDragEnd:d.default.noop,onDragStart:d.default.noop,onDragMove:d.default.noop};class h extends a.Component{constructor(e){super(e),Object(n.a)(this,"captureStart",()=>{this._start=!1}),Object(n.a)(this,"handleChange",({left:e=null,top:t=null})=>{const o=l.a.findDOMNode(this.scrollable);this.props.onChange({left:e||o.scrollLeft,top:t||o.scrollTop})}),Object(n.a)(this,"handleMouseDown",e=>{const t=l.a.findDOMNode(this.wideTrack),o=t.getBoundingClientRect(),n=(e.clientX-o.left-this._wide.thumb/2)/this._wide.piece*this._wide.overflow;e.target===t&&(l.a.findDOMNode(this.scrollable).scrollLeft=n)}),Object(n.a)(this,"handleMouseDown2",e=>{const t=l.a.findDOMNode(this.tallTrack),o=t.getBoundingClientRect(),n=(e.clientY-o.top-this._tall.thumb/2)/this._tall.piece*this._tall.overflow;e.target===t&&(l.a.findDOMNode(this.scrollable).scrollTop=n,this.handleChange({top:n}))}),Object(n.a)(this,"handleMove",e=>{!1===this._start&&(this._start=parseInt(this.wideThumb.style.left));const t=(e.left+this._start)/this._wide.piece*this._wide.overflow;l.a.findDOMNode(this.scrollable).scrollLeft=t,this.handleChange({left:t})}),Object(n.a)(this,"handleMove2",e=>{!1===this._start&&(this._start=parseInt(this.tallThumb.style.top));const t=(e.top+this._start)/this._tall.piece*this._tall.overflow;l.a.findDOMNode(this.scrollable).scrollTop=t,this.handleChange({top:Math.min(this._tall.overflow,Math.max(0,t))})}),Object(n.a)(this,"handleResize",()=>{this.forceUpdate()}),Object(n.a)(this,"handleUpdateDOM",(e,t)=>{let o,n,a=l.a.findDOMNode(this.wideTrack),r=this.wideThumb,i=l.a.findDOMNode(this.tallTrack),s=this.tallThumb,c={overflow:Math.max(0,t.scrollWidth-t.clientWidth)},d={overflow:Math.max(t.scrollHeight-t.clientHeight)};a.style.position="absolute",i.style.position="absolute",r.style.position="relative",s.style.position="relative",a.style.display="block",o=a.offsetHeight,i.style.display="block",n=i.offsetWidth,t.style.overflow="hidden",t.style.borderBottomWidth=o+"px",t.style.borderBottomStyle=c.overflow?"solid":"none",t.style.borderRightWidth=n+"px",t.style.borderRightStyle=d.overflow?"solid":"none",c.overflow=Math.max(0,t.scrollWidth-t.clientWidth),d.overflow=Math.max(0,t.scrollHeight-t.clientHeight),a.style.display=c.overflow?"block":"none",a.style.width=t.clientWidth+"px",a.style.left=0,a.style.top=t.offsetHeight-o+"px",i.style.display=d.overflow?"block":"none",i.style.height=t.clientHeight+"px",i.style.top=0,this._wide=c=e(t.clientWidth,t.offsetWidth,t.scrollWidth,t.scrollLeft,a.clientWidth),this._tall=d=e(t.clientHeight,t.offsetHeight,t.scrollHeight,t.scrollTop,i.clientHeight),r.style.left=c.shift+"px",r.style.width=c.thumb+"px",s.style.top=d.shift+"px",s.style.height=d.thumb+"px"}),Object(n.a)(this,"handleWheel",e=>{e.stopPropagation();let t=l.a.findDOMNode(this.scrollable);const o=t.scrollTop,n=t.scrollLeft,a=navigator.userAgent.toLowerCase();let r=1;/firefox/.test(a)&&(r=20),/chrome/.test(a)&&(r=.8),this.props.onlyWide?t.scrollLeft=n+(e.deltaX?e.deltaX:e.deltaY*r):(e.preventDefault(),t.scrollTop=o+e.deltaY*r,t.scrollLeft=n+e.deltaX),(t.scrollTop!=o||t.scrollLeft!=n||this.props.onlyWide)&&e.preventDefault(),this.handleChange({left:t.scrollLeft,top:t.scrollTop})}),this.handleRef=r.a.createRef(),this._start=0,this._wide={},this._tall={}}componentDidMount(){this.handleRef.current.addEventListener("wheel",this.handleWheel,{passive:!1}),window.addEventListener("resize",this.handleResize,{passive:!0})}componentWillUnmount(){window.removeEventListener("resize",this.handleResize),this.handleRef.current.removeEventListener("wheel",this.handleWheel)}handleSetPositionWide(e){this.handleMove({top:0,left:e})}render(){const e=c()("brz-ed-scroll-pane",this.props.className);return r.a.createElement("div",{ref:this.handleRef,className:e,style:{position:"relative",width:this.props.style.width,height:this.props.style.height}},r.a.createElement(u,{ref:e=>{this.scrollable=e},className:"brz-ed-scroll-inner",style:this.props.style,onUpdateDOM:this.handleUpdateDOM},this.props.children),r.a.createElement(m,{ref:e=>{this.wideTrack=e},onDragStart:this.captureStart,onDragMove:this.handleMove},r.a.createElement("div",{className:"brz-ed-wide-track",onMouseDown:this.handleMouseDown},r.a.createElement("div",{ref:e=>{this.wideThumb=e},className:"brz-ed-wide-thumb"}))),r.a.createElement(m,{ref:e=>{this.tallTrack=e},onDragStart:this.captureStart,onDragMove:this.handleMove2},r.a.createElement("div",{className:"brz-ed-tall-track",onMouseDown:this.handleMouseDown2},r.a.createElement("div",{ref:e=>{this.tallThumb=e},className:"brz-ed-tall-thumb"}))))}}Object(n.a)(h,"defaultProps",{className:"",style:{},window:null,onlyWide:!1,wrapScrollable:e=>e,onChange:()=>{}})},function(e,t,o){"use strict";o.d(t,"b",(function(){return a})),o.d(t,"a",(function(){return i})),o.d(t,"g",(function(){return l})),o.d(t,"e",(function(){return s})),o.d(t,"d",(function(){return d})),o.d(t,"c",(function(){return u})),o.d(t,"f",(function(){return p}));o(8);var n=o(39);const a=(e,t)=>e.reduce((e,o)=>e.concat(t(o)),[]),r=(e,t)=>[...e,...t],i=e=>e.reduce(r,[]);function l(e){return Array.isArray(e)?e:[]}function s(e,t){return l(t).length>0?t:e}const c=(e,t)=>void 0!==t[e]?e:void 0,d=(e,t)=>Object(n.b)(e=>(e+1)%t.length,c(e,t));function u(e,t){const o=t.indexOf(e);return o<0?void 0:o}const p=(e,t)=>{if(!Array.isArray(t))return;const o=[];for(let n=0;n<t.length;n++){const a=e(t[n]);if(void 0===a)return;o.push(a)}return o}},function(e,t,o){"use strict";var n=o(8),a=o(210);const r=n.default.extend({},a.EventEmitter.prototype,{off(e,t){this.removeListener(e,t)}});r.setMaxListeners(1/0),t.a=r},,function(e,t,o){"use strict";o.d(t,"d",(function(){return n})),o.d(t,"e",(function(){return a})),o.d(t,"b",(function(){return l})),o.d(t,"c",(function(){return s})),o.d(t,"a",(function(){return c}));const n=(e,t)=>{for(let o in e){if(!e.hasOwnProperty(o))continue;e[o]&&"object"==typeof e[o]&&n(e[o],t);const a=t[e.type]||t.Component;"function"==typeof a&&e.type&&e.value&&a(e)}},a=(e,t)=>{for(let o in e)e.hasOwnProperty(o)&&"function"==typeof t[o]&&t[o](e[o])};var r=o(33),i=o(114);const l=({models:e={},globalBlocks:t={}})=>{const o=new Set;return n(e,{Component({type:e,value:t}){const n=Object(i.a)(e).style||{};Object.entries(n.families||{}).forEach(e=>{const[a,r]=e,l={type:t[a+"Type"]||n[a+"Type"],family:t[a]||r};l.type&&l.family&&o.add(Object(i.b)(l))})},RichText({type:e,value:t}){const n=Object(i.a)(e).content||{},a=/class="(.+?)">/g,r=/.*?brz-(f(?:[f|t]))-(\w+)+.*?/g;let l;const s=t.text||n.text;for(;l=a.exec(s);){let e,[t,n]=l,a={};for(;e=r.exec(n);){const[t,o,n]=e;"ft"===o&&(a.type=n),"ff"===o&&(a.family=n)}a.family&&(a.type?o.add(Object(i.b)(a)):o.add(Object(i.b)({family:a.family,type:"unknowns"})))}},GlobalBlock({value:{_id:e}}){const n=t[e];if(n){l({models:n,globalBlocks:t}).forEach(e=>{o.add(Object(i.b)(e))})}}}),[...o].map(i.c)},s=e=>{const t=new Set;return e.forEach(e=>{a(e,{fontFamily(o){t.add(Object(i.b)({type:e.fontFamilyType,family:o}))}})}),[...t].map(i.c)},c=(e,t)=>{const o=e.reduce((e,t)=>e.some(({family:e})=>e===t.family)?e:[...e,t],[]),n=Object(r.v)(t);return o.reduce((e,t)=>{const{type:o,family:a}=t;return"unknowns"===o?Object.entries(n).find(([e,t])=>Object(r.a)(t,a,e))?e:[...e,t]:Object(r.a)(n[o],a,o)?e:[...e,t]},[])}},function(e,t,o){"use strict";o.d(t,"i",(function(){return n})),o.d(t,"d",(function(){return a})),o.d(t,"e",(function(){return r})),o.d(t,"g",(function(){return i})),o.d(t,"f",(function(){return l})),o.d(t,"h",(function(){return s})),o.d(t,"b",(function(){return c})),o.d(t,"c",(function(){return d})),o.d(t,"a",(function(){return u})),o.d(t,"l",(function(){return p})),o.d(t,"j",(function(){return b})),o.d(t,"k",(function(){return m}));const n=100,a=200,r=300,i=400,l=500,s=600,c=700,d=800,u=900,p=[n,a,r,i,l,s,c,d,u],b=i,m=(e,t)=>p.includes(e)?e:t},,function(e,t,o){"use strict";var n=o(2),a=o(0),r=o.n(a),i=o(35),l=o.n(i),s=o(6),c=o.n(s);class d extends r.a.Component{constructor(e){super(e);const{node:t,className:o}=this.props,n=t.ownerDocument;this.el=n.createElement("div"),o&&(this.el.className=o),t.appendChild(this.el)}componentWillReceiveProps(e){e.className!==this.props.className&&(this.el.className=e.className)}componentWillUnmount(){this.props.node.removeChild(this.el)}render(){return l.a.createPortal(this.props.children,this.el)}}Object(n.a)(d,"propTypes",{className:c.a.string,node:c.a.object.isRequired}),t.a=d},function(e,t,o){"use strict";o.d(t,"a",(function(){return i})),o.d(t,"c",(function(){return l})),o.d(t,"b",(function(){return s}));var n=o(39),a=o(41);const r=/^#(?:[A-Fa-f0-9]{3}){1,2}$/;function i(e){return r.test(e)}const l=(e,t)=>i(t)?t:e,s=Object(n.c)(e=>i(e)?e:void 0,a.a.read)},,function(e,t,o){"use strict";o.d(t,"c",(function(){return a})),o.d(t,"b",(function(){return r})),o.d(t,"a",(function(){return i}));var n=o(2);const a="UNDO",r="REDO";class i{constructor(e){Object(n.a)(this,"snapshots",[]),Object(n.a)(this,"config",{maxSize:10,collapseFrequency:2e3}),Object(n.a)(this,"currentIndex",-1),Object(n.a)(this,"previousIndex",-1),Object(n.a)(this,"lastSnapshotTimestamp",0),Object(n.a)(this,"canUndo_",!1),Object(n.a)(this,"canRedo_",!1),e&&(this.config=e),this.snapshots=new Array(this.config.maxSize).fill(null)}getSnapshots(){return this.snapshots}getCurrentSnapshot(){var e;return null!==(e=this.snapshots[this.currentIndex])&&void 0!==e?e:null}getPreviousSnapshot(){var e;return null!==(e=this.snapshots[this.previousIndex])&&void 0!==e?e:null}getSnapshot(e){if(e>0){var t;const o=e-1;return null!==(t=this.snapshots[o])&&void 0!==t?t:null}{var o;const t=this.snapshots.filter(e=>null!==e).length+e;return null!==(o=this.snapshots[t])&&void 0!==o?o:null}}update(e,t){if(Object.keys(e).some(t=>{var o;return e[t]!==(null===(o=this.snapshots[this.currentIndex])||void 0===o?void 0:o[t])})){const o=e,n=Date.now();if(null==t?void 0:t.replacePresent)this.snapshots[this.currentIndex]=o;else{if(this.snapshots[this.currentIndex+1]&&null!==this.snapshots[this.currentIndex+1]){this.previousIndex=this.currentIndex,this.currentIndex++,this.snapshots[this.currentIndex]=o;for(let e=this.currentIndex+1;e<=this.snapshots.length-1;e++)this.snapshots[e]=null}else{if(n-this.lastSnapshotTimestamp>this.config.collapseFrequency){if(this.currentIndex===this.snapshots.length-1){for(let e=0;e<=this.snapshots.length-2;e++)this.snapshots[e]=this.snapshots[e+1];this.snapshots[this.snapshots.length-1]=o}else this.previousIndex=this.currentIndex,this.currentIndex++,this.snapshots[this.currentIndex]=o}else this.snapshots[this.currentIndex]=o}this.updateFlags(),this.lastSnapshotTimestamp=n}}}replaceSnapshots(e){if(e.length!==this.snapshots.length)throw new Error("History. snapshots must be of same lengths");for(let t=0;t<this.snapshots.length;t++)if(null===this.snapshots[t]&&null!==e[t]||null!==this.snapshots[t]&&null===e[t])throw new Error("History. only patch snapshots supported for now");this.snapshots=e}canUndo(){return this.canUndo_}undo(){this.canUndo()&&(this.previousIndex=this.currentIndex,this.currentIndex--,this.updateFlags())}canRedo(){return this.canRedo_}redo(){this.canRedo()&&(this.previousIndex=this.currentIndex,this.currentIndex++,this.updateFlags())}updateFlags(){this.canUndo_=this.currentIndex>0,this.canRedo_=Boolean(this.snapshots[this.currentIndex+1]&&null!==this.snapshots[this.currentIndex+1])}}},function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"a",(function(){return a}));const n=e=>e.target.value;function a(e,t){"function"==typeof t?t(e):t&&e&&(t.current=e)}},,,,function(e,t,o){"use strict";(function(e){o.d(t,"b",(function(){return d}));var n=o(17),a=o(57),r=o(108),i=o(426),l=o(277);o.d(t,"a",(function(){return l.a}));const s={},c=new Worker(e,{});async function d(e){if(!e)return Promise.reject("Could not find node");const t=getComputedStyle(e);if("none"===t.display||"0"===t.opacity)return Promise.reject(`Could not make screenshot for node ${e} because it's hidden`);let o;try{o=await Object(i.a)(e)}catch(e){console.error("cloneinline",e)}const r=function(e){let{width:t,height:o}=e.getBoundingClientRect();return{width:t,height:o}}(e),l=new Blob([o.outerHTML],{type:"text/plain"}),d=URL.createObjectURL(l);return new Promise((e,t)=>{const o=Object(a.a)(3),{assets:i,site:l}=n.a.get("urls");s[o]=[e,t,r,d],c.postMessage({id:o,url:d,assetUrl:i,siteUrl:l,options:r,proxyUrl:u()})})}function u(){{var e;const t=n.a.get("urls").site,o=null!==(e=n.a.get("prefix"))&&void 0!==e?e:"brizy";return Object(r.b)(t)?`${t}&${o}_file=`:`${t}?${o}_file=`}}c.onmessage=async e=>{const{id:t,url:o}=e.data,n=await fetch(o),a=await n.text(),[r,i,l,c]=s[t];URL.revokeObjectURL(c),URL.revokeObjectURL(o);const d=document.createElement("img");d.onload=async()=>{let e=d.width,t=d.height;e>600&&(t=Math.floor(600*t/e),e=600);const o=document.createElement("canvas");o.width=e,o.height=t,o.getContext("2d").drawImage(d,0,0,e,t);const n=o.toDataURL("image/jpeg",1);r({src:n,width:e,height:t})},d.onerror=i,d.crossOrigin="anonymous",d.src=a,delete s[t]}}).call(this,o(600))},function(e,t,o){"use strict";o.d(t,"b",(function(){return s})),o.d(t,"f",(function(){return c})),o.d(t,"a",(function(){return d})),o.d(t,"e",(function(){return u})),o.d(t,"c",(function(){return p})),o.d(t,"d",(function(){return b}));var n,a=o(17);const r=a.a.get("template_type"),i=a.a.get("mode"),l=e=>r===e||""===r,s="post"===(null===(n=a.a.get("wp"))||void 0===n?void 0:n.post_type),c=l("single"),d=l("archive"),u=l("product"),p=l("product_archive"),b="product"===i},,,,,function(e,t,o){"use strict";o.d(t,"b",(function(){return a})),o.d(t,"a",(function(){return l})),o.d(t,"c",(function(){return s}));var n=o(8);function a(e,t){let o=!1;for(let n=0;n<t.length;n++){for(let l=0;l<e.length;l++){if(a=e[l],i=t[n],a.type===i.type&&a.id&&i.id&&a.id===i.id){e[l]=r(e[l],t[n]),o=!0;break}o=!1}o||e.push(t[n])}var a,i;return function e(t){if(!t||"function"!=typeof t[Symbol.iterator])return t;for(let o of t){let t="options";o.columns&&(t="columns"),o.tabs&&(t="tabs"),o[t]&&(o[t]=e(o[t]))}return n.default.sortBy(t,"position")}(e)}function r(e,t){for(const o of Object.keys(t))"columns"===o||"options"===o||"tabs"===o?e[o]=a(e[o]||[],t[o]||[]):"disabled"===o&&!0===t[o]&&(e[o]=t[o]);return e}var i=o(53);const l=e=>Object(i.b)(["id","type"],e),s=(e,t)=>l(t)?Object(i.c)(s.bind(null,e),e(t)):Object(i.c)(s.bind(null,e),t)},function(e,t,o){"use strict";o.d(t,"a",(function(){return a})),o.d(t,"b",(function(){return r}));const n={};function a(e,t,o=10){void 0===n[e]&&(n[e]=[]);const a={cb:t,priority:o},r=n[e].findIndex(({priority:e})=>a.priority<e);-1!==r?n[e].splice(r,0,a):n[e].push(a)}function r(e,t,...o){return void 0===n[e]?t:n[e].reduce((e,{cb:t})=>t(e,...o),t)}},,function(e,t,o){"use strict";o.d(t,"a",(function(){return u})),o.d(t,"b",(function(){return p})),o.d(t,"f",(function(){return h})),o.d(t,"g",(function(){return g})),o.d(t,"e",(function(){return v})),o.d(t,"d",(function(){return f})),o.d(t,"c",(function(){return y}));var n=o(2),a=o(17),r=o(23),i=o(44),l=o(115),s=o(14);function c(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function d(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?c(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):c(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const u=16,p="brizy_template";function b(e,t){var o;if(!e.length&&(null===(o=t[""])||void 0===o?void 0:o.after))return t[""].after;e.length&&t[""]&&(t[e[0].globalBlockId]=t[""],delete t[""]);return e.reduce((e,o)=>{var n,a;const r=o.globalBlockId;return(null===(n=t[r])||void 0===n?void 0:n.before)&&e.push(...t[r].before),e.push(o),(null===(a=t[r])||void 0===a?void 0:a.after)&&e.push(...t[r].after),e},[])}function m(e,t,o){const n=[...t];return e.reduce((e,a)=>{if(t.includes(a.globalBlockId)){const t=n.shift();t&&e.push({globalBlockId:t,align:o.includes(t)?"top":"bottom"})}else e.push(a);return e},[])}function h(e,t){const o=Object.keys(t),n=Object.entries(t).reduce((e,[t,o])=>(o.position&&(e[t]=o.position),e),{}),a=function(e){const{top:t,bottom:o}=Object.entries(e).reduce((e,[t,o])=>(e.top.push(d(d({},o),{},{globalBlockId:t,align:o.align||"top"})),e.bottom.push(d(d({},o),{},{globalBlockId:t,align:o.align||"top"})),e),{top:[],bottom:[]});return{top:n(t,"top"),bottom:n(o,"bottom")};function n(e,t){return e.sort((e,o)=>e[t]-o[t]).map(({globalBlockId:e,align:t})=>({globalBlockId:e,align:t}))}}(n),{top:r}=g(e,o),i=function(e,t){return e.filter(e=>t[e])}(e,t),l=i.filter(e=>n[e]),s=function(e,t,o){const n={};let a=[],r="";return e.forEach((e,i,l)=>{const s=t.includes(e);s&&(n[e]=d(d({},n[e]),{},{before:a}),r=e,a=[]),s||a.push({globalBlockId:e,align:o.includes(e)?"top":"bottom"}),i===l.length-1&&a.length&&(n[r]=d(d({},n[r]),{},{after:a}))}),n}(i,l,r);return function(e,t){const o={};return n(e,"top",o),n(t,"bottom",o),o;function n(e,t,o){return e.reduce((e,{globalBlockId:o,align:n},a)=>(e[o]=d(d({},e[o]),{},{align:n,[t]:a}),e),o)}}(b(m(a.top,l,r),s),b(m(a.bottom,l,r),s))}const g=(e,t)=>{const o={top:[],bottom:[]};if(e.length>0){let n=0;for(;n<=e.length-1;){const a=e[n];if(!t.includes(a))break;o.top.push(a),n++}for(n=0;n<=e.length-1;){const a=e[e.length-1-n];if(!t.includes(a))break;o.bottom.push(a),n++}}return o};const v=(e=Number(Object(i.d)(Object(r.b)().getState()).id))=>{let t=1,o="page";if(s.i){const{ruleMatches:e}=a.a.get("wp");s.h?(t=u,o=p):e&&"post"===e[0].entityType&&(t=1,o="post")}return{group:t,type:o,id:e}},f=(e,t,o)=>{const n=e[t-1],a=e[t+1],{top:r,bottom:i}=((e,t)=>{const o={top:[],bottom:[]};if(e.length>0){let n=0;for(;n<=e.length-1;){const a=e[n];if(!t.includes(a))break;o.top.push(a),n++}for(n=0;n<=e.length-1;){const a=e[e.length-1-n];if(!t.includes(a))break;o.bottom.push(a),n++}}return o})(e,o);let l="center";return!n||o.includes(n)&&r.includes(n)?l="top":(!a||o.includes(a)&&i.includes(a))&&(l="bottom"),l},y=(e,t,o)=>{const n=v(o),{level2:a,level3:r}=Object(l.d)(e.rules,o);let i=d(d({},e),{},{rules:e.rules.filter(({entityValues:e})=>!e.includes(n.id))}),c=!0;if(!s.h){const e=a&&Object(l.c)(a),o=r&&Object(l.c)(r),n=e||o,i=!t&&!n;(t&&n||i)&&(c=!1)}return c&&(i=d(d({},i),{},{rules:[...i.rules,{type:t?1:2,appliedFor:n.group,entityType:n.type,entityValues:[n.id]}]})),i}},function(e,t,o){"use strict";o.d(t,"a",(function(){return n.a})),o.d(t,"b",(function(){return a}));var n=o(204);const a=e=>e.includes("?")},function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"d",(function(){return a})),o.d(t,"c",(function(){return r})),o.d(t,"a",(function(){return i}));const n=436,a=436,r=436,i=726},,function(e,t,o){"use strict";var n=o(0),a=o.n(n),r=o(8),i=o(100),l=o(5),s=o.n(l),c=o(50),d=o(90);const u=e=>{const{className:t,opened:o,children:n,onClose:r}=e,l=s()("brz-ed-fixed",t);return a.a.createElement(d.a,{node:window.parent.document.body},a.a.createElement(i.CSSTransition,{in:o,classNames:"brz-ed-fade",timeout:150},o?a.a.createElement("div",{className:l},a.a.createElement(c.a,{keyNames:["esc"],id:"key-helper-prompt-esc",onKeyUp:r}),a.a.createElement("div",{className:"brz-ed-fixed-overlay",onClick:r}),a.a.createElement("div",{className:"brz-ed-fixed-scroll"},n)):a.a.createElement("span",null)))};u.defaultProps={className:"",opened:!1,onClose:r.default.noop},t.a=u},function(e,t,o){"use strict";o.d(t,"b",(function(){return m}));var n=o(2),a=o(0),r=o.n(a),i=o(8),l=o(6),s=o.n(l),c=o(5),d=o.n(c),u=o(208);function p(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function b(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?p(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):p(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}o.d(t,"a",(function(){return u.a}));class m extends r.a.Component{constructor(...e){super(...e),Object(n.a)(this,"handleChange",e=>{const{defaultValue:t,onChange:o}=this.props;o(b(b({},t),{},{[e]:!t[e]}))})}renderOptions(){const{defaultValue:e,children:t}=this.props;return r.a.Children.map(t,(t,o)=>r.a.cloneElement(t,{key:o,active:Boolean(e[t.props.value]),onClick:t.props.disabled?null:()=>this.handleChange(t.props.value)}))}render(){const e=d()("brz-control__check-group",this.props.className);return r.a.createElement("div",{className:e},this.renderOptions())}}Object(n.a)(m,"propTypes",{name:s.a.string,className:s.a.string,defaultValue:s.a.object,onChange:s.a.func}),Object(n.a)(m,"defaultProps",{name:"defaultName",className:"",defaultValue:{},onChange:i.default.noop})},function(e,t,o){"use strict";o.d(t,"a",(function(){return m})),o.d(t,"f",(function(){return h})),o.d(t,"b",(function(){return g})),o.d(t,"e",(function(){return v})),o.d(t,"d",(function(){return f})),o.d(t,"c",(function(){return y}));var n=o(2),a=o(10),r=o(7),i=o(138),l=o(30),s=o(41);const c=["all","desktop","responsive"],d=(s.a.eq,e=>{var t;return null!==(t=(e=>{if("string"==typeof e)return c.includes(e)?e:void 0})(e))&&void 0!==t?t:"all"}),u=e=>d((null!=e?e:{}).devices);function p(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function b(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?p(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):p(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const m=(e,t)=>{const o=t.startsWith("temp")?"temp":"",n=o.length?t.substr(4):t,r="value"===n||"Value"===n?"":n;return Object(a.a)([o,e,r])},h=(e,t)=>t&&"object"==typeof t?Object.keys(t).reduce((o,n)=>(o[m(e,n)]=t[n],o),{}):t,g=e=>String(e).endsWith("-dev"),v=(e,t)=>Object(i.b)(e,t)?e:r.d,f=(e,t)=>((e,t)=>{switch(t){case"all":return!0;case"responsive":return Object(l.g)(e);case"desktop":return Object(l.f)(e)}})(e,u(t))?e:l.e,y=e=>{var t,o,n,a,r,i,l,s,c,d,u;const p=null===(t=e.allowExtend)||void 0===t||t,m=null!==(o=e.allowExtendFromParent)&&void 0!==o?o:p,h=null!==(n=e.allowExtendFromChild)&&void 0!==n?n:p,g=null!==(a=e.allowExtendFromThirdParty)&&void 0!==a?a:p,v=null!==(r=e.allowSidebarExtend)&&void 0!==r?r:p,f=null!==(i=null!==(l=e.allowSidebarExtendFromParent)&&void 0!==l?l:e.allowSidebarExtend)&&void 0!==i?i:m,y=null!==(s=null!==(c=e.allowSidebarExtendFromChild)&&void 0!==c?c:e.allowSidebarExtend)&&void 0!==s?s:h,O=null!==(d=null!==(u=e.allowSidebarExtendFromThirdParty)&&void 0!==u?u:e.allowSidebarExtend)&&void 0!==d?d:g;return b(b({},e),{},{allowExtend:p,allowExtendFromParent:m,allowExtendFromChild:h,allowExtendFromThirdParty:g,allowSidebarExtend:v,allowSidebarExtendFromParent:f,allowSidebarExtendFromChild:y,allowSidebarExtendFromThirdParty:O})}},function(e,t,o){"use strict";o.d(t,"b",(function(){return a})),o.d(t,"c",(function(){return r})),o.d(t,"a",(function(){return i}));var n=o(66);const a=({type:e,family:t})=>`${e}|${t}`,r=e=>{const[t,o]=e.split("|");return{type:t,family:o}},i=e=>{const t=n.a.getComponent(e);return t?t.defaultValue:{}}},function(e,t,o){"use strict";o.d(t,"b",(function(){return s})),o.d(t,"a",(function(){return c})),o.d(t,"d",(function(){return u})),o.d(t,"c",(function(){return p}));var n=o(8),a=o(17),r=o(107),i=o(205),l=o(14);const s=(e,t,o)=>Object.entries(t).reduce((t,[n,a])=>(!e.includes(n)&&c(a,o)&&t.push(n),t),[]);function c(e,t){return l.h?function({rules:e}){const{ruleMatches:t,page:o}=a.a.get("wp"),i=e.find(({entityType:e,appliedFor:t,entityValues:n})=>t===r.a&&e===r.b&&n.includes(o));if(i)return p(i);const l=t.map(({type:e,group:t,entityType:o,values:n})=>({type:e,entityType:o,appliedFor:t,entityValues:n})),s=d(e),c=d(l);let u=s.level1.find(e=>c.level1.find(({entityType:t,appliedFor:o,entityValues:a})=>o===e.appliedFor&&t===e.entityType&&n.default.intersection(a,e.entityValues).length));if(u)return p(u);if(u=s.level2.find(e=>c.level2.find(({entityType:t,appliedFor:o})=>o===e.appliedFor&&t===e.entityType)),u)return p(u);if(s.level3.length)return p(s.level3[0]);return!1}(e):function(e,t){if(!e)throw Error("GlobalBlock should exist");const{rules:o,data:n}=e;if(Object(i.a)(n))return!0;const{level1:a,level2:r,level3:l}=u(o,t);if(a)return p(a);if(r)return p(r);if(l)return p(l);return!1}(e,t)}function d(e){return e.reduce((e,t)=>{const{appliedFor:o,entityType:n,entityValues:a}=t;return n===r.b||(""===o||null===o?e.level3.push(t):a.length?e.level1.push(t):e.level2.push(t)),e},{level1:[],level2:[],level3:[]})}function u(e=[],t){const o=Object(r.e)(t);return{level1:e.find(({appliedFor:e,entityType:t,entityValues:n})=>e===o.group&&t===o.type&&n.includes(o.id)),level2:e.find(({appliedFor:e,entityType:t,entityValues:n})=>e===o.group&&t===o.type&&!n.length),level3:e.find(({appliedFor:e,entityType:t})=>(""===e||null===e)&&""===t)}}function p(e){return 1===e.type}},,,,,,,,function(e,t,o){"use strict";o.d(t,"a",(function(){return d}));var n=o(2),a=o(0),r=o.n(a),i=o(8),l=o(5),s=o.n(l),c=o(15);class d extends r.a.Component{constructor(...e){super(...e),Object(n.a)(this,"onChange",e=>{const{valueMap:t,onChange:o}=this.props,n=i.default.isObject(t)?t[e.target.checked]:e.target.checked;setTimeout(o,200,n)})}render(){const{className:e,defaultValue:t,valueMap:o,arrowCheck:n,arrowUnCheck:a}=this.props,l=i.default.isObject(o)?"true"===i.default.findKey(o,e=>e===t):t,d=s()("brz-ed-control__switch",e);return r.a.createElement("div",{className:d},r.a.createElement("label",{className:"brz-label brz-ed-control__switch-label"},r.a.createElement("input",{type:"checkbox",className:"brz-input brz-ed-control__switch-input",defaultChecked:l,onChange:this.onChange}),r.a.createElement("span",{className:"brz-span brz-ed-control__switch-arrows"},r.a.createElement(c.b,{className:"brz-ed-control__switch--check",icon:n}),r.a.createElement(c.b,{className:"brz-icon-svg brz-ed-control__switch--un-check",icon:a})),r.a.createElement("span",{className:"brz-span brz-ed-control__switch--handle"})))}}Object(n.a)(d,"defaultProps",{className:"",arrowCheck:"nc-check-small",arrowUnCheck:"nc-remove",defaultValue:!1,valueMap:null})},,function(e,t,o){"use strict";var n=o(2),a=o(0),r=o.n(a);class i extends a.Component{render(){const{title:e,items:t,children:o}=this.props;return r.a.createElement("div",{title:e,className:"brz-control__select-optgroup"},r.a.createElement("div",{className:"brz-control__select-optgroup-label"},o),t)}}Object(n.a)(i,"defaultProps",{title:"",active:"",items:[]}),t.a=i},function(e,t,o){"use strict";o.d(t,"a",(function(){return se})),o.d(t,"c",(function(){return de})),o.d(t,"d",(function(){return ue})),o.d(t,"b",(function(){return pe}));var n={};o.r(n),o.d(n,"getItems",(function(){return G})),o.d(n,"getItemsSimple",(function(){return U})),o.d(n,"getItemsMMenu",(function(){return K}));var a={};o.r(a),o.d(a,"getItems",(function(){return q})),o.d(a,"getItemsSimple",(function(){return Y})),o.d(a,"getItemsMMenu",(function(){return X}));var r={};o.r(r),o.d(r,"getItems",(function(){return J}));var i={};o.r(i),o.d(i,"title",(function(){return Q})),o.d(i,"getItems",(function(){return ee}));var l=o(12),s=o(31),c=o(2),d=o(0),u=o.n(d),p=o(8),b=o(37),m=o(5),h=o.n(m),g=o(17),v=o(85),f=o(20),y=o(22),O=o(29),S=o(45),C=o(90),x=o(14),j=o(56),B=o(82),P=o(6),w=o.n(P),T=o(111),z=o(15);function E({iframeSrc:e,opened:t,onClose:o}){return u.a.createElement(T.a,{opened:t,onClose:o},u.a.createElement(k,{src:e,onRequestClose:o}))}function k({src:e,onRequestClose:t}){const[o,n]=Object(d.useState)(!1),a=Object(d.useRef)(null);return Object(d.useEffect)(()=>{const o=o=>{const r=new URL(e);if(o.origin===r.origin&&o.source===a.current.contentWindow&&o.data&&o.data.type)switch(o.data.type){case"CLOSE":t();break;case"NAVIGATE":o.data.url&&(n.parent.location.href=o.data.url)}},n=a.current.ownerDocument.defaultView;return n.addEventListener("message",o),()=>n.removeEventListener("message",o)},[]),u.a.createElement(u.a.Fragment,null,u.a.createElement("iframe",{ref:a,title:"ThirdParty",src:e,style:{position:"relative",display:o?"block":"none",width:"100%",maxWidth:"1140px",height:"90%",maxHeight:"967px",border:0,borderRadius:"7px"},onLoad:()=>n(!0)}),!o&&u.a.createElement(z.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin",style:{fontSize:"30px",color:"rgba(255, 255, 255, 0.75)"}}))}E.defaultProps={iframeSrc:"",opened:!1,onClose:p.default.noop},E.propTypes={iframeSrc:w.a.string.isRequired,opened:w.a.bool,onClose:w.a.func},k.defaultProps={src:"",onRequestClose:p.default.noop},k.propTypes={src:w.a.string.isRequired,onRequestClose:w.a.func};var H=o(23),F=(o(44),o(105)),_=o(11),R=o(52),M=o(1),L={getItems:function(){return[{id:"main",type:"group",title:Object(M.a)("Menu"),icon:"nc-tabs",disabled:(e,t)=>t.isInSubMenu,items:[]}]}};var W=o(441),I=o(18),N=o(9),A=o(3),D=o(13),V=o(30),$=o(7);function G({v:e,device:t,state:o}){return"on"===Object(A.defaultValueValue)({v:e,device:t,state:o,key:"mMenu"})?K({v:e,device:t,state:o}):U({v:e,device:t,state:o})}function U({v:e,device:t,state:o}){const n=n=>Object(A.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:a}=Object(D.d)(n("colorHex"),n("colorPalette")),{hex:r}=Object(D.d)(n("subMenuColorHex"),n("subMenuColorPalette"));return[{id:"toolbarMenuSettings",type:"popover-dev",config:{icon:"nc-menu-3",title:Object(M.a)("Menu")},position:10,options:[{id:"menuSize",type:"slider-dev",label:Object(M.a)("Size"),position:20,disabled:"horizontal"===n("verticalMode"),config:{min:10,max:100,units:[{title:"%",value:"%"}]}}]},{id:"toolbarMenuItem",type:"popover-dev",config:{icon:"nc-star",title:Object(M.a)("Icon")},position:20,options:[{id:"iconSize",type:"slider-dev",label:Object(M.a)("Size"),position:20,config:{min:0,max:100,units:[{title:"px",value:"px"}]}},{id:"iconSpacing",type:"slider-dev",devices:"desktop",label:Object(M.a)("Spacing"),roles:["admin"],position:30,config:{min:0,max:100,units:[{title:"px",value:"px"}]}}]},{id:"subMenuToolbarMenuItem",type:"popover-dev",config:{icon:"nc-star",title:Object(M.a)("Icon")},position:20,options:[{id:"subMenuIconSize",type:"slider-dev",label:Object(M.a)("Size"),position:20,config:{min:0,max:100,units:[{title:"px",value:"px"}]}},{id:"subMenuIconSpacing",type:"slider",devices:"desktop",label:Object(M.a)("Spacing"),roles:["admin"],position:30,slider:{min:0,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:e.subMenuIconSpacing},onChange:({value:t})=>({subMenuIconSpacing:t,mMenuIconSpacing:e.subMenuIconSpacing===e.mMenuIconSpacing?t:e.mMenuIconSpacing})}]},{id:"toolbarTypography",type:"popover-dev",config:{icon:"nc-font",size:t===V.a?"large":"auto",title:Object(M.a)("Typography")},roles:["admin"],position:70,options:[{id:"",type:"typography-dev",config:{fontFamily:t===V.a}}]},{id:"subMenuToolbarTypography",type:"popover-dev",config:{icon:"nc-font",size:t===V.a?"large":"auto",title:Object(M.a)("Typography")},roles:["admin"],position:70,options:[{id:"subMenu",type:"typography-dev",config:{fontFamily:t===V.a}}]},{id:"toolbarColor",type:"popover-dev",config:{size:"auto",title:Object(M.a)("Colors"),icon:{style:{backgroundColor:Object(I.c)(a,e.colorOpacity)}}},devices:"desktop",position:80,roles:["admin"],options:[{id:"color",type:"tabs-dev",tabs:[{id:"tabText",label:Object(M.a)("Text"),options:[{id:"color",type:"colorPicker-dev",states:[$.c,$.b,$.a]}]},{id:"bg",label:Object(M.a)("Bg"),options:[{id:"menuBgColor",type:"colorPicker-dev",states:[$.c,$.b,$.a]}]},{id:"border",label:Object(M.a)("Border"),options:[{id:"menuBorder",type:"border-dev",states:[$.c,$.b,$.a]}]}]}]},{id:"subMenuToolbarColor",type:"popover-dev",config:{size:"auto",title:Object(M.a)("Colors"),icon:{style:{backgroundColor:Object(I.c)(r,e.subMenuColorOpacity)}}},devices:"desktop",position:80,roles:["admin"],options:[{id:"subMenuColor",type:"tabs-dev",config:{position:"left"},tabs:[{id:"tabNormal",icon:"nc-circle",title:Object(M.a)("Normal"),options:[{id:"subMenuColorTabs",type:"tabs-dev",tabs:[{id:"tabText",label:Object(M.a)("Text"),options:[Object(N.n)({v:e,device:t,prefix:"subMenuColor",onChangeHex:["onChangeColorHexSubMenu2"],onChangePalette:["onChangeColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.o)({v:e,device:t,prefix:"subMenuColor",onChange:["onChangeColorFieldsSubMenu2"]})]}]}]},{id:"tabBackground",label:Object(M.a)("Bg"),options:[Object(N.b)({v:e,device:t,state:"normal",prefix:"subMenuBg",showSelect:!1,onChangeHex:["onChangeBgColorHexSubMenu2"],onChangePalette:["onChangeBgColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:30,options:[Object(N.c)({v:e,device:t,state:"normal",prefix:"subMenuBg",onChange:["onChangeBgColorFieldsSubMenu2"]})]}]}]},{id:"tabBorder",label:Object(M.a)("Border"),options:[Object(N.f)({v:e,device:t,state:"normal",prefix:"subMenu",showSelect:!1,onChangeHex:["onChangeBorderColorHexSubMenu2"],onChangePalette:["onChangeBorderColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:38,options:[Object(N.g)({v:e,device:t,prefix:"subMenu",state:"normal",onChange:["onChangeBorderColorFieldsSubMenu2"]})]}]}]},{id:"tabBoxShadow",label:Object(M.a)("Shadow"),options:[Object(N.k)({v:e,device:t,choices:"outset",state:"normal",onChangeType:["onChangeBoxShadowType2","onChangeBoxShadowTypeDependencies2"],onChangeHex:["onChangeBoxShadowHexAndOpacity2","onChangeBoxShadowHexAndOpacityPalette2","onChangeBoxShadowHexAndOpacityDependencies2"],onChangePalette:["onChangeBoxShadowPalette2","onChangeBoxShadowPaletteOpacity2","onChangeBoxShadowHexAndOpacityDependencies2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:41,options:[Object(N.m)({v:e,device:t,state:"normal",onChange:["onChangeBoxShadowHexAndOpacity2","onChangeBoxShadowHexAndOpacityPalette2","onChangeBoxShadowHexAndOpacityDependencies2"]})]},{width:59,options:[Object(N.l)({v:e,device:t,state:"normal",choices:"outset",onChange:["onChangeBoxShadowFields2","onChangeBoxShadowFieldsDependencies2"]})]}]}]}]}]},{id:"tabHover",icon:"nc-hover",title:Object(M.a)("Hover"),options:[{id:"subMenuHoverColorTabs",className:"",type:"tabs-dev",tabs:[{id:"tabText",label:Object(M.a)("Text"),options:[Object(N.n)({v:e,device:t,prefix:"subMenuHoverColor",onChangeHex:["onChangeHoverColorHexSubMenu2"],onChangePalette:["onChangeHoverColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.o)({v:e,device:t,prefix:"subMenuHoverColor",onChange:["onChangeHoverColorFieldsSubMenu2"]})]}]}]},{id:"tabBackground",label:Object(M.a)("Background"),options:[Object(N.b)({v:e,device:t,state:"normal",prefix:"subMenuHoverBg",showSelect:!1,onChangeHex:["onChangeBgHoverColorHexSubMenu2"],onChangePalette:["onChangeBgHoverColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:30,options:[Object(N.c)({v:e,device:t,state:"normal",prefix:"subMenuHoverBg",onChange:["onChangeBgHoverColorFieldsSubMenu2"]})]}]}]},{id:"tabBoxShadow",label:Object(M.a)("Shadow"),options:[Object(N.k)({v:e,device:t,choices:"outset",state:"hover",onChangeType:["onChangeBoxShadowType2","onChangeBoxShadowTypeDependencies2"],onChangeHex:["onChangeBoxShadowHexAndOpacity2","onChangeBoxShadowHexAndOpacityPalette2","onChangeBoxShadowHexAndOpacityDependencies2"],onChangePalette:["onChangeBoxShadowPalette2","onChangeBoxShadowPaletteOpacity2","onChangeBoxShadowHexAndOpacityDependencies2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:41,options:[Object(N.m)({v:e,device:t,state:"hover",onChange:["onChangeBoxShadowHexAndOpacity2","onChangeBoxShadowHexAndOpacityPalette2","onChangeBoxShadowHexAndOpacityDependencies2"]})]},{width:59,options:[Object(N.l)({v:e,device:t,state:"hover",choices:"outset",onChange:["onChangeBoxShadowFields2","onChangeBoxShadowFieldsDependencies2"]})]}]}]}]}]},{id:"tabActive",icon:"nc-target",title:Object(M.a)("Active"),options:[{id:"activeSubMenuColorTabs",className:"",type:"tabs-dev",tabs:[{id:"tabText",label:Object(M.a)("Text"),options:[Object(N.n)({v:e,device:t,prefix:"activeSubMenuColor",onChangeHex:["onChangeActiveColorHexSubMenu2"],onChangePalette:["onChangeActiveColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.o)({v:e,device:t,prefix:"activeSubMenuColor",onChange:["onChangeActiveColorFieldsSubMenu2"]})]}]}]},{id:"tabBackground",label:Object(M.a)("Background"),options:[Object(N.b)({v:e,device:t,state:"normal",prefix:"activeSubMenuBg",showSelect:!1,onChangeHex:["onChangeBgActiveColorHexSubMenu2"],onChangePalette:["onChangeBgActiveColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:30,options:[Object(N.c)({v:e,device:t,state:"normal",prefix:"activeSubMenuBg",onChange:["onChangeBgActiveColorFieldsSubMenu2"]})]}]}]},{id:"tabBoxShadow",label:Object(M.a)("Shadow"),options:[Object(N.k)({v:e,device:t,choices:"outset",state:"active",onChangeType:["onChangeBoxShadowType2","onChangeBoxShadowTypeDependencies2"],onChangeHex:["onChangeBoxShadowHexAndOpacity2","onChangeBoxShadowHexAndOpacityPalette2","onChangeBoxShadowHexAndOpacityDependencies2"],onChangePalette:["onChangeBoxShadowPalette2","onChangeBoxShadowPaletteOpacity2","onChangeBoxShadowHexAndOpacityDependencies2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:41,options:[Object(N.m)({v:e,device:t,state:"active",onChange:["onChangeBoxShadowHexAndOpacity2","onChangeBoxShadowHexAndOpacityPalette2","onChangeBoxShadowHexAndOpacityDependencies2"]})]},{width:59,options:[Object(N.l)({v:e,device:t,state:"active",choices:"outset",onChange:["onChangeBoxShadowFields2","onChangeBoxShadowFieldsDependencies2"]})]}]}]}]}]}]}]},{id:"advancedSettings",type:"advancedSettings",roles:["admin"],position:110,icon:"nc-cog",title:Object(M.a)("Settings")}]}function K({v:e,device:t,state:o}){const n=n=>Object(A.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:a}=Object(D.d)(n("mMenuColorHex"),n("mMenuColorPalette"));return[{id:"mMenuToolbarMenuItem",type:"popover-dev",config:{icon:"nc-star",title:Object(M.a)("Icon")},position:20,options:[{id:"mMenuIconSize",type:"slider-dev",label:Object(M.a)("Size"),roles:["admin"],position:20,config:{min:0,max:100,units:[{title:"%",value:"%"}]}},{id:"mMenuIconSpacing",type:"slider-dev",label:Object(M.a)("Spacing"),roles:["admin"],position:30,config:{min:0,max:100,units:[{title:"%",value:"%"}]}}]},{id:"mMenuToolbarTypography",type:"popover-dev",config:{icon:"nc-font",title:Object(M.a)("Typography"),size:t===V.a?"large":"auto"},roles:["admin"],position:70,options:[{id:"mMenu",type:"typography-dev",config:{fontFamily:t===V.a}}]},{id:"mMenuToolbarColor",type:"popover-dev",config:{size:"auto",title:Object(M.a)("Colors"),icon:{style:{backgroundColor:Object(I.c)(a,e.mMenuColorOpacity)}}},position:80,roles:["admin"],options:[{id:"mMenuColor",type:"tabs-dev",config:{position:"left"},tabs:[{id:"tabNormal",icon:"nc-circle",title:Object(M.a)("Normal"),options:[{id:"mMenuColorTabs",className:"",type:"tabs-dev",tabs:[{id:"tabText",label:Object(M.a)("Text"),options:[Object(N.n)({v:e,device:t,prefix:"mMenuColor",state:"normal",onChangeHex:["onChangeColorHexMMenu2"],onChangePalette:["onChangeColorPaletteMMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.o)({v:e,device:t,prefix:"mMenuColor",state:"normal",onChange:["onChangeColorFieldsMMenu2"]})]}]}]},{id:"tabBackground",label:Object(M.a)("Background"),options:[Object(N.b)({v:e,device:t,state:"normal",prefix:"mMenuBg",showSelect:!1,onChangeHex:["onChangeBgColorHexMMenu2"],onChangePalette:["onChangeBgColorPaletteMMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:30,options:[Object(N.c)({v:e,device:t,state:"normal",prefix:"mMenuBg",onChange:["onChangeBgColorFieldsMMenu2"]})]}]}]},{id:"tabBorder",label:Object(M.a)("Border"),options:[Object(N.f)({v:e,device:t,state:"normal",prefix:"mMenu",showSelect:!1,onChangeHex:["onChangeBorderColorHexMMenu2"],onChangePalette:["onChangeBorderColorPaletteMMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:38,options:[Object(N.g)({v:e,device:t,prefix:"mMenu",state:"normal",onChange:["onChangeBorderColorFieldsMMenu2"]})]}]}]}]}]},{id:"tabHover",icon:"nc-hover",title:Object(M.a)("Hover"),options:[{id:"mMenuColorTabs",className:"",config:{showSingle:!0},type:"tabs-dev",tabs:[{id:"tabText",label:Object(M.a)("Text"),options:[Object(N.n)({v:e,device:t,prefix:"mMenuHoverColor",onChangeHex:["onChangeHoverColorHexMMenu2"],onChangePalette:["onChangeHoverColorPaletteMMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.o)({v:e,device:t,prefix:"mMenuHoverColor",onChange:["onChangeHoverColorFieldsMMenu2"]})]}]}]}]}]},{id:"tabActive",icon:"nc-target",title:Object(M.a)("Active"),options:[{id:"mMenuColorTabs",className:"",config:{showSingle:!0},type:"tabs-dev",tabs:[{id:"tabText",label:Object(M.a)("Text"),options:[Object(N.n)({v:e,device:t,prefix:"activeMMenuColor",onChangeHex:["onChangeActiveColorHexMMenu2"],onChangePalette:["onChangeActiveColorPaletteMMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.o)({v:e,device:t,prefix:"activeMMenuColor",onChange:["onChangeActiveColorFieldsMMenu2"]})]}]}]}]}]}]}]},{id:"mMenuItemHorizontalAlign",type:"toggle-dev",position:100,choices:[{icon:"nc-text-align-left",title:Object(M.a)("Align"),value:"left"},{icon:"nc-text-align-center",title:Object(M.a)("Align"),value:"center"},{icon:"nc-text-align-right",title:Object(M.a)("Align"),value:"right"}]},{id:"mMenuAdvancedSettings",type:"advancedSettings",roles:["admin"],position:110,icon:"nc-cog",title:Object(M.a)("Settings")}]}function q({v:e,device:t,state:o}){return"on"===Object(A.defaultValueValue)({v:e,device:t,state:o,key:"mMenu"})?X({v:e,device:t,state:o}):Y({v:e,device:t,state:o})}function Y({v:e,device:t}){const o="grouped"===e.borderRadiusType;return[{id:"settingsTabs",type:"tabs-dev",config:{align:"start"},devices:"desktop",tabs:[{id:"settingsStyling",label:Object(M.a)("Styling"),icon:"nc-styling",options:[]},{id:"moreSettingsAdvanced",label:Object(M.a)("Advanced"),icon:"nc-cog",options:[]}]},{id:"borderRadiusPicker",type:"group-dev",devices:"desktop",options:[{id:"borderRadiusType",label:Object(M.a)("Corner"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-corners-all"},{value:"ungrouped",icon:"nc-corners-individual"}]},{id:"borderRadius",type:"slider",disabled:!o,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:e.borderRadius},onChange:({value:t},{sliderDragEnd:o})=>({borderRadius:t,borderTopLeftRadius:t,borderTopRightRadius:t,borderBottomLeftRadius:t,borderBottomRightRadius:t,tempBorderRadius:o?t:e.tempBorderRadius,tempBorderTopLeftRadius:t>0&&o?t:e.tempBorderTopLeftRadius,tempBorderTopRightRadius:t>0&&o?t:e.tempBorderTopRightRadius,tempBorderBottomRightRadius:t>0&&o?t:e.tempBorderBottomRightRadius,tempBorderBottomLeftRadius:t>0&&o?t:e.tempBorderBottomLeftRadius})},{id:"borderTopLeftRadius",icon:"nc-corners-top-left",type:"slider",disabled:o,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:e.borderTopLeftRadius},onChange:({value:t},{sliderDragEnd:o})=>({borderTopLeftRadius:t,borderTopRightRadius:t>0?e.tempBorderTopRightRadius:e.borderTopRightRadius,borderBottomLeftRadius:t>0?e.tempBorderBottomLeftRadius:e.borderBottomLeftRadius,borderBottomRightRadius:t>0?e.tempBorderBottomRightRadius:e.borderBottomRightRadius,borderRadius:t===e.borderTopRightRadius&&t===e.borderBottomRightRadius&&t===e.borderBottomLeftRadius?t:e.borderRadius,tempBorderTopLeftRadius:t,tempBorderRadius:o&&t===e.borderTopRightRadius&&t===e.borderBottomRightRadius&&t===e.borderBottomLeftRadius?t:e.tempBorderRadius})},{id:"borderTopRightRadius",icon:"nc-corners-top-right",type:"slider",disabled:o,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:e.borderTopRightRadius},onChange:({value:t},{sliderDragEnd:o})=>({borderTopRightRadius:t,borderTopLeftRadius:t>0?e.tempBorderTopLeftRadius:e.borderTopLeftRadius,borderBottomLeftRadius:t>0?e.tempBorderBottomLeftRadius:e.borderBottomLeftRadius,borderBottomRightRadius:t>0?e.tempBorderBottomRightRadius:e.borderBottomRightRadius,borderRadius:t===e.borderTopLeftRadius&&t===e.borderBottomRightRadius&&t===e.borderBottomLeftRadius?t:e.borderRadius,tempBorderTopRightRadius:t,tempBorderRadius:o&&t===e.borderTopLeftRadius&&t===e.borderBottomRightRadius&&t===e.borderBottomLeftRadius?t:e.tempBorderRadius})},{id:"borderBottomRightRadius",icon:"nc-corners-bottom-right",type:"slider",disabled:o,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:e.borderBottomRightRadius},onChange:({value:t},{sliderDragEnd:o})=>({borderBottomRightRadius:t,borderTopLeftRadius:t>0?e.tempBorderTopLeftRadius:e.borderTopLeftRadius,borderBottomLeftRadius:t>0?e.tempBorderBottomLeftRadius:e.borderBottomLeftRadius,borderTopRightRadius:t>0?e.tempBorderTopRightRadius:e.borderTopRightRadius,borderRadius:t===e.borderTopLeftRadius&&t===e.borderTopRightRadius&&t===e.borderBottomLeftRadius?t:e.borderRadius,tempBorderBottomRightRadius:t,tempBorderRadius:o&&t===e.borderTopLeftRadius&&t===e.borderTopRightRadius&&t===e.borderBottomLeftRadius?t:e.tempBorderRadius})},{id:"borderBottomLeftRadius",icon:"nc-corners-bottom-left",type:"slider",disabled:o,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:e.borderBottomLeftRadius},onChange:({value:t},{sliderDragEnd:o})=>({borderBottomLeftRadius:t,borderTopLeftRadius:t>0?e.tempBorderTopLeftRadius:e.borderTopLeftRadius,borderBottomRightRadius:t>0?e.tempBorderBottomRightRadius:e.borderBottomRightRadius,borderTopRightRadius:t>0?e.tempBorderTopRightRadius:e.borderTopRightRadius,borderRadius:t===e.borderTopLeftRadius&&t===e.borderTopRightRadius&&t===e.borderBottomRightRadius?t:e.borderRadius,tempBorderBottomLeftRadius:t,tempBorderRadius:o&&t===e.borderTopLeftRadius&&t===e.borderTopRightRadius&&t===e.borderBottomRightRadius?t:e.tempBorderRadius})}]},Object(N.ob)({v:e,device:t,prefix:"menu",state:"normal",onChangeGrouped:["onChangePaddingGrouped"],onChangeUngrouped:["onChangePaddingUngrouped"]})]}function X({v:e,device:t}){return[Object(N.ob)({v:e,device:t,prefix:"mMenu",state:"normal",onChangeGrouped:["onChangePaddingGrouped"],onChangeUngrouped:["onChangePaddingUngrouped"]})]}const Z=g.a.get("menuData");function J({v:e,device:t,state:o}){const n=e=>Object(A.defaultValueKey)({key:e,device:t}),a=o=>Object(A.defaultValueValue)({v:e,key:o,device:t}),r=(()=>{const e=Z.map(({id:e,name:t})=>({title:t,value:e}));return e.length?e:[{title:"-",value:"-"}]})(),i=r.some(({value:t})=>t===e.menuSelected),{hex:l}=Object(D.d)(a("mMenuIconColorHex"),a("mMenuIconColorPalette")),s=Object(I.c)(l,"desktop"===t?e.mMenuIconColorOpacity:"tablet"===t?Object(A.tabletSyncOnChange)(e,"mMenuIconColorOpacity"):Object(A.mobileSyncOnChange)(e,"mMenuIconColorOpacity")),c="desktop"===t?["onChangeColorHexIconMenu2","onChangeColorPaletteIconMenu2","onChangeColorFieldsIconMenu2"]:"tablet"===t?["onChangeTabletColorHexIconMMenu2","onChangeTabletColorPaletteIconMMenu2","onChangeTabletColorFieldsIconMMenu2"]:["onChangeMobileColorHexIconMMenu2","onChangeMobileColorPaletteIconMMenu2","onChangeMobileColorFieldsIconMMenu2"];return[{id:"toolbarMenu",type:"popover-dev",config:{icon:"nc-menu-3",title:Object(M.a)("Menu")},roles:["admin"],position:10,options:[{id:"menuSelected",type:"select",devices:"desktop",position:10,label:Object(M.a)("Menu"),choices:i?r:[{title:Object(M.a)("Select a Menu"),value:"-"},...r],value:i?e.menuSelected:"-",onChange:e=>{if("-"!==e)return{menuSelected:e}}},{id:"groupSettings",type:"group-dev",position:20,options:[{id:"mMenu",type:"switch-dev",label:Object(M.a)("Make it Hamburger")},{id:"mMenuSize",type:"slider-dev",label:Object(M.a)("Size"),disabled:"on"!==a("mMenu"),config:{min:8,max:64,units:[{title:"px",value:"px"}]}}]},{id:"verticalMode",label:Object(M.a)("Orientation"),type:"radioGroup-dev",position:30,disabled:"on"===e.mMenu,choices:[{value:"vertical",icon:"nc-vertical-items"},{value:"horizontal",icon:"nc-horizontal-items"}]},{id:"mMenuPosition",label:Object(M.a)("Drawer Position"),type:"radioGroup",disabled:"off"===a("mMenu"),position:40,choices:[{value:"left",icon:"nc-align-left"},{value:"right",icon:"nc-align-right"}],value:e.mMenuPosition},{id:n("itemPadding"),type:"slider",label:Object(M.a)("Spacing"),roles:["admin"],position:50,slider:{min:0,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},disabled:1===e.items.length||"on"===a("mMenu"),value:{value:a("itemPadding")},onChange:({value:e})=>({[n("itemPadding")]:e,[n("itemPaddingRight")]:e,[n("itemPaddingLeft")]:e})}]},{id:"mMenuColors",type:"popover-dev",config:{size:"auto",title:Object(M.a)("Color"),icon:{style:{backgroundColor:s}}},position:20,disabled:"off"===a("mMenu"),options:[Object(N.n)({v:e,device:t,state:o,prefix:n("mMenuIconColor"),onChangeHex:[c[0]],onChangePalette:[c[1]]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.o)({v:e,device:t,state:o,prefix:n("mMenuIconColor"),onChange:[c[2]]})]}]}]}]}const Q=Object(M.a)("Menu");function ee(){return[{id:"settingsTabs",type:"tabs-dev",config:{align:"start"},devices:"desktop",tabs:[{id:"moreSettingsAdvanced",label:Object(M.a)("Advanced"),icon:"nc-cog",options:[{id:"customCSS",label:Object(M.a)("Custom CSS"),type:"codeMirror-dev",position:45,display:"block",devices:"desktop",helper:{content:'\n<p class="brz-p">You can use the following selectors to create targeted CSS.</p>\n<p class="brz-p">\n <span class="brz-span brz-ed-tooltip__overlay-code">element</span> {...}\n <br class="brz-br">\n <span class="brz-span brz-ed-tooltip__overlay-code">element .child-element</span> {...}\n</p>'},placeholder:"element { CSS goes here }"}]}]}]}function te(e,t,o){return Object(_.renderStyles)({v:e,vs:t,vd:o,styles:{".brz &&:hover .brz-mm-menu__icon":{interval:["cssStyleElementMenuShowIcon","cssStyleElementMMenuSize","cssStyleElementMMenuIconColor"]},".brz &&:hover .brz-menu":{interval:["cssStyleElementMenuShow"]}}})}var oe=o(4),ne=o(42),ae=o(36);function re(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ie(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?re(Object(o),!0).forEach((function(t){Object(c.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):re(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const le=g.a.get("pro");class se extends f.a{constructor(...e){super(...e),Object(c.a)(this,"nodeRef",u.a.createRef()),Object(c.a)(this,"mMenu",null),Object(c.a)(this,"handleChange",()=>{this.forceUpdate()}),Object(c.a)(this,"getNode",()=>this.nodeRef.current),Object(c.a)(this,"handleTextChange",e=>{this.patchValue({mMenuTitle:e})}),Object(c.a)(this,"openMMenu",()=>{var e;const t=this.getMMenu();!this.mMenu&&t&&this.initMMenu();const o=null===(e=this.mMenu)||void 0===e?void 0:e.API;o&&o.open()}),Object(c.a)(this,"closeMMenu",()=>{var e;const t=null===(e=this.mMenu)||void 0===e?void 0:e.API;t&&t.close()})}static get componentId(){return"Menu"}getMeta(e){const{meta:t}=this.props,o=Object(oe.mb)({v:e,device:V.a}),n=Object(oe.mb)({v:e,device:V.c}),a=Object(oe.mb)({v:e,device:V.b}),r="on"===o?ne.d:t.desktopW,i="on"===o?ne.d:t.desktopWNoSpacing,l="on"===n?ne.d:t.tabletW,s="on"===n?ne.d:t.tabletWNoSpacing,c="on"===a?ne.d:t.mobileW,d="on"===a?ne.d:t.mobileWNoSpacing;return ie(ie({},t),{},{desktopW:r,desktopWNoSpacing:i,tabletW:l,tabletWNoSpacing:s,mobileW:c,mobileWNoSpacing:d})}getDeviceMode(){return Object(H.b)().getState().ui.deviceMode}hasMMenu(){const e=this.getValue();const t=this.getDeviceMode();return"on"===Object(oe.mb)({v:e,device:t})}componentDidMount(){v.a.on("deviceMode.change",this.handleChange);const e=this.makeToolbarPropsFromConfig2(r,i,{allowExtend:!1,allowExtendFromThirdParty:!0});this.props.extendParentToolbar(e),this.hasMMenu()&&this.initMMenu()}componentWillUpdate({dbValue:e}){const{mMenuPosition:t,menuSelected:o}=this.getValue();(e.menuSelected&&e.menuSelected!==o||e.mMenuPosition&&e.mMenuPosition!==t)&&this.destroyMMenu()}componentDidUpdate(){this.hasMMenu()?this.initMMenu():this.destroyMMenu()}componentWillUnmount(){this.hasMMenu()&&this.destroyMMenu(),v.a.off("deviceMode.change",this.handleChange)}getDefaultValue(){return ie(ie({},super.getDefaultValue()),{},{symbols:{}})}getDBValue(){const e=g.a.get("menuData");if(0===e.length)return ie(ie({},this.props.dbValue),{},{items:[]});const{menuSelected:t=null,symbols:o={}}=this.props.dbValue||{},n=t||e[0].id,a=e.find(e=>e.id===n);return a&&0!==a.items.length?(void 0===this.menuItemsCache&&(this.menuItemsCache={}),void 0===this.menuItemsCache[n]&&(this.menuItemsCache[n]=de(a.items)),ie(ie({},this.props.dbValue),{},{menuSelected:n,items:ue(this.menuItemsCache[n],o)})):ie(ie({},this.props.dbValue),{},{items:[]})}handleValueChange(e,t){const{items:o}=e,n=Object(s.a)(e,["items"]);t.patch.items&&(n.symbols=ie(ie({},e.symbols),pe(o))),super.handleValueChange(n,t)}renderMMenuTitle(e){const{mMenuTitle:t}=e;return u.a.createElement("li",{className:"brz-mm-navbar"},u.a.createElement("a",{className:"brz-a brz-mm-navbar__title"},u.a.createElement(j.a,{value:t,onChange:this.handleTextChange})))}renderMenu(e,t,o,r){const{className:i,items:l}=e,s=this.hasMMenu()&&!!r,c=this.makeSubcomponentProps({bindWithKey:"items",itemProps:{mMenu:s,meta:this.getMeta(e),mods:{[V.a]:Object(oe.Bb)({v:e,device:V.a}),[V.c]:Object(oe.Bb)({v:e,device:V.c}),[V.b]:Object(oe.Bb)({v:e,device:V.b})},getParent:this.getNode,toolbarExtend:this.makeToolbarPropsFromConfig2(n,a,{allowExtend:!1})}}),d=h()("brz-menu",{"brz-menu__mmenu":s,"brz-menu--has-dropdown":s&&l.some(({value:{items:e}})=>e.length)},"brz-menu__editor",i,Object(_.css)(""+this.constructor.componentId,""+this.getId(),function(e,t,o){return Object(_.renderStyles)({v:e,vs:t,vd:o,styles:{".brz &&:hover":{interval:["cssStyleTypography2FontSize","cssStyleTypography2FontWeight","cssStyleTypography2LineHeight","cssStyleTypography2LetterSpacing"],standart:["cssStyleTypography2FontFamily","cssStyleColor"]},".brz && .brz-menu__ul:not(.brz-mm-listview)":{standart:["cssStyleElementMenuMode","cssStyleElementMenuSize","cssStyleElementMMenuListViewMargin"]},".brz && .brz-menu__ul > .brz-menu__item > .brz-a:hover":{standart:["cssStyleColor","cssStyleElementMenuLinkBgColor","cssStyleElementMenuPadding"]},".brz && .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a:hover":{standart:["cssStyleElementMenuActiveColor","cssStyleElementMenuActiveLinkBgColor"]},".brz && .brz-menu__ul > .brz-menu__item.brz-menu__item--opened:hover":{standart:["cssStyleElementMenuActiveColor","cssStyleElementMenuActiveBgColor","cssStyleElementMenuActiveBorder"]},".brz && .brz-menu__ul > .brz-menu__item.brz-menu__item--current:hover":{standart:["cssStyleElementMenuCurrentColor","cssStyleElementMenuCurrentBgColor","cssStyleElementMenuCurrentBorder"]},".brz && .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:hover":{standart:["cssStyleElementMenuCurrentColor","cssStyleElementMenuCurrentLinkBgColor"]},".brz &&:hover > .brz-ed-border":{interval:["cssStyleVisibleEditorDisplayNoneOrBlock|||editor"]},".brz &&:hover .brz-menu__item__icon":{interval:["cssStyleElementMenuIconSize"],standart:["cssStyleElementMenuIconSpacing"]},".brz && .brz-menu__ul > .brz-menu__item:hover":{standart:["cssStyleElementMenuBgColor","cssStyleElementMenuBorder"],interval:["cssStyleElementMMenuItemPadding"]},".brz && .brz-menu__ul > .brz-menu__item:first-child":{interval:["cssStyleElementMMenuItemPaddingTopZero"]},".brz && .brz-menu__ul > .brz-menu__item:last-child":{interval:["cssStyleElementMMenuItemPaddingBottomZero"]},".brz && .brz-mm-menu__item":{interval:["cssStyleElementMMenuFontSize","cssStyleElementMMenuFontWeight","cssStyleElementMMenuLineHeight","cssStyleElementMMenuLetterSpacing"],standart:["cssStyleElementMMenuFontFamily","cssStyleElementMMenuColor","cssStyleElementMMenuBorderColor"]},".brz &&.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text":{standart:["cssStyleElementMMenuPadding"]},".brz &&:hover .brz-mm-menu__item:hover > .brz-mm-listitem__text":{standart:["cssStyleElementMMenuHoverColor"]},".brz &&:hover .brz-mm-menu__item .brz-a":{interval:["cssStyleElementMMenuItemHorizontalAlign"]},".brz &&:hover .brz-mm-menu__item__icon":{interval:["cssStyleElementMMenuIconSpacing","cssStyleElementMMenuIconSize"]},".brz && .brz-mm-navbar":{interval:["cssStyleElementMMenuFontFamily","cssStyleElementMMenuFontSize","cssStyleElementMMenuFontWeight","cssStyleElementMMenuLineHeight","cssStyleElementMMenuLetterSpacing","cssStyleElementMMenuBorderColor"],standart:["cssStyleElementMMenuColor"]},".brz &&:hover .brz-mm-menu__item.brz-mm-listitem_opened":{standart:["cssStyleElementMMenuColor"]},".brz &&:hover.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next":{interval:["cssStyleElementMMenuBtnNext"]},".brz &&.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz &&:hover .brz-mm-panels > .brz-mm-panel":{standart:["cssStyleElementMMenuBackgroundColor"]},".brz &&.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after":{standart:["cssStyleElementMMenuBorderColor"]},".brz &&:hover .brz-mm-listitem":{standart:["cssStyleElementMMenuBorderColor"]},".brz && .brz-mm-menu__item.brz-mm-menu__item--current":{standart:["cssStyleElementMMenuActiveColor"]},".brz:hover && .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text":{standart:["cssStyleElementMMenuActiveColor"]},".brz &&:hover .brz-menu__sub-menu":{interval:["cssStyleElementMenuSubMenuFontSize","cssStyleElementMenuSubMenuFontWeight","cssStyleElementMenuSubMenuLineHeight","cssStyleElementMenuSubMenuLetterSpacing"],standart:["cssStyleElementMenuSubMenuFontFamily","cssStyleElementMenuSubMenuColor","cssStyleBoxShadow","cssStyleBorderRadius"]},".brz &&:hover .brz-menu__sub-menu .brz-a:hover":{standart:["cssStyleElementMenuSubMenuHoverColor"]},".brz &&:hover .brz-menu__sub-item__icon":{standart:["cssStyleElementMenuSubMenuIconSpacing","cssStyleElementMenuSubMenuIconSize"]},".brz &&:hover .brz-menu__item-dropdown .brz-menu__item--current .brz-a":{standart:["cssStyleElementMenuSubMenuCurrentColor"]},".brz &&:hover .brz-menu__item-dropdown .brz-menu__item--current":{standart:["cssStyleElementMenuSubMenuCurrentBgColor"]},".brz &&:hover .brz-menu__item-dropdown .brz-menu__item--current:hover":{standart:["cssStyleElementMenuSubMenuCurrentBgColor"]},".brz &&:hover .brz-menu__item--current .brz-menu__sub-menu":{standart:["cssStyleElementMenuSubMenuCurrentBoxShadow"]},".brz &&:hover .brz-menu__item-dropdown .brz-menu__item":{standart:["cssStyleElementMenuSubMenuBgColor"]},".brz &&:hover .brz-menu__item-dropdown .brz-menu__item:hover":{standart:["cssStyleElementMenuSubMenuHoverBgColor"]},".brz &&:hover .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after":{standart:["cssStyleElementMenuSubMenuBorderColor"]},".brz &&:hover .brz-menu__dropdown > .brz-menu__item":{standart:["cssStyleElementMenuSubMenuBorderBottom"]},".brz && .brz-menu__dropdown":{interval:["cssStyleMenuDropdownPosition"]},".brz && .brz-menu__dropdown-left":{interval:["cssStyleMenuDropdownPositionLeft"]},".brz && .brz-menu__dropdown-right":{interval:["cssStyleMenuDropdownPositionRight"]},".brz && .brz-menu__dropdown-left:before":{interval:["cssStyleMenuDropdownBeforePositionLeft"]},".brz && .brz-menu__dropdown-right:before":{interval:["cssStyleMenuDropdownBeforePositionRight"]},".brz &&:hover > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown":{interval:["cssStyleMenuFirstDropdownPosition"]},".brz &&:hover > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left":{interval:["cssStyleMenuFirstDropdownPositionLeft"]},".brz &&:hover > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right":{interval:["cssStyleMenuFirstDropdownPositionRight"]},".brz &&:hover > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:before":{interval:["cssStyleMenuFirstDropdownBeforePositionLeft"]},".brz &&:hover > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:before":{interval:["cssStyleMenuFirstDropdownBeforePositionRight"]},".brz &&:hover .brz-menu__item-dropdown .brz-menu__dropdown":{interval:["cssStyleElementMenuDropdown"]},".brz &&:hover .brz-menu__item.brz-menu__item--opened > .brz-menu__dropdown":{interval:["cssStyleElementMenuDropdownOpened"]},".brz &&.brz-menu__preview:hover .brz-menu__item:hover > .brz-menu__sub-menu":{interval:["cssStyleElementMenuDropdownOpened"]},".brz &&:hover .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after":{interval:["cssStyleElementMenuDropdownArrow"]},".brz &&:hover .brz-menu__dropdown .brz-menu__item-dropdown .brz-menu__dropdown":{interval:["cssStyleElementMenuInnerDropdown"]},".brz &&:hover .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown":{interval:["cssStyleElementMenuDropdownInnerOpened"]},".brz &&.brz-menu__preview:hover .brz-menu__dropdown .brz-menu__item:hover > .brz-menu__sub-menu":{interval:["cssStyleElementMenuDropdownInnerOpened"]},".brz && .brz-mega-menu__dropdown":{interval:["cssStyleElementMegaMenuOpened"]},".brz &&.brz-menu__preview:hover .brz-menu__item:hover > .brz-mega-menu__portal":{interval:["cssStyleElementMenuDropdownOpened"]},".brz &&:hover .brz-menu__item-mega-menu .brz-mega-menu__portal":{interval:["cssStyleElementMenuDropdown"]}}})}(e,t,o)),s&&this.getMMenuClassNames());return u.a.createElement("nav",{id:r,className:d},u.a.createElement("ul",{className:"brz-menu__ul"},s&&this.renderMMenuTitle(e),u.a.createElement(O.a,c)))}renderMMenu(e,t,o){const{menuSelected:n,mMenuPosition:a}=e;return u.a.createElement(u.a.Fragment,null,u.a.createElement(C.a,{key:`${n}-${a}`,node:document.body,className:"brz-ed-mmenu-portal"},u.a.createElement("div",{className:"brz-ed-mmenu-portal__menu brz-d-none"},this.renderMenu(e,t,o,this.getId()))),u.a.createElement("div",{className:"brz-mm-menu__icon",onClick:this.openMMenu},u.a.createElement(S.a,{name:"menu-3",type:"editor"})))}renderErrors(e){const t=g.a.get("menuData");let o;if(0===t.length){const e=g.a.get("urls").dashboardNavMenu;o=u.a.createElement(u.a.Fragment,null,u.a.createElement("a",{className:"brz-a",href:e,target:"_blank",rel:"noopener noreferrer"},Object(M.a)("Create a menu")),Object(M.a)("in your WordPress admin"))}if(!o){t.find(t=>t.id===e.menuSelected)||(o=Object(M.a)("Select a menu from the element options"))}return o&&u.a.createElement("div",{className:"brz-menu__error"},o)}renderForEdit(e,t,o){const n=this.renderErrors(e);if(n)return n;const a=h()("brz-menu__container",Object(_.css)(this.constructor.componentId+"-menu",this.getId()+"-menu",te(e,t,o)));return u.a.createElement(B.a,{exceptions:[".brz-ed-toolbar",".brz-ed-tooltip__content-portal",".brz-ed-sidebar__right",".brz-menu",".brz-menu__container",".brz-ed-fixed"],onClickOutside:this.closeMMenu},u.a.createElement(y.a,{selectorName:this.getId(),css:e.customCSS},u.a.createElement(R.b,this.makeContextMenuProps(L),u.a.createElement(ae.a,this.makeWrapperProps({className:a,ref:this.nodeRef}),this.hasMMenu()?this.renderMMenu(e,t,o):this.renderMenu(e,t,o)))))}renderForView(e,t,o){if(this.renderErrors(e))return null;const{mMenuTitle:n,mMenuPosition:a}=e,r=this.hasMMenu(),i=r?{"data-mmenu-id":"#"+this.getId(),"data-mmenu-position":"position-"+a,"data-mmenu-title":n}:{},s=h()("brz-menu__container",Object(_.css)(this.constructor.componentId+"-menu",this.getId()+"-menu",te(e,t,o)));return u.a.createElement(y.a,{selectorName:this.getId(),css:e.customCSS},u.a.createElement("div",Object(l.a)({className:s},i),this.renderMenu(e,t,o),r&&u.a.createElement(u.a.Fragment,null,u.a.createElement("div",{className:"brz-mm-menu__icon"},u.a.createElement(S.a,{name:"menu-3",type:"editor"})),le&&this.renderMenu(e,t,o,this.getId()))))}getMMenu(){return Object(F.b)("getLibs",{}).MMenu}initMMenu(){const e=this.getMMenu(),{items:t=[],mMenuPosition:o}=this.getValue();if(this.mMenu||!e||0===t.length)return;const n={navbar:{add:!1},extensions:["theme-dark","pagedim-black","border-full","position-front","position-"+o],slidingSubmenus:!1};this.mMenu=new e("#"+this.getId(),n,{offCanvas:{menu:{insertSelector:"#brz-ed-root"},page:{wrapIfNeeded:!1,selector:"#brz-ed-root"}}})}destroyMMenu(){this.mMenu&&(this.mMenu.node.menu.remove(),this.mMenu=null)}getMMenuClassNames(){var e;if(!(null===(e=this.mMenu)||void 0===e?void 0:e.node))return"";let t=[];return this.mMenu.node.menu.classList.forEach(e=>{/brz-mm-menu/.test(e)&&t.push(e)}),t}}Object(c.a)(se,"defaultValue",W),Object(c.a)(se,"defaultProps",{extendParentToolbar:p.default.noop,meta:{}});const ce=["id","title","url","target","items","megaMenuItems","attrTitle","classes","current"];function de(e){return Object(x.q)(Object(x.p)(({type:e,value:t})=>({type:e,value:p.default.pick(t,ce)}),e))}function ue(e,t){return e.map(e=>Object(b.a)(e,o=>{if(Object.assign(o.value,t[e.value.id]),!o.value.megaMenuItems){const e=Object(x.q)({type:"SectionMegaMenu",value:{items:[]}});o.value.megaMenuItems=[e]}o.value.items=ue(e.value.items,t)}))}function pe(e){return e.reduce((e,t)=>ie(ie({},e),{},{[t.value.id]:p.default.omit(t.value,[...ce.filter(e=>"megaMenuItems"!==e),"_id"])},t.value.items.length>0?pe(t.value.items):{}),{})}},function(e,t,o){"use strict";o.d(t,"b",(function(){return d}));var n=o(2),a=o(8),r=o(0),i=o.n(r),l=o(5),s=o.n(l),c=o(152);o.d(t,"a",(function(){return c.a}));class d extends i.a.Component{constructor(...e){super(...e),Object(n.a)(this,"state",{currentValue:this.props.defaultValue}),Object(n.a)(this,"onItemClick",e=>{this.setState({currentValue:e}),this.props.onChange(e)}),Object(n.a)(this,"getCurrent",()=>a.default.find(this.props.children,e=>e.props.value===this.state.currentValue)||this.props.children[0])}componentWillReceiveProps(e){this.state.defaultValue!==e.defaultValue&&this.setState({currentValue:e.defaultValue})}renderOptions(){return i.a.Children.map(this.props.children,(e,t)=>i.a.cloneElement(e,{key:t,active:this.state.currentValue===e.props.value,name:this.props.name,onClick:e.props.disabled?null:this.onItemClick.bind(null,e.props.value)}))}renderForEdit(){const{className:e,name:t,currentValue:o}=this.props,n=s()("brz-control__radio",e);return i.a.createElement("div",{className:n},this.renderOptions(),i.a.createElement("input",{className:"brz-input",name:t,type:"hidden",value:o}))}renderForView(){const e=s()("brz-control__radio",this.props.className);return i.a.createElement("div",{className:e},this.renderOptions())}render(){return this.renderForEdit()}}Object(n.a)(d,"defaultProps",{name:"defaultName",defaultValue:"",onChange:a.default.noop})},function(e,t,o){"use strict";o.d(t,"a",(function(){return a})),o.d(t,"b",(function(){return r}));var n=o(17);const a=()=>n.a.get("user").isAuthorized?"connected":(()=>{switch(localStorage.getItem("brz-authorized")){case"pending":return"pending";case"connected":return"connected";default:return"disconnect"}})(),r=e=>{(e=>{localStorage.setItem("brz-authorized",e)})(e)}},function(e,t,o){"use strict";o.d(t,"a",(function(){return r})),o.d(t,"c",(function(){return i})),o.d(t,"b",(function(){return s}));var n=o(17),a=o(47);function r(e){const t=n.a.get("urls").editorIcons;return t?`${t}/icons.svg#${e}`:Object(a.a)("editor/icons/icons.svg#"+e)}function i(e,t){const o=n.a.get("urls").templateIcons;return o?`${o}/${e}/${t}.txt`:Object(a.a)(`editor/icons/${e}/${t}.txt`)}var l=o(428);function s(e,t){const o={1:`<svg viewBox="0 0 1920 200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 .023L0 200V0h1920z" fill="${n=t}" fill-rule="nonzero"/></svg>`,2:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M0 200V0h1920z"/><path opacity=".251" d="M0 240V0h1920L137.195 222.85z"/></g></svg>`,3:`<svg viewBox="0 0 1920 200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 200L1374.256 11.518 0 200V0h1920z" fill="${n}" fill-rule="nonzero"/></svg>`,4:`<svg viewBox="0 0 1920 250" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path opacity=".25" d="M1920 240L1374.256 11.518 0 250V0h1920z"/><path d="M1920 200L1374.256 11.518 0 200V0h1920z"/></g></svg>`,5:`<svg viewBox="0 0 1920 69" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 32.332L1872.003 69l-47.999-36.668L1776.008 69l-47.997-36.668-48 36.668-47.998-36.668L1584.016 69l-47.997-36.668L1488.02 69l-47.999-36.668L1392.022 69l-48-36.668-48 36.668-48-36.668L1200.025 69l-47.999-36.668-48 36.668-48-36.668-48 36.668-48-36.668L912.027 69l-48-36.668L816.032 69l-47.997-36.668L720.033 69l-47.998-36.668-48 36.668-47.998-36.668L528.04 69l-48-36.668L432.036 69l-48.004-36.668-48 36.668-48.005-36.668-48 36.668-48.003-36.668L144.02 69 96.018 32.332 48.01 69 0 32.332V0h1920z" fill="${n}" fill-rule="nonzero"/></svg>`,6:`<svg viewBox="0 0 1919 100" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1865.687 100c-26.657 0-26.657-33.314-53.315-33.314-26.654 0-26.654 33.314-53.308 33.314s-26.654-33.314-53.31-33.314c-26.653 0-26.653 33.314-53.306 33.314s-26.653-33.314-53.306-33.314c-26.655 0-26.655 33.314-53.31 33.314-26.652 0-26.652-33.314-53.305-33.314-26.654 0-26.654 33.314-53.31 33.314-26.653 0-26.653-33.314-53.307-33.314-26.652 0-26.652 33.314-53.305 33.314-26.652 0-26.652-33.314-53.304-33.314-26.651 0-26.651 33.314-53.303 33.314-26.653 0-26.653-33.314-53.305-33.314-26.65 0-26.65 33.314-53.301 33.314-26.653 0-26.653-33.314-53.307-33.314-26.65 0-26.65 33.314-53.301 33.314-26.654 0-26.654-33.314-53.306-33.314-26.652 0-26.653 33.314-53.305 33.314s-26.653-33.314-53.305-33.314S826.216 100 799.564 100c-26.654 0-26.654-33.314-53.306-33.314-26.652 0-26.652 33.314-53.304 33.314-26.653 0-26.653-33.314-53.306-33.314-26.652 0-26.652 33.314-53.304 33.314-26.653 0-26.653-33.314-53.304-33.314-26.65 0-26.652 33.314-53.304 33.314s-26.652-33.314-53.305-33.314S399.778 100 373.126 100c-26.653 0-26.653-33.314-53.306-33.314-26.652 0-26.652 33.314-53.304 33.314s-26.652-33.314-53.304-33.314c-26.651 0-26.651 33.314-53.302 33.314s-26.651-33.314-53.303-33.314c-26.65 0-26.65 33.314-53.302 33.314C26.652 100 26.652 66.686 0 66.686V0h1919.003L1919 66.686c-26.657 0-26.657 33.314-53.314 33.314z" fill="${n}" fill-rule="nonzero"/></svg>`,7:`<svg viewBox="0 0 1920 200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 111.22c39.924 57.863 43.635-81.12 86.057-49.377 22.96 17.18 28.423 139.795 63.67 131.577 29.69-6.92 46.923-44.683 62.128-71.756 31.87-50.039 80.334 24.686 134.72 4.477 43.687-16.232 35.42-36.266 70.842-.398 38.085 38.563 65.343-59.381 92.63-51.265 52.535 15.626 66.523 175.912 107.386 83.442 21.395-48.414 68.874-121.81 103.424-45.875 45.148 99.23 54.337 15.01 73.935-36.992 27.286-72.402 47.559 50.828 90.996 61.402 25.52 6.212 43.74-24.442 56.396-47.275 50.19-67.647 72.223 38.517 105.804 42.913 33.582 4.395 43.952-40.933 78.17-31.257 38.657 10.932 44.729 99.625 75.705 98.585 32.066-1.077 10.475-113.292 58.263-131.984 37.054-14.492 44.996 46.504 87.28 45.715 42.285-.789 53.14-137.725 95.082-44.886 9.373 20.75 16.322 103.621 43.433 109.406 35.063 7.48 43.86-81.364 90.923-81.714 68.327 5.077 61.933 82.101 96.71 70.335 29.87-10.106 49.187-131.546 72.779-122.802 26.43 9.797 29.214 119.883 77.916 70.624 23.122-23.385 34.37-82.184 69.35-36.356 21.163 27.726 4.003 7.799 26.401 35.202V0H0v111.22z" fill="${n}" fill-rule="nonzero"/></svg>`,8:`<svg viewBox="0 0 1920 200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M0 111.22c39.924 57.863 43.635-81.12 86.057-49.377 22.96 17.18 28.423 139.795 63.67 131.577 29.69-6.92 46.923-44.683 62.128-71.756 31.87-50.039 80.334 24.686 134.72 4.477 43.687-16.232 35.42-36.266 70.842-.398 38.085 38.563 65.343-59.381 92.63-51.265 52.535 15.626 66.523 175.912 107.386 83.442 21.395-48.414 68.874-121.81 103.424-45.875 45.148 99.23 54.337 15.01 73.935-36.992 27.286-72.402 47.559 50.828 90.996 61.402 25.52 6.212 43.74-24.442 56.396-47.275 50.19-67.647 72.223 38.517 105.804 42.913 33.582 4.395 43.952-40.933 78.17-31.257 38.657 10.932 44.729 99.625 75.705 98.585 32.066-1.077 10.475-113.292 58.263-131.984 37.054-14.492 44.996 46.504 87.28 45.715 42.285-.789 53.14-137.725 95.082-44.886 9.373 20.75 16.322 103.621 43.433 109.406 35.063 7.48 43.86-81.364 90.923-81.714 68.327 5.077 61.933 82.101 96.71 70.335 29.87-10.106 49.187-131.546 72.779-122.802 26.43 9.797 29.214 119.883 77.916 70.624 23.122-23.385 34.37-82.184 69.35-36.356 21.163 27.726 4.003 7.799 26.401 35.202V0H0v111.22z"/><path d="M1920 111.22c-39.924 57.863-113.614-125.271-101.202-93.282C1832 51.96 1784.872 112.96 1758 112.96s-60.795-67.95-76-95.023c-31.87-50.04-69.614 138.725-124 118.517-43.688-16.233-19.995-46.58-55.417-10.712-38.085 38.563-65.343-59.381-92.63-51.265-52.535 15.626-70.09 139.656-110.953 47.186-21.395-48.414-65.307-56.142-99.857 19.793-16.433 36.118-28.102 47.932-37.243 45.841-15.973-3.652-24.227-49.759-36.692-82.834-27.286-72.4-47.559 21.417-90.996 31.99-25.52 6.213-43.74-24.44-56.396-47.274-50.19-67.647-75.234 42.88-108.816 47.275-33.582 4.395-40.94-45.295-75.159-35.619-38.656 10.932-35.865 78.636-66.841 77.595-32.066-1.077-19.338-92.302-67.126-110.994C622.82 52.945 610.284 172.357 568 171.57c-42.285-.79-33-144.118-70-104.132-19.133 20.677-28.889 84.699-56 90.483-35.063 7.48-59.936-56.734-107-57.084-68.327 5.078-56.327 40.621-95 40.621s-48.408-37.24-72-28.496c-26.431 9.796-25.751 94.007-62 36.554-14.795-23.45-44.62-117.584-79.6-71.756C5.239 105.485 22.399 85.558 0 112.96V0h1920v111.22z" opacity=".25"/></g></svg>`,9:`<svg viewBox="0 0 1920 200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M1000.521.023L0 200V0h1000.521z"/><path d="M919.479.023L1920 200V0H919.479z"/></g></svg>`,10:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path opacity=".25" d="M1920 0v240L959.944 9.734 0 240V0z"/><path d="M1920 0v198.347L959.944 8.044 0 198.347V0z"/></g></svg>`,11:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 5.206c-320 1.996-640 21.432-960 58.308C640 100.39 320 159.22 0 240V0h1920v5.206z" fill="${n}" fill-rule="nonzero"/></svg>`,12:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M0 240V0h1920v4.538c-312.667-.827-632.667 14.938-960 47.295C632.667 84.191 312.667 146.913 0 240z" opacity=".15"/><path d="M0 210.704V0h1920v4.507c-332 1.2-652 16.735-960 46.605C652 80.982 332 134.18 0 210.704z" opacity=".3"/><path d="M0 4.507V0h1920v4.507c-320 1.494-640 16.045-960 43.651C640 75.765 320 119.806 0 180.282V4.507z"/></g></svg>`,13:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 5.206V240c-160-80.78-320-139.61-480-176.486-160-36.876-320-56.312-480-58.308-160 1.996-320 21.432-480 58.308C320 100.39 160 159.22 0 240V0h1920v5.206z" fill="${n}" fill-rule="nonzero"/></svg>`,14:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M0 240V0l960 .03V4C754 7.849 600 23.182 498 50 354.334 87.773 188.334 151.106 0 240z" opacity=".15"/><path d="M0 211V0h960v5C794 1.667 634 17.187 480 51.56 326 85.935 166 139.08 0 211z" opacity=".3"/><path d="M0 4.5V0h960v5C800 6.158 640 20.52 480 48.083 320 75.647 160 119.62 0 180V4.5z"/><g><path d="M1920 240V0L960 .03V4c206 3.849 360 19.182 462 46 143.666 37.773 309.666 101.106 498 190z" opacity=".15"/><path d="M1920 211V0H960v5c166-3.333 326 12.187 480 46.56 154 34.374 314 87.52 480 159.44z" opacity=".3"/><path d="M1920 4.5V0H960v5c160 1.158 320 15.52 480 43.083C1600 75.647 1760 119.62 1920 180V4.5z"/></g></g></svg>`,15:`<svg viewBox="0 0 1920 200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0h1920v200l-160-15.833L1438 70 707 184.167 211 90 0 200z" fill="${n}" fill-rule="nonzero"/></svg>`,16:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M0 0h1920v198.347L1760 182 1438 70 707 183 211 89 0 198.347z"/><path opacity=".2" d="M0 0h1920v228.1L1721 240 1438 70l-283 122.397-347.347-25.04L707 183l-81.92-15.517L383 192.397 211 89 0 228.1z"/><path opacity=".25" d="M1920 0H0v228.1l193 9.917L390 123l317 60 67-11.43 477-23.801 271 44.628L1616 132l144 50 110 12 50 34.1z"/></g></svg>`,17:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 0H0v144.419L640 240l640-189.197 640 93.616z" fill="${n}" fill-rule="nonzero"/></svg>`,18:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path opacity=".25" d="M0 0h1920v144.419L1277 221l-286-85-351 104L0 144.419z"/><path opacity=".2" d="M1920 0H0v144.419L640 240l167.811-49.89L1038 240l393-167 489 71.419z"/><path d="M1920 0H0v144.419L640 240l640-189.197 640 93.616z"/></g></svg>`,19:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 172.043C160 217.348 320 240 480 240c240 0 720-138.495 960-136.774 160 1.147 320 24.086 480 68.817V0H0v172.043z" fill="${n}" fill-rule="nonzero"/></svg>`,20:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M1920 129.751C1760 191.917 1600 223 1440 223c-152.892 0-399.532-31.384-620.475-53.784C687 191 557.108 205.465 470 206c-162-2-318.667-21.333-470-58V0h1920v129.751z" opacity=".203"/><path d="M230 190c160 33.333 320 50 480 50 240 0 776-105 923-115 98-6.667 193.667 1 287 23V0H0v148c45.073 10.416 81.073 18.083 108 23 26.927 4.917 67.594 11.25 122 19z" opacity=".3"/><path d="M0 148c160 38.476 320 57.714 480 57.714 240 0 720-118.71 960-117.235 160 .983 320 20.824 480 59.521V0H0v148z"/></g></svg>`,21:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g stroke="none" fill="none" fill-rule="evenodd"><g transform="translate(0.000000, -8261.000000)" fill="${n}" fill-rule="nonzero"><g id="21" transform="translate(0.000000, 8261.000000)"><path d="M0,168.988943 C80.5473907,217.603736 160.512186,220.954929 239.894386,179.042522 C358.967686,116.173913 359.812598,59.826087 443.76887,59.826087 C527.725143,59.826087 547.8693,208.397586 697.791216,199.354108 C847.713131,190.310629 776.750091,26.8323684 937.666281,1.78889015 C1098.58247,-23.2545881 1239.52127,223.162118 1417.41641,209.093238 C1553.34561,198.343244 1504.21655,68.173913 1615.15877,45.2173913 C1689.12025,29.9130435 1790.73399,71.5072464 1920,170 L1920,240 L0,240 L0,168.988943 Z" transform="translate(960.000000, 120.000000) scale(1, -1) translate(-960.000000, -120.000000) "></path></g></g></g></svg>`,22:`<svg viewBox="0 0 1919 255" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(0.000000, -8701.000000)" fill="${n}" fill-rule="nonzero"><g transform="translate(959.500000, 8828.500000) scale(1, -1) translate(-959.500000, -8828.500000) translate(0.000000, 8701.000000)"><path d="M0,183.988943 C80.5473907,232.603736 160.512186,235.954929 239.894386,194.042522 C358.967686,131.173913 359.812598,74.826087 443.76887,74.826087 C527.725143,74.826087 547.8693,223.397586 697.791216,214.354108 C847.713131,205.310629 776.750091,41.8323684 937.666281,16.7888902 C1098.58247,-8.25458811 1239.52127,238.162118 1417.41641,224.093238 C1553.34561,213.343244 1504.21655,83.173913 1615.15877,60.2173913 C1689.12025,44.9130435 1790.40066,86.1702275 1919,183.988943 L1919,255 L0,255 L0,183.988943 Z"></path><path d="M0,184 C55.2272449,222.607421 122.531967,220.954929 201.914167,179.042522 C320.987468,116.173913 321.832379,59.826087 405.788652,59.826087 C489.744925,59.826087 509.889081,208.397586 659.810997,199.354108 C809.732913,190.310629 738.769873,26.8323684 899.686062,1.78889015 C1060.60225,-23.2545881 1201.54105,223.162118 1379.43619,209.093238 C1515.3654,198.343244 1466.23634,68.173913 1577.17855,45.2173913 C1651.14003,29.9130435 1765.08051,76.173913 1919,184 L1919,255 L0,255 L0,184 Z" opacity="0.3"></path></g></g></g></svg>`,23:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 0v131.144c-95.98 0-96.336 108.856-192.319 108.856-95.982 0-95.982-108.856-191.969-108.856-95.986 0-95.986 54.68-191.969 54.68-95.986 0-95.986-125.11-191.969-125.11-95.982 0-95.982 173.868-191.965 173.868s-95.983-103.438-191.965-103.438c-95.98 0-95.98 70.933-191.959 70.933s-95.979-98.021-191.958-98.021-95.979 81.768-191.958 81.768c-95.986 0-95.986-54.68-191.969-54.68V0h1920z" fill="${n}" fill-rule="nonzero"/></svg>`,24:`<svg viewBox="0 0 1920 398" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M1920 0v198.247c-95.98 0-96.336 114.753-192.319 114.753-95.982 0-95.982-114.753-191.969-114.753-95.986 0-95.986 57.642-191.969 57.642-95.986 0-95.986-131.885-191.969-131.885-95.982 0-95.982 183.285-191.965 183.285s-95.983-109.042-191.965-109.042c-95.98 0-95.98 74.776-191.959 74.776s-95.979-103.33-191.958-103.33-95.979 86.196-191.958 86.196c-95.986 0-95.986-57.642-191.969-57.642V0h1920z" opacity=".25"/><path d="M1920 0v158.358c-95.98 0-96.336 81.642-192.319 81.642-95.982 0-95.982-81.642-191.969-81.642-95.986 0-95.986 41.01-191.969 41.01-95.986 0-95.986-93.832-191.969-93.832-95.982 0-95.982 130.4-191.965 130.4s-95.983-77.578-191.965-77.578c-95.98 0-95.98 53.2-191.959 53.2s-95.979-73.516-191.958-73.516-95.979 61.326-191.958 61.326c-95.986 0-95.986-41.01-191.969-41.01V0h1920z" opacity=".35"/><path d="M0 0v244.694C95.98 244.694 96.336 398 192.319 398c95.982 0 95.982-153.306 191.969-153.306 95.986 0 95.986 77.008 191.969 77.008 95.986 0 95.986-176.195 191.969-176.195 95.982 0 95.982 244.863 191.965 244.863s95.983-145.676 191.965-145.676c95.98 0 95.98 99.897 191.959 99.897s95.979-138.046 191.958-138.046 95.979 115.157 191.958 115.157c95.986 0 95.986-77.008 191.969-77.008V0H0z" opacity=".134"/><path d="M1920 0v131.144c-95.98 0-96.336 108.856-192.319 108.856-95.982 0-95.982-108.856-191.969-108.856-95.986 0-95.986 54.68-191.969 54.68-95.986 0-95.986-125.11-191.969-125.11-95.982 0-95.982 173.868-191.965 173.868s-95.983-103.438-191.965-103.438c-95.98 0-95.98 70.933-191.959 70.933s-95.979-98.021-191.958-98.021-95.979 81.768-191.958 81.768c-95.986 0-95.986-54.68-191.969-54.68V0h1920z"/></g></svg>`,25:`<svg viewBox="0 0 1920 788" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 0H0v173c48-38.667 95.667-75.333 143-110 71-51 110-58 206-40 366 84 1154 243 1293 297 58 22 88 44 121 101 23.333 52 75.667 174.333 157 367V0z" fill="${n}" fill-rule="nonzero"/></svg>`,26:`<svg viewBox="0 0 1920 798" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M1920 0H0v189c24-18 60.347-41.755 109.04-71.264C207.368 57.772 261.38 50.915 394.33 78.549 902 172 1349 270 1534.999 319.512c80.324 21.553 121.87 53.106 167.572 108.947C1734.886 479.402 1807.361 602.583 1920 798V0z" opacity=".25"/><path d="M1920 0H0v173c48-38.667 95.667-75.333 143-110 71-51 110-58 206-40 366 84 1154 243 1293 297 58 22 88 44 121 101 23.333 52 75.667 174.333 157 367V0z"/></g></svg>`,27:`<svg viewBox="0 0 1920 800" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 0H0v12.984c1029.719 130.503 1587.292 213.733 1672.719 249.688 53.468 21.972 81.125 43.945 111.547 100.874C1805.776 415.48 1851.02 560.966 1920 800V0z" fill="${n}" fill-rule="nonzero"/></svg>`,28:`<svg viewBox="0 0 1920 800" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M1920 0H0v12.984c1029.719 130.503 1587.292 213.733 1672.719 249.688 53.468 21.972 81.125 43.945 111.547 100.874C1805.776 415.48 1851.02 560.966 1920 800V0z"/><path d="M1920 0H0v13c996.788 159.826 1536.916 257.717 1620.386 293.672 52.243 21.972 79.265 43.945 108.99 100.874L1920 800V0z" opacity=".25"/></g></svg>`,29:`<svg viewBox="0 0 1920 144" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0h1920v70c-96-31-184 1.639-289 21-145 28-245 41-373 50-66 4-150 7-327-30-171-31-301-83-399-83-114 4-258 70-362 77-44 .667-100.667-11-170-35V0z" fill="${n}" fill-rule="nonzero"/></svg>`,30:`<svg viewBox="0 0 1920 99" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M781.659 67.679c5.394-.297 18.088 1.159 22.66-1.526-2.846 1.667-19.23.32-21.954.394-5.954.164-11.903.198-17.902.532-10.396.578-20.684.776-31.023 1.7-30.343 2.713-60.606 3.909-90.983 4.702-.776.26-6.442-.068-9.11 1.099.969-.476 2.062-.742 3.212-.923-12.678.311-25.374.572-38.12.821-18.571.363-37.346.906-55.894 2.175-13.194.907-26.309 1.303-39.486 2.204-8.555.584-28.417 4.827-35.323 1.094 13.602-3.898 29.658-1.78 43.702-2.742 9.608-.663 19.108-.765 28.694-1.422 19.601-1.343 38.993-2.793 58.737-3.473 37.118-1.275 75.018-5.218 112.006-5.382 23.33-.102 47.316-2.974 70.504-3.501 16.673-.38 33.646-.816 50.137-2.232 36.036-3.093 72.702-.93 108.795-3.853 12.588-1.02 25.703 1.79 38.359-.204 7.177-1.133 13.97-2.045 21.873-2.039 11.795.006 23.403-.85 35.357-.872 8.514-.017 17.868.702 26.167-1.541-15.942-2.187-31.974.39-48.012.238-20.367-.199-40.835-.3-61.264.611-34.348 1.53-69.042 1.292-103.509 3.014-116.714 5.824-233.554 11.914-350.342 16.225-61.75 2.278-123.75 7.45-185.28 10.475-27.222 1.343-54.086 3.938-81.29 5.36-10.345.538-97.176 10.905-98.564 6.175 14.543-4.782 33.057-2.963 48.398-3.949 11.025-.708 22.032-1.983 33.051-2.884 29.414-2.402 59.428-4.005 89.034-5.772 77.2-4.612 154.037-11.557 231.305-14.09 35.64-1.167 71.336-3.2 106.987-4.436 25.947-.9 51.82-3.603 77.784-4.231 16.236-.391 33.232.203 49.4-2.51-27.453-2.93-57.241 2.187-84.847 3.104-21.766.726-45.282 5.564-66.827 3.337 2.577-1.15 7.755.77 9.778-1.2-.011.005-14.713-.879-16.237-.743-4.214.38-8.424 1.042-12.707 1.32-13.947.906-27.799.855-41.74 1.796a1687.78 1687.78 0 0 1-58.766 2.934c-70.226 2.278-140.865 8.544-211.154 13.444-33.6 2.345-66.962 2.748-100.602 5.846-5.292.488-55.961 3.405-89.006 6.442 4.005-.465 7.127-.884 8.078-1.23-6.158-.645 6.787-1.45 9.795-1.625 7.666-.448 15.297-1.57 22.967-2.04 5.773-.351 11.37-.799 17.098-1.479 11.868-1.405 33.623 1.45 43.713-4.713a5.205 5.205 0 0 1-1.966-.397c4.86-2.237 11.84-.215 16.927-1.852-14.191-3.348-29.827 2.674-43.203 3.444-12.837.743-26.06 1.87-38.863 3.388a1546.6 1546.6 0 0 1-39.815 4.192c-9.704.901-19.069 2.827-28.915 3.75-9.976.936-19.953 1.865-29.93 2.8-2.798.26-16.372-.307-19.216 1.217 2.47-2.243 15.79-1.988 18.656-2.996-5.58-.697-12.81.373-18.469.94-2.49.25-10.413-.36-13.559.166C.342 96.926.024 64.672 0 0h1920v25c-1.187.402-.707.537-.245.687-3.116-.769-12.798 2.086-16.785 2.523-10.299 1.122-21.3.992-31.55 1.014-15.239.034-30.353 3.858-45.933 4.793-14.174.85-28.643 2.034-42.664 2.43-5.966.17-12.571-.589-18.554.38-1.575.255-17.992 3.037-11.313 1.348-32.298-1.847-65.824 1.819-98.139 2.13-13.998.136-28.2 1.275-42.12.788-13.047-.459-33.374-3.507-45.424 1.586 5.569-2.35 21.114.725 28.252.46 9.66-.363 19.075-.771 28.683-.941 21.386-.38 42.705-.516 64.164-1.145 28.32-.833 56.279 2.567 84.877 1.558 11.137-.396 21.408-.334 32.625-.668 6.852-.203 20.95-4.053 27.32-.207-2.45-1.183-23.322 1.227-26.283 1.272-4.504.068-32.07-1.711-33.94.895.787-.952 7.387 1.382 7.909 1.609-2.182.3-8.034 1.393-9.847.612 2.074 1.02 4.674 1.507 7.54 1.7-1.455.243-2.786.424-3.914.498 3.96.13 10.13-.425 11.212-.544 3.25-.257 6.224-.57 9.14-.922l.11-.002c.403-.05.8-.096 1.202-.147a2.793 2.793 0 0 0-.009-.008c4.738-.572 8.317-.986 11.249-1.023 8.509-.108 16.304-.793 24.592.266-19.21 6.164-43.916 3.875-64.05 4.68-17.285.691-34.677.663-52.035 1.382-28.173 1.167-56.392.748-84.616 1.875-10.061.403-20.344.38-30.456.873-14.776.718-35.283 5.175-49.465 1.064 1.823.39 13.264.051 20.669-.792-8.186.277-21.726-1.326-25.375-1.088-3.116.204-19.601 1.966-14.457.493-15.93-2.634-34.87.736-51.05.714-16.904-.023-33.243 1.49-50.091 1.512-15.914.023-31.6.255-47.531.64-21.21.516-42.416 1.02-63.626 1.61-11.585.317-23.165.656-34.74 1.013-2.554.08-21.289-1.036-25.311.142 3.722-1.79 15.08-1.405 18.633-2.272-3.213-6.078-58.539-.985-64.6-.436-18.917 1.717-37.102 2.22-55.758 1.853-63.342-1.258-127.586 1.161-191.155 3.461-32.082 1.161-64.34 1.314-96.512 2.912-14.34.708-28.36.844-42.756 1.632-5.601.305-45.334 3.228-46.227.471a5.557 5.557 0 0 0 .013-.002zm-559.447 11.45c8.345-2.776 19.947-2.804 28.864-3.263.25.023-26.462 3.518-28.864 3.263zm48.25-4.583c5.065-.991 10.413-1.161 15.512-.73-4.521 1.46-10.792 1.342-15.511.73zM630.34 61.822c.895 2.249 11.036-1.042 12.497-.584-1.427-.566-4.934-.164-6.31-.328-.363-.012-6.42.334-6.187.912zm18.429-.952zm14.242-.453c5.099-.159 11.336.56 16.531-.606-2.356.096-5.886-.47-7.03-.606-5.039.316-19.504-1.012-23.706 1.641 2.032-1.256 11.193-.339 14.205-.43zm139.092-4.951c1.394.113 1.15.243-.72.396-1.399-.102-1.155-.238.72-.396zm12.82-.833a1.207 1.207 0 0 0 0 0zm31.833-.895c-4.152-.244-8.798-.068-12.905.657 2.906.606 6.09-.153 9.053.283 1.28-.311 2.566-.629 3.852-.94zm10.294-.006c-1.988.425-3.84.646-5.297-.244 2.244-.453 3.705.046 5.297.244zm-44.934 11.71c-1.052.02-2.09.127-2.076.465.555.068 1.518-.077 2.39-.216l-.314-.249zm20.54-.736c-1.383-.97-11.642-.618-12.741.657-.204.362 8.39.09 9.177.192 1.808.686 2.992.403 3.564-.85zm27.986-.998c-4.974-.764-17.806-1.235-22.338.986 2.759-1.286 10.786-.26 14.033.176 2.923.102 5.512-.391 8.305-1.162zm208.644-11.24c-.737.409-3.224-.65-4.346.018.499.583 3.881.294 4.346-.017zm46.777-1.206c-8.962-2.481-24.666-1.076-33.85-.074.64 1.116-.056 1.547-2.095 1.286 1.535 1.983 33.215.918 35.945-1.212zm25.431-.946c-1.41-.924-13.064 1.41-11.024 1.58.668-.022 11.194-1.467 11.024-1.58zm56.607-.98c-.402-1.74-11.421-1.054-12.367.25l3.484.662c.753-.028 9.07-.113 8.883-.912zm28.043-.958c.062.844 8.447.777 9.24.93 3.807-.669-9.495-3.502-9.24-.93zm35.713-.657c-4.674-.957-11.993-.833-16.525.182-.068.005-4.306.583-3.269.929 4.442 1.49 15.534.696 19.794-1.11zm18.078-.606c-3.2-1.173-4.515.074-7.438.737.696 2.096 8.934-1.117 7.438-.737zm19.89.09c-1.971.035-2.3-.073-.985-.328 1.949-.04 2.277.068.985.329zm6.311 8.011c-5.63-.147-12.208-1.127-17.709.63 0 1.495 5.971.237 6.696.084 3.58-.017 7.694.578 11.013-.714zm22.248-.362c-1.932.04-2.26-.068-.986-.323 1.988-.023 2.317.085.986.323zm12.837-.13c-1.852.096-2.09.22-.708.373 1.88-.107 2.119-.232.708-.374zm18.429-8.73c-1.734-2.488-9.251-1.162-11.886-.539-13.596.334-28.615-.974-41.967 1.377 7.97 1.631 16.53.56 24.57.119 9.727-.538 19.714.968 29.283-.958zm7.348-.414c-1.745.124-4.572.272-5.195-.402-.306-.335 2.81.113 5.195.402zm.589-.102c-.142.013-.198.037-.198.068.204-.017.392-.031.548-.042l-.35-.026zm.935.36c.409.038.827.028 1.065-.083-.071.04-.322.041-.689.017l-.376.066zm9.925.439c-3.875-1.893 16.628-1.167 16.514-1.11-4.107 2.124-12.01 1.002-16.514 1.11zm19.522 7.172c-1.223-.221-2.453-.436-3.676-.657-.391-.023-6.481-.006-6.306.68.357 1.41 8.963.345 9.982-.023zm3.847.13c-1.388-.153-1.144-.278.73-.374 1.412.153 1.162.278-.73.374zm17.964-1.422c4.42 1.156-5.512 2.668-6.05 1.144-.255-.725 5.337-1.155 6.05-1.144zm2.017-7.438c2.827-.595 5.903-1.145 8.787-.539-5.886 1.473-10.418 1.32-16.384.726 2.527-.063 5.07-.193 7.597-.187zm12.407 8.435c-1.564.623-9.5 1.603-10.288-.294 3.501-.856 7.376-1.598 10.288.294zm4.997-8.107c-1.61-.255-2.997-.782-5.297-.402 1.45.946 3.28.76 5.297.402zm9.88 7.325c-.674-.447-1.445-.544-2.306-.3a4.858 4.858 0 0 0-1.756.133c.976-.14 3.035.68 4.062.167zm-4.328-.09a5.2 5.2 0 0 1 .266-.077.874.874 0 0 0-.266.077zm16.141.202a3.06 3.06 0 0 0-.726.189c.26-.046.52-.09.782-.134l-.056-.055zm1.007-.106l.42-.068c-.114.006-.182.006-.278.006-.051.017-.09.04-.142.062zm-.934.436c.237-.147.566-.272.872-.402.714-.011.969.13-.872.402zm6.112-.9c-1.342-.556-3.37-.238-4.906.34 1.745-.097 5.116-.256 4.906-.34zm7.507-7.439c-4.266 1.745-16.197-4.651-20.117-.833-.136.12 8.123 1.031 9.25 1.218 2.216-.04 8.51.697 10.867-.385zm23.17-.47c-.555.277-2.453-.096-2.17-.238 1.185.113 2.216.22 2.17.238zm-3.133-.521c-.356-.063-.73-.04-1.082-.142-.062-.09.539.017 1.082.142zm-1.404 8.039c3.132 1.11 8.067.753 11.319.005 2.128-.04 11.108-1.363 13.483-.59-7.455-2.427-17.615 2.85-24.802.585zm35.48-8.136c-2.13-1.779-8.118-.651-10.576-.453 2.034 1.847 8.384 1.043 10.577.453zm4.97-.402c-.414-.821 8.916-1.218 9.432-1.184 2.056 2.572-8.764 2.51-9.433 1.184zm237.717 2.232c-1.394-.175-1.156-.294.714-.345 1.41.164 1.172.277-.714.345zm-70.978 2.064a2.374 2.374 0 0 0-.545.259c.173-.09.355-.177.545-.26zm0 0c3.221-1.087 11.33 2.36 14.06 2.604 6.118.556 12.242-.464 18.326-.617 7.592-.187 15.908.26 23.579-.737-7.931-.402-17.313-1.439-20.655-1.416-8.98.055-27.991-3.006-35.31.166zm-67.14 1.403c2.538-.187 5.801-.708 7.914.555-2.056.476-7.081 1.881-7.914-.555zm-20.485.403c5.421-1.434 12.525-.8 18.032.305-5.914.726-12.192.595-18.032-.305zm.028 3.96c-2.181.022-6.215.674-8.436-.074.04.006 10.69-.232 8.436.073zm-10.038-3.596c-1.046-.026-2.083.038-2.086.378.573.104 1.52-.002 2.38-.109l-.294-.27zm-12.696 3.725c-1.562.13-3.028.194-3.61.006 1.09.296 2.352.326 3.688.234l-.078-.24zm-33.34-3.138c.9-.073 1.915-.164 2.94-.22-4.18.453-9.093 2.203-12.622.741 1.79.499 7.982-.487 9.682-.52z" fill="${n}" fill-rule="evenodd"/></svg>`,31:`<svg viewBox="0 0 1920 359" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1900.821 32.686c-8.161 5.646-17.284 11.593-25.72 16.295-7.624 4.25-11.488 9.048-18.584 13.977-5.919 4.109-10.999 9.104-16.88 13.298-13.43 9.594-27.453 20.046-41.722 27.566-5.032 2.649-10.602 4.59-15.682 7.596-5.956 3.525-4.967 6.324-11.658 9.547-.773-.895-.226-1.686 1.65-2.384-18.077 6.503-35.286 17.746-52.787 26.85-13.788 7.182-27.765 12.535-41.901 18.378-13.242 5.476-25.192 13.402-38.782 16.992-7.134 1.885-13.157 4.977-19.716 8.115-3.619 1.734-7.172 2.328-10.687 4.486-2.931 1.79-9.274 4.166-11.234 6.946-.32.462 11.29-3.695 12.515-4.119 4.618-1.592 9.67-3.345 14.24-5.504 8.86-4.194 17.323-8.387 26.069-12.534 18.811-8.925 39.253-14.467 57.941-24.221 9.161-4.778 17.172-9.962 26.662-13.76 16.342-6.54 32.402-10.612 48.715-18.443 5.41-2.602 11.526-4.854 16.578-8.087 2.554-1.64 4.938-5.127 7.577-6.399 1.386-.669 5.57-.952 7.191-1.517 4.203-1.48 7.954-4.307 11.611-6.588 5.193-3.242 16.512-14.598 23.326-12.516 1.78.84-9.49 6.767-10.33 7.257-4.184 2.432-8.52 5.334-12.902 7.728-2.86 1.564-28.342 13.533-30.951 16.368 1.421-1.03 7.593-1.03 8.408-.695-1.338 1.027-7.672 5.448-8.868 5.268 2.035.481 6.851-1.592 11.799-4.156-5.136 3.384-9.905 6.805-10.395 6.362 1.216 1.102 12.336-5.25 13.816-6.277.961-1.037 9.227-6.22 9.622-5.928-1.507-.622-.282-1.338.472-1.762 3.317-1.876 6.54-4.354 10-6.249 7.925-4.354 13.1-8.67 21.364-11.224-2.818 4.1-12.138 10.763-16.276 14.212-5.833 4.853-13.194 8.727-19.81 12.402-8.246 4.58-16.512 9.293-24.664 13.826-15.098 8.388-31.242 14.75-46.415 23.175-26.021 14.448-53.654 25.399-80.485 38.197-9.312 4.43-19.509 7.144-28.679 11.856a259.32 259.32 0 0 1-18.802 8.765c-5.871 2.45-11.714 4.957-17.652 7.247-.688.274-10.442 3.412-10.235 3.082 3.1-4.91 21.582-6.427 25.145-12.11-3.27 2.667-24.334 8.66-27.35 9.82-5.843 2.243-12.045 8.576-19.17 8.143.575-.528 1.15-1.046 1.725-1.574-5.965.33-13.203 4.693-19.094 6.38-4.985 1.433-10.357 3.46-14.966 5.297-8.2 3.26-16.719 5.975-24.786 8.897-23.995 8.68-47.64 18.227-72.644 24.06-17.718 4.138-35.342 9.406-52.947 14.59-8.387 2.46-16.737 5.08-25.163 7.398-10.97 3.025-22.12 5.503-33.193 8.133-2.036.48-13.91 2.563-22.732 4.43 7.248-2.837 14.024-8.549 1.33-6.579-10.349 1.612-21.121 3.977-31.168 6.4-11.507 2.78-22.628 5.305-34.088 8.208-4.533 1.15-8.5 2.545-13.477 2.931-7.483.575-11.837 3.553-18.5 4.184-30.96 2.922-64.303 8.35-96.073 12.648-7.992 1.084-14.4 3.874-22.704 3.968-4.552.056-8.039 1.074-12.365 1.63-4.721.603-9.188-1.121-13.75-.839-18.265 1.15-36.209 6.598-54.897 6.701-17.181.085-35.22 2.818-52.363 4.241-14.09 1.169-29.037.396-42.89 1.527-15.673 1.282-31.968 1.687-47.415 3.016-2.875.245-69.977 2.158-70.712-1.932 4.967-.141 19.952 2.243 23.816-1.103 1.63-1.413-7.125-.358-6.918-.358-6.04.066-12.647-.17-18.84-.32-5.946-.151-12.034-.424-18.15-.255-10.575.292-20.876-.085-31.384.81-13.487 1.15-26.917-1.903-40.365-1.988-12.3-.085-21.507.142-33.533-.839-10.828-.876-21.393-2.016-32.297-1.64-12.921.453-25.512-2.195-38.367-3.873-20.367-2.658-40.893-4.948-61.363-6.503-11.413-.867-22.468-2.535-33.872-3.411-8.086-.623-31.996.179-36.529-5.797 7.521-1.47 18.689 1.292 26.257 2.347 5.834.81 11.13 1.536 16.85 2.158 8.37.915 16.626 1.574 24.834 2.8 26.351 3.91 52.711 4.928 79.345 7.294 11.743 1.037 24.004-.18 35.813 1.725 8.604 1.376 18.16.433 26.878.64 21.743.519 42.335 2.432 64.219 1.848 23.09-.613 45.105-.424 67.828-1.056 7.87-.226 14.975-.047 22.873.245 10.263.387 21.016-1.074 31.327-.763 34.88 1.055 69.835-4.873 104.329-5.702 13.024-.311 25.512-.066 37.405-4.08 5.702-1.923 14.392-2.036 21.064-2.922 12.092-1.603 23.75-2.102 36.313-2.573 7.671-.283 18.01-1.093 24.833-4.6-15.692-2.374-31.035 2.319-46.755 3.073-20.752.99-42.589 1.395-63.313 4.656-15.014 2.365-30.696 1.47-46.058 2.695-18.34 1.46-36.99 1.197-55.36 1.838-54.84 1.913-110.275 2.535-165.342 1.084-28.217-.745-57-1.706-85.367-3.808-26.238-1.95-52.193-5.56-78.506-7.568-14.212-1.083-29.696-1.96-43.861-4.184-68.591-10.772-137.57-22.44-205.538-34.927-27.633-5.08-54.907-11.121-82.314-17.473-10.49-2.432-86.893-22.6-86.44-25.569 8.66-.999 21.232 4.694 29.724 6.739 5.457 1.31 10.404 3.204 15.71 4.655 9.368 2.554 18.934 4.543 28.378 6.814 24.654 5.928 49.082 12.752 74.368 17.407 85.3 15.72 170.583 34.513 257.08 41.091 35.748 2.724 71.023 8.708 106.987 9.877 32.006 1.037 64.718 5.589 96.78 4.118 14.495-.669 30.762 1.753 45.473-1.272-15.362-3.581-32.213-.283-47.537-.876-14.334-.556-28.895-.198-43.324-1.65-9.302-.933-18.802-.01-28.132-.66-11.13-.782-27.661.962-38.697-2.28 2.545-1.395 8.425 1.583 10.273-.735 1.564-1.734-21.846-2.696-24.39-2.62-13.883.396-27.417-3.176-41.026-4.6-20.554-2.139-41.891-3.43-62.21-5.984-19.264-2.422-38.876-3.544-57.358-8.397-17.69-4.646-36.727-6.484-54.973-8.84-17.869-2.31-34.277-3.29-51.325-5.664-17.247-2.404-33.787-10.179-50.959-12.045-39.733-4.316-75.744-20.489-114.93-28.028-10.905-2.092-21.734-6.597-32.487-9.632-7.766-2.196-16.7-2.582-24.683-5.042-5.72-1.762-55.41-16.859-55.783-16.06 1.094-2.355 32.9 8.162 37.707 7.634-1.291-.31-2.026-1.008-2.224-2.092 3.534-2.11 14.269 4.486 17.897 5.457 8.755 2.337 17.586 4.854 26.21 7.172 7.85 2.12 16.21 2.997 24.258 4.929 7.38 1.772 22.26 8.708 29.093 5.523a3.961 3.961 0 0 1-1.715-1.376c5.052-1.508 11.96 4.109 17.256 3.506-5.211-4.59-16.247-6.41-22.948-7.446-7.747-1.197-11.913-1.385-19.858-3.383-12.996-3.27-26.595-7.2-39.856-9.575-6.418-1.15-13.119-1.678-19.254-3.13-7.323-1.733-13.854-4.985-20.866-7.19-10.555-3.308-21.412-4.6-32.41-7.888-8.294-2.48-16.587-4.967-24.881-7.446-1.187-.348-20.96-7.323-21.412-6.89 1.724-2.016 16.964 3.563 19.998 3.309-4.015-2.969-12.977-5.372-17.84-6.776-2.488-.717-5.485-.415-7.85-1.423.047.013-4.306-2.565-6.089-3.814V0h1920v14l-7.987 8.713c2.323-1.072 3.867-1.758 3.85-1.694-.319 1.441-3.15 2.449-5.387 3.37L1909 26l-2.882 1.589c-1.546 1.69-3.095 3.574-5.297 5.097zM258.347 249.41l.01.043c.835.17 1.669.34 2.503.496a85.479 85.479 0 0 0-2.513-.539zm0 0a95.544 95.544 0 0 0-2.492-.46c.835.16 1.669.332 2.503.503l-.01-.043zM1795.36 118.013c-.143.155-.217.282-.215.38.005-.153.1-.29.268-.412l-.053.032zM257.646 237.197c-1.187-.631-2.384-1.423-3.628-1.932-7.973-1.526-19.094-1.13-26.549-4.599 4.6 3.308 13.147 3.506 18.613 4.675 2.592.556 9.302 2.865 11.564 1.856zm41.204 8.558c-5.485-3.384-11.752-4.392-17.775-5.099-3.59-.414-8.444-.348-11.714-2.592-1.725-.31-6.918-2.28-8.53-1.244-.706.547 15.947 4.77 17.615 5.165 5.664 1.338 14.269 4.505 20.404 3.77zm-61.89 1.8c.96-.198 1.8-.01 2.506.594-.951.207-1.79.01-2.507-.594zm30.912 17.906c-.49-2.808-14.759-2.78-16.983-3.901-4.006-1.282-8.953-1.574-13.034-2.413-5.221-1.074-11.036-3.355-16.559-2.62 3.148 1.875 46.651 9.632 46.576 8.934zm33.306-5.74c-.208.123-19.622-3.382-19.905-3.665 1.64 1.668 6.513 1.696 8.709 2.818 1.96.612 9.34 1.828 11.196.848zm192.447 28.566c.18-.113-.735-.376-1.979-.688-.395.038.65 1.48 1.98.688zm26.474 2.78c-.782-.49-1.63-.546-2.545-.178.792.461 1.64.527 2.545.179zm117.391 39.517c.471 3.13 11.913-.075 12.977.623-1.225-.971-4.74-.736-6.465-1.348-.5-.113-6.71-.594-6.512.725zm53.135 2.498c-3.12-.34-6.22-.48-9.264-1.451-4.543-.104-21.271-3.176-24.73-.274.726-.622 13.458.971 14.768 1.065 5.693.424 13.703 3.007 19.226.66zm142.894 2.865c-1.602-.122-3.694.198-4.675.226-1.145.028-7.896 1.116-8.779.855 3.264 1.336 9.876-1.306 13.454-1.081zm-13.515 1.056a3.7 3.7 0 0 1 0 0zm42.41-.82c-4.391-.33-9.075-.057-13.41.735 2.817 1.055 6.465.141 9.424.83 1.329-.529 2.658-1.047 3.986-1.565zm10.697-.029c-1.46-1.394-3.1-1.168-5.504-.395.066.292.132.574.208.857 1.819.48 3.59.33 5.296-.462zm-44.578 17.992c-.292-.189-4.457-.613-4.439.396.934.235 4.722-.17 4.44-.396zm19.292-.18c-1.244-1.45-12.45-1.328-13.364.283-.556 1.48 8.718.67 9.623.905-.424.038 4.769.038 3.741-1.187zm29.292-1.206c-4.006-.97-20-.923-23.383 1.546 1.63-1.093 12.233-.396 14.712.386 3.26.16 5.749-.64 8.67-1.932zm265.345-33.136c-5.71-1.706-13.76.923-19.282 1.074-5.023.142-10.96 1.621-15.786 3.148-2.186 2.441 7.71-3.44-1.923 2.394 2.083 3.242 16.107-1.659 19.99-2.375 3.572-.66 14.994-.943 17.001-4.241zm84.585-13.722c-.697-2.14-12.073-.51-12.76 2.007 1.262.217 2.535.424 3.797.641.773-.141 9.49-1.037 8.963-2.648zm44.823-10.216c.528-.735 16.615-1.046 20.102-4.543-4.363-.565-13.279 1.357-16.888 3.468-.67.17-2.78.349-3.214 1.075zm13.364-61.523c3.94-.943 17.378-1.263 18.18-6.022.366-1.12-21.57 4.895-22.529 4.938 1.881-.083 2.663 1.008 4.349 1.084zm17.718 55.152c1.263 2.827 6.003-1.744 7.389-2.63l-.396-.848c-4.826.16-3.968 1.687-6.993 3.478zm159.83-102.774c6.031-.189 15.21-2.064 19.772-6.003-5.777-.066-14.825 2.95-19.773 6.003zm-37.548 10.848c.613.197 1.216.395 1.82.593 1.945-.306 11.61-3.273 12.64-4.922-1.286 2.024-13.967.508-14.46 4.329zm-88.543 23.72c3.337 3.365 8.633 1.273 11.668-1.696 7.238-2.77 15.71-3.666 23.08-5.88 2.253-.679 20.508-3.808 18.237-6.748-1.33-1.838-26.7 6.653-30.46 7.54-3.233.763-23.128 6.116-22.525 6.785zm3.506 73.663c-5.786.848-13.222.706-18.066 4.457.716 2.224 5.767-.49 6.955-1.159 3.967-1.48 7.86-.264 11.111-3.298zm50.94-27.737c-2.385-3.09-9.764.443-12.233 2.159-5.542 1.63-11.065 3.28-16.295 4.825-8.398 2.478-18.161 3.43-25.833 7.228 9.029 1.113 18.66-2.704 27.039-5.758 9.057-3.308 18.971-3.251 27.321-8.454zm31.524-68.13c-1.856 1.763-13.495.604-17.19 4.138 1.31.057 2.62.104 3.92.151 4.524-1.338 9.727-.763 13.27-4.288zm-12.365 63.786c3.808-1.122 13.732-2.554 16.239-6.004.245-.33-23.297 2.931-16.239 6.004zm22.892 6.521a573.079 573.079 0 0 1-4.024-.103c-.697.085-6.625 1.564-6.126 2.705.82 1.866 9.255-1.725 10.15-2.602zm23.42-7.162c-.603-.16-1.197-.33-1.8-.5-.97.142-6.314 2.12-5.645 3.384 1.112 2.082 7.992-1.848 7.445-2.884zm27.953-8.265c-.782-.462-1.592-.377-2.45.254a3.433 3.433 0 0 0-1.914.971c.239-.237 3.722-.304 4.364-1.225zm6.755-2.088c.307-.057.577-.25.813-.58-.372-.212-.711-.287-1.018-.23l.205.81zm6.196-1.415c.008.048.13-.079.385-.475.042-.056.04-.082.018-.094l-.403.57zm-1.541.292a.9.9 0 0 0-.204.148.699.699 0 0 0 .32-.18l-.116.032zm6.346-3.264c.547.15-2.271 1.272-4.222 2.017.791-1.065 2.346-2.545 4.222-2.017zm3.826-14.222c-2.205 2.743-18.82-.282-20.385 5.07-.452 1.405 8.605-.942 9.783-.998 2.412-.867 9.066-1.989 10.602-4.072zm288.408-112.038c-2.8.519 1.395-1.027 1.376-.99-.462.33-.914.66-1.376.99zm-66.122 35.135c.052-.108.11-.215.171-.32-.073.1-.13.208-.171.32zm15.418-2.894c6.38-1.8 11.97-6.248 17.662-9.386 7.285-4.015 18.65-7.465 24.249-13.59 1.517-.726 7.228-2.328 7.813-4.072.537-1.753-11.215 3.742-11.705 3.977l-18.887 9.048c-4.08 1.95-7.822 4.552-11.649 6.56-5.292 2.77-19.706 4.88-22.73 10.036 1.785-2.477 12.93-1.912 15.247-2.573zm-59.506 22.949c-1.282.528-4.213 1.225-5.805 2.29 3.006-1.658 11.61-2.026 13.269-4.768-.068.113-7.125 2.337-7.464 2.478zm-50.958 27.67c-1.329.49-2.686 1.216-3.647 1.612-.207.084-7.61 3.912-7.95 3.92 3.515.11 8.102-4.09 11.597-5.532zm5.787-1.658c2.12.254 6.616-2.423 8.303-3.11 2.309-1.527-8.313 3.11-8.303 3.11zm-114.312 22.853c-.313.027-.525.081-.45.161.254.028.507 0 .757-.041l-.307-.12zm1.576.218c.019-.02-.038-.02-.038-.038-.688.104-1.347.207-1.847.283.641.028 1.291.066 1.885-.245zm2.498-.349c-.566.848-2.658.66-1.998.226 1.083-.16 2.035-.283 1.998-.226zm-.698 13.354c3.091.622 8.869-1.3 11.31-3.61 2.325-.818 11.347-5.54 13.16-5.24-7.51-1.247-17.742 9.925-24.47 8.85zM1824.46 54.306c-.202.131-.415.273-.637.424.225-.124.45-.245.675-.366l-.038-.058zm0 0l.038.058c.598-.32 1.197-.634 1.785-.962.075.018.462-.217.99-.575-.33.179-.641.377-.971.565-.225-.054-.914.312-1.842.914zm30.718-22.411c-2.054-1.847-11.111 8.303-13.486 10.056-1.3.961-11.253 8.755-14.42 10.885 10.415-5.787 19.849-12.016 27.907-20.941zM151.14 216.228c2.618 2.376 20.332 6.06 24.47 5.023-2.542.587-9.873-3.339-13.509-2.997-.622-.15-10.31-1.526-10.96-2.026zm24.608 4.986zm1249.8-32.77c-.606.102-1.19.133-1.727.048.466.15 1.01.155 1.614.054l.113-.102zm0 0l-.113.102c.603-.101 1.265-.309 1.967-.582-.622.203-1.249.377-1.854.48zm5.435-1.733c.283-.095 8.906-3.45 9.33-3.356-3.44-.885-8.85 3.026-12.911 4.618 1.291-.424 2.563-.96 3.581-1.262zm-206.857 57.234c1.97.604 6.738-1.3 8.434-1.705 2.865-1.33-9.471 1.46-8.434 1.705zm12.685-3.034c1.404.433 8.01-1.81 5.57-1.932-1.244.15-4.92 2.054-5.57 1.932zm-56.943 9.509c.547.726 3.958.047 4.401-.537.16-.283-3.986 0-4.4.537zm-987.1-25.644c-2.11-.528-4.231-1.093-6.333-1.612-.99-.593-3.12.368-1.583.434 1.017.452 1.545.311 1.583-.434.283.387 2.96.98 6.333 1.612z" fill="${n}" fill-rule="nonzero"/></svg>`,32:`<svg viewBox="0 0 1920 221" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M3.747 220.063L0 221V0h1920v63l-33-45-402 6-333 23-351 31-349 50-149 26-247 54-44 10-8.253 2.063c-1.615-.021-3.064.052-3.747.442 8.343-4.816 20.442-4.762 29.507-7.39 8.358-2.42 16.862-4.048 25.282-6.291 18.874-5.032 37.035-10.41 56.348-13.098 7.958-1.106 15.264-4.763 23-6.3 3.48-.69 6.96-1.605 10.463-2.135 7.098-1.076 14.027-2.105 21.11-3.55 16.117-3.287 33.24-8.603 47.068-13.597 8.842-3.188 19.889-4.609 29.153-5.477 5.07-.476 44.71-6.13 45.056-9.172-.039.407-28.209 1.413-33.125 3.887 3.549-2.789 17.884-3.28 22.047-4.064 8.42-1.59 17.538-4.402 26.08-4.494-1.39.092-2.465.645-3.226 1.66 2.144 3.218 16.525-2.42 19.467-2.927 6.069-1.053 12.222-.984 18.13-3.15-5.762.161-11.078 1.037-16.747 2.105-2.136.407-8.359.576-11.093 1.36 3.88-1.86 10.14-1.875 14.096-2.62l25.712-4.84c19.62-3.687 39.325-6.952 58.99-10.378 36.283-6.315 72.62-13.382 109.117-17.608 23.407-2.704 46.715-8.504 70.345-10.486 28.738-2.404 57.008-8.258 85.463-12.36 11.892-1.72 23.814-3.94 35.767-5.162 14.957-1.53 29.945-3.227 44.917-5.17 6.8-.884 13.598-1.76 20.396-2.643 3.895-.507 10.525.023 14.673-1.214-3.564.622-10.194-.092-12.445.185-5.485.668-10.947 1.505-16.432 2.143-1.16.138-6.284-.062-7.152.538 2.512-2.55 13.95-2.105 17.615-2.597 6.315-.845 12.414-1.529 18.514-3.403-10.286-1.168-20.527.008-30.89 1.367-16.462 2.167-32.91 3.388-49.38 5.708-20.365 2.865-40.953 4.863-61.103 8.128-25.958 4.202-52.707 6.345-78.672 10.962-18.491 3.28-37.527 6.468-56.156 8.181-23.968 2.197-48.812 6.668-72.312 11.639-15.118 3.195-30.682 4.202-45.9 6.868-14.458 2.527-28.93 5-43.38 7.59-10.371 1.85-20.711 3.879-31.06 5.83-6.96 1.314-13.965 3.011-20.987 3.964-3.254.442-7.871.048-10.904 1.37 8.277-4.042 21.74-4.864 31.062-6.624 5.431-1.022 10.878-1.975 16.294-3.073 2.212-.454 7.236-2.566 11.123-3.61-9.432 1.336-31.276 4.976-31.573 6.229.494-2.09 17.085-3.925 19.044-4.94-22.616.876-45.186 9.104-67.395 12.062 10.694-3.703 21.648-5.97 32.772-8.067 101.004-19.074 202.7-37.573 304.54-52.276 45.555-6.576 91.094-14.58 136.634-18.614 11.692-1.03 22.984-3.749 34.615-4.57 10.24-.723 20.511-2.65 30.567-3.834 6.537-.776 11.846-2.566 17.6-3.365 4.962-.683 10.309.377 15.402-.092 5.3-.492 10.594-1.221 15.887-1.828l40.484-4.656c22.64-2.604 45.486-4.954 68.27-6.214 12.983-.715 26.02-2.49 39.118-3.188 25.827-1.383 52.36-3.519 77.965-7.206 21.51-3.096 44.426-2.113 66.243-3.987 29.169-2.505 58.506-2.82 87.59-6.215 22.263-2.604 44.849-.768 67.073-3.71 23.945-3.173 48.72-1.883 72.864-3.25 48.113-2.727 95.888-2.758 144.031-4.794 18.207-.768 36.498-.122 54.712-.637 16.655-.469 32.357-1.337 48.574-1.352 11.139-.008 22.708 1.552 33.793.445 16.033-1.59 32.396 0 48.65-.875 13.514-.723 27.41 1.275 40.647.115 7.09-.622 14.22.008 21.387.438 7.228.43 14.073-2.505 21.11-2.274 4.325.146 9.472 1.429 14.196 1.49 5.578.07 11.293-.622 16.932-.684 5.823-.061 11.9.853 17.753 1.537 4.74.553 6.968-.23 11.377-.715 2.543-.276 13.32.507 12.16-2.158 8.904-1.736 20.78-1.299 29.6.745-5.193.96-.338 1.352 2.051 2.09 2.712.837 5.447.66 8.166.683 5.224.039 10.862.584 15.664.822-.008-.223-.085-1.429-.146-2.596.3 3.549 2.243 1.551 3.664 4.878 2.159 5.047.507 15.256.692 20.695.291 8.873.591 17.746.89 26.619.108 3.165 2.336 10.04-2.865 8.965-.084.407-.13.975-.169 1.582-.046-.476-.1-.96-.115-1.398-4.24-.507-10.263 2.036-14.604 2.689-4.577.688-9.263.939-13.878 1.37.96-.012 1.82.307 2.57.95-2.304 3.218-13.29-1.199-16.078.092.568-.354 1.444-.592 2.473-.753-6.76.545-13.497 1.636-19.858 1.406-7.759-.284-16.178 1.951-24.06 2.274-7.267.3-14.696.276-21.925 1.436-8.588 1.375-17.976.784-26.295 3.657 7.774.576 15.28-.423 23.038-1.168 6.047-.581 16.017-3.725 21.95-2.076-1.815-.112-7.987 1.406-9.635 1.57l-16.624 1.612c-10.77 1.053-21.487 1.483-32.22 2.413-11.169.968-22.33 2.12-33.493 3.18-2.42.23-18.537.722-25.067 1.39 3.365-.722 8.405-1.95 7.898-2.243-6.622-.683-10.586.523-16.171 2.197 1.851.139 3.695.33 5.531.577-28.5 2.734-57.385 4.64-85.985 7.297-30.644 2.85-61.303 4.856-91.87 7.152 1.498-.307 2.796-.814 3.533-1.85.016-.024-10.401.122-11.753.337-2.917.465-9.636.22-12.31 1.736 3.123-1.768 10.332-.1 16.197.108-10.017.768-20.035 1.56-30.03 2.443-17.806 1.575-35.629 3.403-53.443 4.04-13.344.477-26.35 3.826-39.655 4.156-9.142.223-18.168 1.506-26.526 4.11 1.647.077 7.639.375 7.384.377 16.04-.085 32.41-2.005 48.441-2.743 7.582-.345 15.126-1.475 22.7-1.966 2.728-.185 5.232-.085 7.96-.13 5.83-.107 17.684-3.629 23.294-1.746-3.142-.933-12.917 1.7-16.05 1.983-4.733.43-9.273.515-13.966.63-12.66.307-25.436 1.813-38.065 2.466-15.725.814-31.32 2.458-47.03 3.365-16.831.976-34.031 2.558-50.909 2.827-10.97.177-22.109.492-33.056 1.314-15.464 1.167-31.45 3.58-46.899 3.84-17.054.292-34.354 1.383-51.37 2.758-20.227 1.637-41.806 4.034-61.979 1.629 4.087-1.652 9.595-.453 14.02-.676 4.51-.23 9.003-.837 13.513-1.068 7.49-.384 15.049-.799 22.57-1.075 25.035-.93 50.01-2.535 75.038-4.663 4.548-.384 107.165-3.718 107.234-6.691-.038.23-22.816 1.336-26.073 1.42-8.435.224-16.401-1.666-24.82-1.59-21.772.193-43.381 3.872-64.999 4.671-65.712 2.436-130.917 12.053-196.699 14.197-24.629.806-48.98 4.801-73.533 4.84-12.022.023-24.275.491-36.252 1.981-4.94.623-9.725 1.629-14.757 1.783-9.019.269-24.052 2.704-32.58-.254-.914-.315 3.619-1.867 3.242-2.082-4.27-2.458-13.697.984-18.437 1.468-8.043.822-15.986 1.367-24.03.683 13.345-3.35 27.503-4.21 41.108-5.131 6.176-.423 12.521-.162 18.706-1.03 8.004-1.121 18.997-.607 26.464-3.74-5.462-3.02-16.332-.57-22.562-.116-7.221.522-14.627 1.567-21.87 1.59-7.614.015-15.05.346-22.694.899-4.809.353-18.513-.983-22.178 1.237 6.23-3.772 17.047-.093 24.022-3.234-17.577-3.165-36.344 5.024-54.113 3.241 6.73-1.905 1.114-1.475-1.336-2.081-1.798-.446-3.987-1.13-5.17-1.522-2.635-.875-6.584-2.343-9.995-2.85-9.502-1.413-17.953-.153-27.678.53-13.551.953-27.67 1.706-41.145 3.534-5.209.7-9.703.914-14.996 1.022-3.518.07-18.675 3.403-21.387.914-.315-.284 10.702-1.582 11.116-1.652 3.987-.637 7.145-2.335 11.247-2.972 15.164-2.351 30.751-1.921 45.893-4.495 8.696-1.482 17.976-.061 26.595-2.42 10.163-2.78 21.671-3.879 32.664-6.068 18.06-3.595 36.751-5.362 55.058-7.544 16.032-1.905 32.403-4.363 48.297-5.062 7.013-.308 14.189-1.322 21.156-2.205 4.248-.546 8.773-1.537 12.553-2.574 1.702-.467 9.355-1.052 11.97-1.791-1.282.361-2.558.723-3.835 1.085 26.841-.6 53.552-5.194 80.454-7.26 35.36-2.712 70.537-4.379 105.767-8.312 18.698-2.09 36.628-4.064 55.45-4.471 19.811-.43 39.547-5.109 58.537-6.968-3.165-.453 3.272 0 3.618-.814-.07.161-22.409 1.49-23.868 1.736 1.128-.146 4.868.33 5.429.109-3.334 1.312-11.49 1.812-15.007 1.118 1.275.056 4.715-.967 6.205-.989-14.027-.284-27.74 2.474-41.552 4.202-16.67 2.082-33.648 1.936-50.456 3.358-28.762 2.427-57.923 3.625-86.654 7.459-40.43 5.393-81.26 2.581-122.152 6.399-6.261.584-12.584.707-18.829 1.49-4.901.615-10.102 2.95-14.972 3.135-5.677.215-11.815-.454-17.815-.116-10.617.6-21.34 2.267-31.904 3.55-17.83 2.166-35.829 3.572-53.774 5.907-5.447.707-10.932 1.736-16.41 2.128-8.98.638-23.63 5.354-31.987 2.235 16.094-4.978 35.022-4.57 51.685-6.345 7.029-.745 13.981-1.767 21.072-2.635 3.595-.446 5.96-1.805 9.395-2.32 4.133-.622 8.504.092 12.76-.469 27.148-3.556 54.373-4.509 81.437-7.705-3.495-2.058-9.725 1.813-12.898-1.183 3.134-.568 10.294-2.327 14.42-2.158-5.501-.968-13.828 1.09-18.883 1.46-3.972.291-7.982.476-11.992.714 3.81-.484 7.636-1.176 9.142-1.283 7.282-.53 14.242-1.46 21.44-2.428l1.268-.322c-2.381-2.59-21.226 1.267-24.621 1.728-2.735.369-15.072 3.45-16.724 2.028.553.653 2.32.791 4.502.715-2.105.169-4.218.276-6.3.553-5.123.676-10.055 1.375-15.271 1.751-14.043 1.022-27.218 3.08-40.969 2.604 8.381-2.88 18.514-2.427 27.24-4.74-20.057-.46-40.868 5.509-60.864 6.968-7.114.515-14.181 1.452-21.28 2.374-15.126 1.959-30.16 3.165-45.293 5.124 1.836.169 9.065 1.068 14.988 1.444-13.383.453-26.719.077-40.116 1.091-22.201 1.675-44.264 6.276-66.435 8.212-34.615 3.02-68.654 11.915-103.224 14.911-19.428 1.682-38.994 5.454-58.33 8.573-19.996 3.227-39.747 5.977-59.574 9.426-33.978 5.915-67.787 11.116-101.657 17.515-12.675 2.397-25.481 4.28-38.241 6.469-9.849 1.69-19.49 2.988-29.407 4.824-3.964.73-39.04 8.358-40.116 6.023 16.509-6.837 37.496-7.713 55.042-11.032 7.113-1.344 14.22-1.997 21.34-3.342 17.554-3.318 35.077-6.898 52.677-9.956 76.959-13.351 154.624-24.513 232.006-36.835 63.208-10.064 127.123-15.587 190.554-24.045-4.156-.154 2.166-.66 2.95-.753 2.258-.276 4.54-.169 6.79-.276 1.114-.054 2.136.092 3.765.015 12.114-.553 24.52-2.965 36.59-4.056 20.618-1.867 41.152-4.932 61.748-6.584C916.348 88.75 952.2 84.84 987.99 81.237c66.104-6.652 132.754-11.746 198.997-17.085-28.962-.407-58.983 3.795-87.891 6.238-15.18 1.283-30.52 2.62-45.532 3.603-16.063 1.052-32.61 4.97-48.689 4.386 4.11-1.736 12.553.584 15.964-2.412-1.083.83-11.001-1.144-13.974-.975-3.88.215-7.905.607-11.746 1.183-4.824.722-9.495 1.636-14.388 2.15-20.788 2.175-41.668 2.974-62.371 5.355-28.685 3.296-57.431 4.556-86.009 9.157-28.83 4.64-59.036 4.195-87.222 10.578-6.86 1.552-13.889.538-20.81 1.253-5.578.576-11.109 1.797-16.701 2.25-25.082 2.028-50.018 5.8-74.985 9.403-31.896 4.602-62.824 9.733-94.443 15.88-16.21 3.149-32.795 2.703-49.05 4.939-20.442 2.819-40.9 7.543-61.196 10.447-11.6 1.66-23.138 4.033-34.684 6.038-10.525 1.829-20.55 1.683-31.167 3.18-23.476 3.32-46.822 9.358-70.267 13.23-18.338 3.026-37.712 5.415-55.734 9.794-11.884 2.88-24.106 5.231-36.144 7.375-15.203 2.711-30.06 6.153-45.324 9.264-2.39.484-42.275 8.481-42.298 8.996.154-3.664 52.83-12.422 58.691-14.988-.768.039-4.647.177-4.524-.123 1.39-3.487 18.221-3.664 22.439-4.524 11.223-2.29 22.455-4.579 33.678-6.868 9.971-2.028 19.827-3.388 29.722-5.854 11.754-2.927 24.045-4.54 35.944-6.79 9.849-1.86 25.267-2.006 33.825-7.568-.765.027-1.53.05-2.295.07 2.566-.117 7.982-2.156 10.66-2.666 5.047-.968 10.924-1.368 15.749-3.25-20.389-1.613-41.599 8.681-59.675 10.248-7.551.653-17.223 2.497-24.652 4.525-13.336 3.634-27.202 6.83-40.86 9.364-15.365 2.85-30.33 6.983-45.686 10.118-15.487 3.165-31.604 4.847-46.676 9.126-17.37 4.924-35.076 8.65-52.784 12.522l-31.411 6.867c-3.311.73-20.273 2.29-21.61 4.34.937-1.981 11.761-3.625 14.48-4.224 5.64-1.23 10.748-2.251 16.018-4.594-10.048.346-22.747 3.365-32.542 5.961-3.78.999-7.136 2.428-11.054 2.965-1.303.178-3.815-.029-6.017-.058zm249.698-62.402l-.06.003a.86.86 0 0 0-.253.286c.065-.103.182-.197.313-.289zm0 0c.13-.09.275-.18.394-.271-.18.088-.334.18-.455.274l.061-.003zm179.793-20.552c-3.372-3.05-24.844 3.895-29.507 4.494-5.539.707-10.862 2.312-16.355 3.203-9.38 1.521-19.251 2.197-28.293 5.685 12.506-.177 25.881-4.171 38.21-6.276 11.209-1.913 22.356-3.918 33.664-5.885 1.09.046 1.85-.36 2.281-1.221zm29.307-4.67c-8.427.299-17.046 1.443-25.228 3.664 8.066.015 15.749-1.652 23.669-3.096.522-.192 1.037-.384 1.56-.569zm569.088-57.04c2.935-.177 5.892-.523 8.834-.86-5-.193-11.108-1.944-15.418.606-.276.162 5.954.292 6.584.254zm23.424-2.83zm21.209-1.365c8.796-.852 17.792-1.236 26.71-1.905-3.31-.077-7.013-.614-9.11-.584-6.914.108-13.99 1.176-20.865 1.821-4.635.44-13.564-.394-17.818 1.96 3.719-2.001 16.101-.807 21.083-1.292zm-135.911 23.2c-.477-.076-.96-.123-1.445-.13-.522.084-1.037.176-1.559.26 1.106-.068 2.635.016 3.004-.13zm115.454-11.538c-.145.075-.293.148-.444.218a2.42 2.42 0 0 0 .444-.218zm-17.078-.392c-7.974-.799-16.747-.76-25.22.323-8.727 1.114-17.723 1.398-26.442 2.688-8.135 1.199-16.424 1.39-24.575 2.566-4.978.715-15.072-.084-18.974 2.39-.876.583 10.486.422 12.39.276l18.138-1.36c12.038-.899 24.337-1.13 36.298-2.72 5.692-.76 10.985-1.543 16.762-1.636 7.3-.12 21.365 1.297 28.257-1.917-3.2 1.227-13.774-.325-16.634-.61zm91.094-5.823c1.882-.146 4.579-.046 7.206-.154-5.539-.007-12.253-1.428-16.916.254 2.39-.446 7.844.046 9.71-.1zm34.915-2.95c-4.179.553-9.257 1.698-13.013.161 2.389-.63 11.684-2.827 13.013-.16zm3.949-1.244c9.656-1.675 19.827-2.213 29.56-1.667-8.826 2.596-20.403 2.558-29.56 1.667zm30.59-9.265c-1.237-.1-2.481-.192-3.718-.284-1.176.292-2.351.576-3.526.868 2.412-.192 4.832-.384 7.244-.584zm8.05-.645c-2.181-.484-4.309-.315-6.383.514 2.128-.176 4.256-.345 6.384-.514zm98.53-1.106c-1.259.576-7.973.138-9.894.3l-6.983.575c5.962.361 12.392 1.183 16.878-.875zm177.011-5.309c2.205 1.43 5.938.515 8.712-.054-2.22-1.467-5.939-.553-8.712.054zm-44.732 5.024c4.908-.092 9.64-.138 14.565-.56-1.583.268 6.921-.4 5.477-1.39-2.274-1.568-11.3.076-14.273.16-5.286.146-14.074-.514-18.921 1.721 1.974-.845 10.378.115 13.152.07zm34.469 43.527c-10.501-.73-23.192-.814-33.302 2.143 9.749.922 20.38-.653 30.122-1.52l3.18-.623zm25.443-1.529c-3.372-3.31-12.852-.384-17.077.784 2.35.169 4.709.33 7.06.5 3.295-.677 6.79-.178 10.017-1.284zm70.544-6.384c-6-.468-12.022-.115-18.022.077-.86.031-11.615 1.506-10.985 2.282 2.689 3.28 23.56-1.452 27.379-1.805.545-.185 1.09-.377 1.628-.554zm114.463-8.788c-5.561-3.864-12.913-.999-18.967.407-6.168 1.43-13.251.722-19.481.876-8.589.215-16.87 2.182-25.413 2.55-8.696.377-16.124.254-24.644 2.605.484 2.773 77.973-4.61 86.293-5.385 1.106.169 1.844-.185 2.212-1.053zm12.13-.53c-.01.003-.02.006-.027.01a.157.157 0 0 0 .027-.01zm79.725-6.852c-.03.008-.06.017-.084.028a.846.846 0 0 0 .084-.028zM270.939 147.764c.576-.23 1.221-.4 1.744-.676-.492.261-1.083.484-1.744.676zm-37.934 7.267c.43.515 1.037.576 1.805.177 6.799-1.283 13.674-2.382 20.442-3.856 4.763-1.038 10.97-1.714 15.687-3.588-4.402 1.29-12.045 1.237-16.309 2.25-5.393 1.276-17.093 1.852-21.625 5.017zm29.522-10.54c-3.303 1.644-8.804 2.436-12.383 2.336 3.303-1.621 8.811-2.443 12.383-2.336zm46.408-7.298c-2.474 1-5.247 1.514-8.305 1.575 2.466-.998 5.224-1.513 8.305-1.575z" fill="${n}" fill-rule="nonzero"/></svg>`,33:`<svg viewBox="0 0 1920 358" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1917.452 7.061c-.313 1.498-4.576 1.888-6.03 2.812-2.74 1.734-5.044 4.348-8.481 6.12-9.324 4.802-19.8 9.275-29.307 12.818-3.205 1.191-6.139 2.275-8.976 4.057-1.82 1.152-1.694 3.001-3.776 4.376-3.127 2.12-7.57 2.682-10.92 4.425-6.333 3.282-11.638 8.597-18.251 11.54-13.593 6.052-27.322 13.061-40.674 18.483-6.1 2.479-12.586 4.802-18.802 7.64-6.477 2.952-6.138 6.09-13.254 8.655-.688-.997-.049-1.753 1.926-2.266-18.918 4.677-37.807 13.961-56.435 21.33-14.097 5.586-28.349 10.194-42.533 15.103-14.01 4.85-27.806 12.006-42.145 14.64-7.387 1.355-13.729 3.998-20.642 6.68-3.805 1.471-7.455 1.781-11.192 3.708-3.079 1.588-9.76 3.524-11.899 6.177-.32.397 10.486-2.13 11.812-2.556 4.599-1.5 9.43-2.634 14.068-4.435 7.63-2.952 15.133-6.322 22.665-8.674 15.094-4.725 30.488-9.324 45.418-14.978 16.933-6.41 34.109-14.33 51.507-19.18 13.565-3.786 26.8-5.102 40.296-9.837 12.984-4.55 27.051-11.328 38.757-15.162 7.203-2.362 14.213-4.89 20.97-8.239 4.658-2.314 16.053-9.75 21.543-7.136 1.723 1.124-10.544 5.422-11.454 5.78-3.814 1.501-7.755 3.428-11.744 4.86-4.068 1.46-33.117 10.84-35.682 13.865 1.455-.942 7.834-.244 8.621.194-1.433.89-8.365 4.734-9.517 4.425 1.55.561 4.918-.281 8.781-1.637-3.243 1.608-5.973 3.04-6.922 3.505-2.11 1.055 24.592-9.052 24.263-9.372-1.675-.716-.204-1.394.687-1.762 3.224-1.355 6.303-3.127 9.75-4.367 8.888-3.195 15.404-7.019 24.379-8.413-3.34 3.66-13.787 9.023-18.396 11.802-5.063 3.05-12.16 6.032-17.611 8.433-8.143 3.582-16.44 6.148-24.524 9.798-21.93 9.895-44.953 18.85-67.773 26.819-24.36 8.51-48.487 17.563-72.518 26.732-9.44 3.601-19.615 5.499-28.92 9.42-5.034 2.12-9.75 4.173-15.055 5.896-8.258 2.692-24.718 11.802-33.19 10.505.136.02 22.046-8.133 25.87-11.037-3.727 2.478-26.344 7.222-29.597 8.752-5.102 2.411-11.686 8.007-18.211 7.3.6-.503 1.21-1.016 1.81-1.53-5.673.078-10.543 3.835-15.83 5.393-3.64 1.075-7.445 1.278-11.211 2.556-7.523 2.566-15.22 4.948-22.927 7.01-20.167 5.393-37.856 14.048-58.159 18.618-18.26 4.105-36.055 9.42-54.393 14.755-20.487 5.955-41.07 11.59-61.683 17.128a11184.603 11184.603 0 0 1-30.943 8.249c-2.155.577-21.629 4.369-24.487 5.756 1.86-1.26 11.064-4.63 12.365-5.31 12.586-6.536 1.278-5.103-6.448-3.012-11.047 3.001-22.675 5.557-34.06 7.949-22.26 4.666-44.818 11.56-65.324 15.249-33.122 5.954-68.78 11.502-101.263 20.835-15.53 4.463-32.096 4.192-47.76 7.262-20.594 4.027-41.933 7.735-62.691 10.398-33.954 4.347-68.741 8.49-102.773 14.252-15.23 2.575-29.733 3.708-45.079 5.877-6.342.9-50.2 6.69-51.091 3.62 5.015-.706 20.429-.01 23.962-3.843-.62.668-20.206 1.568-21.987 1.694-11.483.804-23.217 2.198-34.67 2.895-10.602.649-20.623 4.318-31.186 4.415-12.625.106-24.418 1.975-36.8 3.224-12.239 1.24-22.008 1.491-35.107 1.917-9.295.3-18.231 2.353-27.41 3.108-10.485.871-21.203-.155-31.737-.02-24.863.31-49.678 1.404-74.705 2.111-9.75.271-19.383.145-29.2.649-7.63.397-31.05 4.105-35.833-.63 12.905-4.57 30.217-.939 43.616-1.607 9.12-.455 18.009-.648 26.993-.464 20.342.406 39.793-1.327 60.038-3.002 52.369-4.347 104.167-6.69 156.1-12.576 11.929-1.356 24.012-3.331 35.64-4.454 9.217-.89 18.608-1.181 28.135-3.05 7.687-1.51 14.978-1.24 22.83-2.314 9.982-1.375 20.826-3.36 31.011-3.543 18.822-.349 37.75-5.52 56.532-7.485 16.247-1.704 32.686-6.777 48.807-8.21 6.1-.532 12.14-.31 18.289-1.133 4.308-.57 10.088-.377 14.077-2.294 1.114-.533 4.154-3.65 3.912-3.553 6.36-2.489 16.081-3.38 22.646-4.444 11.812-1.917 23.197-2.963 35.426-4.173 7.823-.785 18.211-2.42 24.872-6.603-17.291-1.191-33.17 5.644-50.268 6.98-18.037 1.414-36.21 4.338-54.228 6.962-13.39 1.946-26.17 4.502-39.638 6.012-16.45 1.84-33.363 3.834-49.552 6.584-61.828 10.514-125.264 13.874-187.721 20.932-61.5 6.951-123.473 6.642-185.321 9.837-54.838 2.836-110.219 2.343-164.873-.455-18.85-.969-38.301 0-56.629-2.673-22.2-3.233-44.42-5.935-66.485-9.885-24.825-4.444-50.027-11.56-73.157-21.358-6.273-2.662-54.847-22.723-52.514-27.932 8.597 1.384 17.94 9.41 25.928 13.1 19.035 8.78 37.643 16.284 58.033 21.958 34.148 9.498 69.894 17.873 105.823 20.67 89.606 6.981 179.55 3.583 269.079 2.315 40.867-.581 82.044-4.648 122.756-7.29 14.707-.96 29.762-3.022 44.314-4.542 14.794-1.549 31.185-1.462 46.047-5.547-13.06-1.55-27.438 2.265-39.802 3.456-13.594 1.307-27.41 3.108-41.187 3.776-15.868.775-32.473 2.866-47.993 3.282-9.808.262-21.968 3.737-31.563 1.985 2.392-1.694 8.762.687 10.321-1.869 1.481-2.09-21.658-.513-24.166-.116-15.917 2.498-32.59 1.782-48.584 2.043-21.484.358-44.004 1.723-65.536 1.772-18.26.039-36.617 1.046-55.003-.078-19.025-1.161-37.992-1.045-57.181-.677-17.573.339-33.722 1.278-50.8 1.549-17.922.28-35.388-5.703-53.164-6.71-16.043-.91-31.166-4.918-46.88-8.016-9.943-1.956-16.943-5.383-26.063-8.743-11.754-4.328-24.612-8.646-36.888-12.219-12.683-3.688-24.244-8.394-35.736-15.403-8.433-5.142-18.163-8.646-26.402-14.756-10.38-7.687-22.036-14.823-31.709-23.914-.89-.833-16.042-16.072-15.345-16.488 1.103-.668 27.119 24.156 31.834 25.647-1.114-.823-1.54-1.8-1.288-2.924 3.147-.377 5.848 4.832 7.784 6.429 5.277 4.347 11.793 8.084 17.592 11.647 7.63 4.686 14.784 9.101 22.927 12.432 9.904 4.047 33.606 19.102 43.49 15.578a4.152 4.152 0 0 1-1.606-1.588c5.218-1.026 11.899 4.967 17.408 4.54-5.258-5.072-18.406-8.655-25.357-10.465-4.338-1.133-5.519.716-9.537-.707-1.946-.697-6.041-3.253-8.684-4.463-13.207-6.061-27.38-11.909-40.064-19.403-17.805-10.524-33.848-24.001-48.37-38.466-10.515-10.466-17.902-24.873-24.535-37.924C5.42 189.772-.35 174.901.017 174.97c1.781.116 8.81 16.565 10.63 18.192-.525-4.023-2.884-9.587-4.814-14.314l-2.6-6.285c-.433-.805-.911-1.606-1.344-2.414L0 167V0h1920v6l-2.548 1.061zM218.237 314.04c-.485-2.324-19.21-4.018-21.804-4.705-6.932-1.83-18.483-5.16-25.618-4.464 6.157 4.009 16.333 3.834 23.314 5.848 7.387 2.13 14.62 2.75 22.374 4.067.843.222 1.414-.03 1.734-.746zm382.434 18.096c.513 1.849 11.83-.088 12.325-.126 2.691-.271-13.071-2.518-12.325.126zm32.182-1.095c6.67-.28 13.768-1.278 20.622-2.062 2.808-.3-6.312-.958-8.21-.871-4.936.232-22.074-.445-25.083 2.727.813-.856 10.824.284 12.671.206zm196.58-18.656c-4.433-.126-9.362.474-13.573 1.897 2.972.804 6.554-.571 9.653-.048 1.307-.62 2.614-1.24 3.92-1.85zm10.903-.736c-1.666.958-3.457 1.239-5.354.852.948-1.733 3.379-2.256 5.354-.852zm-47.926 23.197c.852-.658 5.848-.503 3.94 0-1.18.175-4.743.678-3.94 0zm23.72-2.13c-1.17 1.065-13.37 1.424-13.254.959 1.424-3.224 13.633-1.297 13.255-.959zm29.87-4.453c-3.99-.61-20.594.523-23.615 3.272 3.108-2.662 15.772-.32 20.294-1.423 1.113-.62 2.217-1.24 3.32-1.85zm218.2-43.404a7.247 7.247 0 0 1-4.347.988c-1.627-.33 5.383-2.256 4.347-.988zm35.32-7.465c-2.73.34-4.56-.523-7.475-.203-7.29.804-11.957 3.02-16.44 5.983 2.488 3.505 31.33-5.576 36.685-6.758 2.381-4.376-11.415.823-12.77.978zm39.676-7.213c-2.779 2.518-10.437 1.598-12.074 3.302 2.014-2.13 12.287-3.486 12.074-3.302zm58.072-11.899c-4.25 1.036-7.465 2.014-11.851 1.51.93-4.056 14.484-3.804 11.85-1.51zm29.636-9.285c.106-2.45 14.88-1.8 10.263.513-1.704-.184-10.38 2.237-10.263-.513zm37.197-7.871c-3.64-.397-18.453 1.83-20.331 5.15-.223.34 14.077-1.984 16.953-3.862a8.459 8.459 0 0 0 3.378-1.288zm13.4-1.491c1.714-1.172 3.437-2.353 5.16-3.524-.145-.29-.28-.572-.416-.862-4.908.271-4.008 1.83-7.038 3.737.329.707 1.558 1.21 2.294.649zm35.542 4.115c-5.857 1.007-13.4 1.045-18.211 4.996.387 1.161 11.918-2.663 14.552-2.556a9.732 9.732 0 0 0 3.66-2.44zm51.74-28.049c-2.285-3.001-22.065 3.931-25.908 4.987-3.534.968-7.194 2.846-10.95 3.843-5.78 1.53-13.12 2.508-18.522 5.364 8.772.89 17.96-2.856 26.18-5.538 8.53-2.779 16.74-3.64 25.289-6.235a529.832 529.832 0 0 1 3.911-2.42zm10.157-2.904c.28-.465-3.525.435-2.498.174 2.691-.774-6.671-.116-5.77.823.851.89 5.634-.368 6.68-.358a270.34 270.34 0 0 1 1.588-.64zm9.352-1.375c3.883-1.113 13.99-2.508 16.556-6.012.262-.349-23.75 2.769-16.556 6.012zm12.887 9.498c.687 1.597 8.917-1.636 9.4-1.772 3.806-1.171-10.61-1.046-9.4 1.772zm15.907-4.105c-.523.261-1.046.523-1.568.774-2.798-.135 1.54-.726 1.568-.774zm-1.423-14.668c1.442-1.094 3.166-1.588 5.238-1.51-1.482 1.103-3.205 1.597-5.238 1.51zm18.657 10.195c-.746.571-5.48 3.989-6.603 1.781-1.307-2.565 10.35-4.599 6.603-1.781zm-9.75-12.219c3.65-.29 7.571-.455 11.096-1.375 1.82-1.316 3.65-2.643 5.48-3.96-4.6-.387-11.793 3.96-16.576 5.335zm24.253 8.569c-3.408-2.266-7.426-.252-10.766 2.12 1.21 2.14 8.249-.968 8.917-1.162.62-.32 1.23-.648 1.85-.958zm1.56-14.726c-1.55 1.161-3.283 1.675-5.21 1.549.726-2.004 3.04-2.653 5.21-1.55zm13.26 9.334c-.623.095-3.662.221-4.363 1.045.852.358 1.675.319 2.478-.126.644-.308 1.288-.607 1.923-.914l-.039-.005zm18.118-5.49c-.28.212-4.938.919-6.506 2.826 1.481-1.055 1.772-1.055.89.01 1.443-.794 4.222-1.723 5.616-2.837zm3.863-14.214c-1.52.475-20.738 5.122-20.254 3.767 1.384-4.27 20.002-3.69 20.254-3.767zm239.084-65.788c3.999-.358 7.465-.068 11.919-1.22 6.67-1.723 14.048-5.315 20.428-8.123 5.277-2.324 10.621-4.367 15.975-6.71 2.402-1.055 11.764-4.037 12.577-5.818.726-1.724-10.408 2.13-11.163 2.4-6.642 2.392-13.293 4.774-19.935 7.165-12.577 4.522-24.447 8.627-37.159 12.993-2.207.775 6.37-.59 7.358-.687zm-68.005 22.549a32.232 32.232 0 0 0-6.69 2.391c1.394 2.479 6.903-.57 8.287-1.665-.251-.687-.784-.93-1.597-.726zm-26.403 8.762c-.251.087 8.791-.91 12.2-2.227 1.849-.716 3.66-1.23 5.392-2.198-6.012-.474-12.034 2.547-17.592 4.425zm-6.854 8.782c2.352-.765 6.148-2.982 8.636-2.498 1.094.174-11.405 4.066-8.636 2.498zm-6.023-3.457c-.59.717 5.316-.978 4.26-1.365-1.558.01-2.972.465-4.26 1.365zm-86.952 27.72c-3.012.367-6.323 1.945-9.227 2.836-2.169.668-10.612 4.831-12.616 4.425 6.37 1.597 18.822-5.412 24.38-7.126 4.143-1.346-4.958.155-2.537-.136zm9.914-15.55c-2.789.95-7.659 3.844-10.253 1.675 2.091-.88 12.102-2.314 10.253-1.675zm15.142-4.686c-1.384.455-8.336 3.786-9.478 2.053-2.314-3.486 14.823-5.683 9.478-2.053zm23.082 4.686c-5.122.688-11.202 6.361-15.317 5.79 4.231 1.307 11.028-4.812 15.317-5.79z" fill="${n}" fill-rule="evenodd"/></svg>`,34:`<svg viewBox="0 0 1920 381" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M.025 367.84L0 368V0h1920l-10.314 7.057c-.107 2.047-5.607 4.204-6.828 5.613-2.445 2.811-2.466 6.336-6.568 8.791-4.658 7.606-17.698 16.125-24.884 21.276-6.767 4.815-8.519 9.798-14.624 15.002-9.872 8.403-18.339 17.918-28.4 26.217-10.826 8.917-22.45 16.838-33.224 24.601-4.249 3.063-9.683 5.56-13.387 9.253-4.427 4.417-3.336 5.917-9.914 9.715-.87-.903-.377-1.805 1.5-2.707-17.939 7.868-35.196 20.1-52.748 30.172-12.515 7.176-25 12.148-38.008 18.307-16.503 7.826-32.554 17.477-50.284 22.314-6.819 1.857-12.756 5.319-19.145 8.13-5.582 2.455-16.922 4.91-20.71 10.218-.482.682 12.065-3.304 13.303-3.734 6.892-2.371 13.596-5.141 20.216-8.236 8.844-4.133 16.9-7.658 25.84-11.257 24.023-9.662 47.303-20.824 69.858-34.022 10.334-6.053 22.566-10.721 33.75-14.77 17.163-6.222 35.48-15.097 49.758-26.91 6.484-5.361 14.95-9.421 22.671-14.97 5.445-3.914 16.125-16.482 23.332-14.824.944.367-18.8 14.886-20.71 16.093-3.756 2.38-32.457 19.453-32.987 22.008.295-1.419 8.033-1.92 8.995-1.572-1.144 1.154-7.763 6.4-8.823 6.274 1.805.346 5.172-1.249 8.907-3.525-3.021 2.35-5.602 4.427-6.588 5.172-2.099 1.573 23.478-14.058 22.587-14.635-.577-.462-2.004.031-3.82.996 1.71-1.269 3.19-2.381 4.082-3 3.294-2.287 6.378-5.078 9.945-7.333 7.952-5.036 13.124-9.862 21.496-13.345-2.14 4.123-10.826 11.394-14.55 14.845-4.617 4.27-9.967 7.575-14.845 11.54-6.987 5.686-14.583 10.512-21.895 15.789-19.66 14.184-41.691 25.252-62.463 37.83-24.486 14.824-51.752 26.238-77.37 38.513-9.642 4.616-20.08 7.616-29.669 12.337-5.634 2.77-10.9 5.35-16.911 7.564-8.372 3.074-24.507 12.977-33.1 11.823.011 0 23.06-9.61 26.658-12.704-3.535 2.654-27.329 8.613-30.654 10.27-5.256 2.623-12.107 8.456-18.957 7.7.629-.555 1.248-1.101 1.867-1.657-7.774.094-20.583 6.242-28.567 8.76-8.854 2.801-17.813 5.434-27.067 7.606-18.526 4.343-34.955 10.25-53.409 14.498-17.415 4.018-34.19 6.42-51.804 9.704-23.794 4.428-47.681 8.173-71.716 11.068-11.1 1.343-22.22 2.529-33.35 3.599-1.924.185-30.833 1.347-32.25 2.026.794-.666 12.655-2.705 14.11-3.18 12.075-3.913 5.424-4.889-3.493-4.69-11.687.263-23.405-.189-35.071 1.05-7.323.776-14.436-.62-21.832-.043-4.49.357-9.756 2.13-14.205 2.14-3.776.011-7.815-.471-11.613-.88-8.152-.882-12.778 1.28-20.111 1.059-18.517-.556-40.411-3.871-60.092-6.148-11.351-1.311-23.427-.566-34.704-2.098-9.306-1.259-18.884-1.248-28.147-3.367-5.424-1.249-10.334-1.008-15.611-1.543-4.962-.503-9.001-3.577-13.69-4.364-5.928-.997-13.482-1.49-19.587-2.266-20.856-2.665-41.544-7.018-62.19-10.113-33.13-4.973-66.093-12.747-99.538-17.95-14.373-2.235-27.77-5.403-42.363-7.659-6.095-.944-48.562-8.245-48.562-11.277 4.951.734 19.806 5.854 24.087 3.084-.487.314-22.168-4.805-22.933-4.962-5.256-1.06-10.26-2.36-15.737-3.137-10.826-1.532-21.14-4.773-32.081-5.508-12.254-.818-23.321-4.102-35.659-5.507-8.949-1.018-19.135-.462-27.675-1.815-8.77-1.385-20.268-4.333-30.581-5.204-11.939-1.018-24.245-.66-36.393-3.137-24.612-5.014-51.101-7.081-76.217-7.102-14.509-.01-28.787-.692-43.327.02-6.735.326-27.518 3.348-31.704-.838 11.624-5.487 31.4-1.71 43.989-1.574 14.456.168 28.587-.346 43.023.64 19.545 1.332 40.348 1.28 60.375 3.986 11.897 1.606 24.518 1.186 36.425 3.64 9.106 1.879 18.873 1.533 28.116 2.708 8.948 1.133 17.215 3.598 26.216 3.451 11.3-.189 23.406 3.294 35.114 4.71 13.564 1.627 28 2.466 41.24 4.68 10.081 1.678 19.156 4.962 29.783 6.252 8.466 1.028 15.789 3.126 24.234 4.668 9.715 1.773 20.5 2.718 30.172 5.235 18.39 4.784 38.26 5.907 56.567 11.184 16.209 4.668 33.896 3.85 50.105 7.805 6.441 1.574 13.156 4.07 19.775 5.476 4.574.976 9.988 2.203 14.635 1.72 1.647-.167 3.61-2.087 3.871-2.097 6.757-.347 16.513 1.93 22.986 2.99 12.159 1.993 23.689 4.637 36.152 7.207 7.637 1.573 18.327 3.2 25.902 1.143-13.47-5.686-29.71-6.504-44.272-8.193-18.852-2.182-38.24-6.767-57.123-10.512-26.804-5.319-54.144-9.956-81.105-15.726-112.82-24.14-229.458-42.866-344.313-49.842-36.54-2.224-75.104-3.221-111.54.094-44.87 4.092-90.358 5.308-134.21 16.995-30.161 8.036-59.127 18.475-88.974 28.756-17.834 6.137-35.417 14.897-52.412 23.468-5.235 2.644-10.491 6.022-15.328 8.466-3.147 1.585-29.615 19.01-31.808 17.457-1.248-.891 41.313-26.133 46.254-28.881 13.324-7.396 27.33-13.05 40.537-19.23 28.347-13.26 58.215-21.076 88.145-29.385 73.07-20.28 146.485-21.633 221.716-23.038 36.833-.682 74.17 4.784 110.815 7.92 32.795 2.801 65.695 8.624 98.363 12.978 14.53 1.93 31.054 7.112 46.307 6.315-11.361-5.025-26.626-6-38.27-7.249-12.841-1.374-25.452-3.745-38.555-5.267-17.058-1.982-35.386-4.668-51.93-7.238-9.756-1.521-22.398.22-31.567-3.158 2.633-1.437 8.602 2.035 10.533-.357 2.067-2.287-22.933-4.091-25.808-4.05-15.652.221-30.938-2.821-46.475-3.608-20.184-1.018-41.69-2.57-61.907-1.542-9.62.482-19.104 1.888-28.829 1.353-10.187-.566-17.425.776-27.539.378-17.152-.682-35.417 1.72-52.475 4.437-18.915 3.011-36.1 6.431-53.378 11.456-16.555 4.805-35.68 6.337-52.035 11.551-13.9 4.427-26.794 8.246-40.18 13.072-17.164 6.19-32.764 10.082-48.794 18.086-23.688 11.823-47.209 24.14-68.873 39.53-6.055 4.299-51.723 39.294-50.237 43.443-1.484-3.368 23.118-25.477 24.797-28.598-3.127-.252-2.403-1.144-1.427-2.088-5.004 3.462-10.082 6.871-14.394 11.005-8.099 7.763-15.421 17.048-21.81 26.888-1.857 2.875-14.383 27.969-13.9 35.974-.746-4.669 1.174-14.887.923-16.89-2.927 3.556-4.28 13.868-4.04 18.558.032.713 1.574 15.484 1.186 15.17-3.033-2.448-3.879-7.45-4.026-12.527zM1830.68 44.164c7.428-5.917 12.747-10.764 18.275-18.853-1.175-.88-18.4 17.09-25 23.605 2.613-1.794 5.078-3.441 6.725-4.752zm-6.725 4.762c-3.546 2.424-7.385 5.12-10.081 7.764 2.885-1.836 5.665-3.767 7.973-5.76.43-.377 1.164-1.08 2.108-2.004zM181.19 182.046c-12.232.892-20.142 10.554-31.462 13.386 8.75-.42 16.282-9.956 24.885-10.27a15.64 15.64 0 0 0 6.577-3.116zm43.307-13.932c.997-.304-8.277-.23-10.931.64-4.774 1.563-8.97 3.787-13.691 5.109-2.875.808-14.53 2.958-15.925 5.948-.105.305 16.334-3.64 18.516-4.259 7.008-1.983 14.74-4.983 22.031-7.438zm17.866-4.731c3.21-2.193 8.204-3.18 12.138-3.043-3.86 1.175-8.036 2.864-12.138 3.043zm-88.47 62.903c-7.333-.556-17.415 5.466-23.29 9.442-6.766 4.585-10.124 7.323-17.572 11.488-11.173 6.242-24.003 13.795-34.18 21.82-4.815 3.798-8.392 9.296-12.861 13.209-1.112.976-2.319 1.846-3.504 2.759 3.766-2.35 7.637-4.417 8.57-5.12 7.166-5.402 14.698-9.651 22.095-14.31 6.483-4.08 11.917-9.126 18.663-13.123 6.43-3.809 25.388-10.418 28.22-17.583a4.005 4.005 0 0 1-2.276.063c2.55-4.543 12.631-4.973 16.135-8.645zm53.147-23.353c-1.657-2.003-18.61 6.578-20.96 7.376-7.103 2.391-19.42 6.735-24.476 12.232 7.658-.913 17.09-7.102 24.391-10.03 6.505-2.601 13.104-5.297 19.891-8.014.881-.22 1.27-.735 1.154-1.564zm26.878-22.345c2.182-.882-5.676.912-7.47 1.51-2.087.703-11.162 5.13-12.337 4.753 5.602 1.73 14.719-4.532 19.807-6.263zm358.024 5.486c-.283-3.136 14.992 2.14 12.232 1.93-.514-.041-12.043.064-12.232-1.93zm46.422 4.742c-2.329-.45-4.616-.87-7.05-1.206-3.545-.483-16.91-3.819-19.806-1.532.314-.262 12.096 2.098 13.764 2.371 6.252 1.018 12.914 1.847 19.44 2.518 3.105.367-4.973-1.888-6.348-2.15zm153.231 28.011c-3.724-.566-11.246-.336-14.32-2.518-.084-.084 17.404 2.97 14.32 2.518zm28.787 4.994c-4.217-1.48-9.221-2.36-13.701-2.161 2.58 1.72 6.515 1.405 9.326 2.885l4.375-.724zm5.309 1.815c1.531-1.563 3.923-1.238 5.423.808-1.898.42-3.703.157-5.423-.808zm-43.548 11.298c-1.28.735-4.532-.954-4.396-1.017 1.144-.483 4.28 1.06 4.396 1.017zm18.988 3.935c.766-.378-10.784-5.739-12.998-3-.325.566 11.603 3.713 12.998 3zm26.29 5.392c1.26-.262 2.508-.535 3.777-.797-3.41-1.847-20.174-5.76-23.688-3.945 3.567-1.7 15.369 4.522 19.912 4.742zm228.378 26.51a6.986 6.986 0 0 1-4.543-.42c-1.5-.88 5.959-.545 4.543.42zm36.865 3.337c-2.812-.441-4.04-1.91-6.872-2.497-7.7-1.616-12.851-.672-18.338 1.08 1.301 4.207 32.826 3.85 38.093 4.176 3.378-3.599-11.341-2.529-12.883-2.76zm28.41 3.934c2.475-1.574 13.354-.242 12.882 0-3.41 1.815-10.931-1.217-12.883 0zm61.697 1.72c1.898-3.997 15.547-.503 12.274 1.322-4.553.053-7.963.304-12.274-1.322zm44.23-1.385c-.651 2.655 8.58 2.078 10.26 2.613 5.37-1.616-9.6-5.34-10.26-2.613zm79.646-3.535l1.898.157c-.094-.008-4.264 1-1.898-.157zm-40.41 3.126c-3.547-1.206-19.105-2.066-21.633.923-.514.515 14.74.997 17.95-.325a223.9 223.9 0 0 1 3.682-.598zm19.754-1.72c-.095-.336-.178-.661-.273-.997-5.088-.598-4.385 1.238-7.805 2.738.2.787 1.343 1.595 2.213 1.112 1.952-.944 3.903-1.899 5.865-2.853zm29.868 13.596c-5.875.031-14.174-1.133-19.577 2.098.2 1.322 12.663-.734 15.412-.136a9.847 9.847 0 0 0 4.165-1.962zm56.976-22.262c-1.983-3.525-23.028.766-27.193 1.375-3.713.535-7.742 2.087-11.697 2.643-6.106.86-13.743.724-19.692 2.801 8.876 2.56 18.727-.199 27.529-1.95 9.169-1.837 17.54-1.428 26.741-2.896 1.437-.661 2.875-1.322 4.312-1.973zm9.033-1.364c.566-.178 1.122-.346 1.689-.514.356-.482-3.662.074-2.581-.094 2.675-.493-6.735-.787-5.99.23.744 1.018 5.853.253 6.881.378zm29.017-5.539c.347-.398-24.79.22-17.582 4.606 4.144-.777 14.676-1.186 17.582-4.606zm4.774 15.4c-.546.106-9.369 2.645-9.935.872-.997-3.169 13.995-1.69 9.935-.871zm6.966-1.783c-.021.042-4.595.2-1.69.661.557-.21 1.123-.43 1.69-.66zm5.161-17.047c-2.108-.21-3.923.136-5.497 1.133 2.109.346 3.924-.01 5.497-1.133zm6.096 15.096c1.007 2.465 6.19-.934 6.966-1.48 4.05-2.79-8.152-1.415-6.966 1.48zm-2.298-15.4c3.777-.053 7.826.041 11.488-.703 1.961-1.301 3.913-2.602 5.875-3.903-4.606-.734-12.432 3.472-17.363 4.605zm22.566 11.865c.661-.305 1.322-.609 1.972-.913-3.241-2.591-7.679-.787-11.309 1.563 1.112 2.382 8.571-.472 9.337-.65zm4.375-16.639c-2.203-1.385-4.595-.892-5.466 1.238 1.972.273 3.798-.136 5.466-1.238zm13.48 11.152c-.03.042-3.881-.126-4.73.776.86.462 1.72.483 2.601.074.713-.284 1.427-.567 2.13-.85zm13.03-2.025c1.616-.84 4.354-1.605 5.938-2.811-.273.188-5.182.786-6.86 2.77 1.573-1.07 1.877-1.06.922.041zm10.302-18.023c-1.657.461-21.548 4.532-20.992 3.116 1.584-4.449 20.751-3.043 20.992-3.116zm262.82-93.223c-8.782 5.529-17.993 9.421-27.476 14.341 1.416-.734 11.582-1.552 15.62-2.654 8.53-2.34 19.115-10.407 26.438-15.222 3.567-2.35 22.996-12.4 23.961-16.45.346-1.72-15.054 6.767-17.32 8.078-6.977 4.04-14.405 7.616-21.224 11.907zm-94.041 47c1.647 2.486 7.154-.871 8.497-2.245-.314-.693-.902-.924-1.741-.672a31.835 31.835 0 0 0-6.756 2.917zm-2.025 2.203c-6.253-.168-12.295 3.546-17.856 5.948-.23.105 9.033-1.406 12.453-3.231 1.804-.965 3.672-1.595 5.403-2.717zm-15.443 12.61c-2.591-.367-6.42 2.308-8.77 3.284-2.843 1.94 10.019-3.169 8.77-3.284zm-10.994-1.815c1.185.357-4.879 2.623-4.291 1.762a7.35 7.35 0 0 1 4.29-1.762zm-7.659 3.535c-.042.063-9.011 2.78-9.064 2.801-1.206.494 7.48-.461 9.064-2.8zm-110.301 22.283c-.336-.619-.976-.66-1.92-.136.294.63.934.671 1.92.136zm2.79.074c-.912.839-1.783.88-2.622.136.283-.692 2.507.031 2.622-.136zm11.866 10.207c-2.12.661-11.226 4.92-13.177 4.427 6.693 2.015 19.576-5.465 25.367-7.333 1.51-.524-9.736 2.13-12.19 2.906zm9.022-18.097c2.192-.965 12.494-2.475 10.543-1.773-2.906 1.039-7.868 4.113-10.543 1.773zm16.334-4.584c-2.476-3.787 15.338-5.875 9.799-2.025-1.47.472-8.582 3.882-9.799 2.025zm34.033 2.738c-5.277.85-11.624 7.239-15.779 6.599 4.333 1.416 11.414-5.424 15.779-6.599zM77.97 240.292c5.31-3.433 18.002-9.214 21.568-15.086-1.395 1.236-9.67 5.45-11.759 7.008-1.28.954-12.925 10.123-9.809 8.078zm21.626-15.082c.042-.068.082-.136.122-.204a.862.862 0 0 1-.18.2l.058.004zm-8.512-2.145c-.986 1.794-5.655 4.449-7.344 4.732.976-1.763 5.676-4.47 7.344-4.732zm29.228-14.162c-1.249 1.51-2.959 2.444-5.11 2.832 1.26-1.5 2.96-2.434 5.11-2.832z" fill="${n}" fill-rule="evenodd"/></svg>`,35:`<svg viewBox="0 0 1920 213" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1919.173 80.207c.278.108.554.22.827.34-1.73-.748-12.547 3.453-15.827 3.925-9.7 1.4-20.288 2.517-30.074 3.146-16.087 1.039-31.474 4.744-48.064 6.946-15.041 1.999-30.924 2.95-45.752 3.965-6.663.456-13.404-.18-20.185.865-.693.103-17.299 3.831-8.716 1.055-32.835-2.895-68.053.873-100.951.196-14.38-.29-28.524.205-42.684-.723-12.004-.78-34.03-5.043-44.705.393 3.146-1.605 19.053 1.825 24.449 1.92 8.433.157 17.062-.528 25.244-.536 22.78-.015 45.28 1.912 68.108 1.448 25.314-.52 49.346 3.618 74.724 3.666 16.669.031 32.205-.181 48.544-.874-13.774.787-28.013 1.833-31.616 2.368 2.085.134 6.954 2.439 7.112 2.478-1.888.346-8.654 1.605-10.014.795 1.077.74 2.706 1.18 4.53 1.502.36.064 6.178 1.483 10.526.873.653-.22 10.612-1.597 10.958-1.022 4.61-.968 9.432-1.66 12.594-1.935 8.402-.732 15.45-1.251 23.505.007-18.344 8.402-45.853 6.105-65.984 6.797-16.842.582-33.731.826-50.754 1.212-26.298.605-52.533-.181-78.901.094-12.634.126-25.244-.181-37.964-.346-14.758-.197-39.026 4.948-52.116-1.204.449.22 22.349.15 26.754-1.022-4.783.99-32.315-1.747-34.644-1.684-.566.016-17.18 1.518-11.343-.37-11.194-3.272-28.335-1.345-40.182-1.895-11.069-.512-22.38-1.48-33.622-1.48-19.39 0-40.245-.597-60.06-1.934-23.034-1.558-46.216-2.935-69.375-4.004-16.244-.756-32.48-1.503-48.725-2.25-.96-.048-21.106-2.29-24.19-1.739 2.518-1.266 16.913-1.18 19.407-1.786-3.792-7.166-52.666-6.639-61.083-6.741-18.51-.228-35.95.07-53.508-1.353-65.127-5.286-130.915-9.833-196.718-10.313-33.165-.244-66.637-1.762-100.03-2.108-10.313-.103-87.31 4.232-88.86-.818-10.014-.504-18.046-1.11-21.743-1.023-12.193.275-24.032 1.337-36.202 2.045-27.666 1.597-53.46 2.329-80.71 4.917-29.712 2.824-59.7 3.445-89.639 6.655-13.782 1.479-27.887 2.997-41.7 4.578-8.661.991-36.886 9.818-44.053 5.35 12.422-6.042 29.515-4.69 42.999-6.719 11.58-1.746 23.048-2.957 34.683-4.263 18.809-2.109 37.39-4.327 56.568-6.349 82.347-8.66 165.566-10.32 248.164-12.067 32.49-.692 66.496-1.392 98.71.362 19.579 1.07 37.035.102 56.174.504 17.173.361 42.117 6.725 59.44 1.754-16.638-4.5-36.32-3.666-53.39-4.885-19.006-1.361-38.334-1.943-57.387-1.951-32.245-.008-65.071-1.408-97.529-1.778-122.324-1.4-247.134 6.521-368.05 24.15-59.344 8.653-118.485 19.47-176.437 33.087-28.744 6.757-57.441 14.246-85.564 23.347-8.819 2.856-83.7 29.5-85.076 26.99 16.858-13.656 54.916-20.342 76.289-27.186 15.277-4.893 31.403-9.527 47.199-13.798 85.509-23.12 171.34-37.5 258.792-50.157 44.603-6.45 89.63-7.85 134.47-12.13 21.837-2.085 43.903-3.02 65.874-4.46 14.946-.976 31.112.92 46.16-2.219-22.277-3.776-48.197.913-70.664 2.58-16.535 1.228-33.677 2.313-50.047 3.399-9.95.66-22.23 3.272-32.127 1.974 2.337-1.486 8.197.543 9.794-1.762.401-.503-36.697 2.384-39.67 2.628-11.454.944-23.152.936-34.582 2.092-16.976 1.723-34.77 4.807-51.706 6.82-76.093 9.063-150.55 26.306-224.911 45.217-56.836 14.45-116.558 31.285-170.294 55.246 2.533-1.55 4.853-3.21 6.765-5.018-7.678 1.125 8.401-4.445 11.178-5.46 7.04-2.564 13.908-5.6 20.949-8.15a373.664 373.664 0 0 0 14.655-5.671c9.306-3.823 35.494-8 41.472-15.961 1.55-3.808 9.857-3.17 14.042-6.238-11.218-1.07-26.424 7.898-34.825 11.013-12.783 4.743-25.22 9.636-37.98 15.088-13.71 5.852-27.674 11.532-41.778 17.267-5.806 2.352-10.896 6.19-16.394 8.802-4.413 2.093-27.73 10.054-43.227 16.685 1.361-.669 2.478-1.266 2.95-1.7-3.356.4-24.065 7.002-29.994 10.242L0 213V0h1920v80l-.827.207zM177.806 121.885c-5.191 2.99-9.974 5.207-12.971 4.193 4.318-1.471 8.653-2.777 12.971-4.193zm2.29 8.787c3.264-.228 7.127-1.188 11.351-2.62 1.235-.59 2.391-1.203 3.335-1.84-4.633.33-10.014 3.68-14.686 4.46zm-1.361.163l-.018-.041a8.293 8.293 0 0 1-1.296.027 7.9 7.9 0 0 0 1.314.014zm0 0c.446-.03.9-.089 1.36-.163-.452.031-.922.084-1.378.122l.018.04zm54.35-18.595c3.437-1.392 7.496-2.588 11.484-3.508a9192.43 9192.43 0 0 0-11.485 3.508zm1127.922-22.277c-.04-.008-.079-.016-.118-.032-.04.016-.079.024-.087.04.07-.008.134 0 .205-.008zM233.5 101.653l-4.098.164c-8.819 1.833-16.74 7.702-25.582 8.89 3.642.11 25.952-5.035 29.68-9.055zm40.859-10.951c-11.053-.543-19.596 5.97-29.948 6.521-.967.236-8.889 3.477-7.89 3.619 7.111.999 32.221-6.954 37.838-10.14zm26.715-6.207c-3.572.04-8.024.913-11.108 2.754a58.21 58.21 0 0 0 11.108-2.754zM238.15 122.24c-8.755 3.729-20.028 4.208-27.784 9.676 2.587-.103 44.046-14.373 44.32-14.058-1.678-1.934-14.144 4.248-16.536 4.382zm18.935-5.436c4.83-2.203 10.061-3.343 15.332-3.54-4.067 2.635-10.4 3.493-15.332 3.54zm14.53-12.83c2.15-.569 8.433-1.857 10.288-3.69-1.661.835-19.186 5.087-19.264 5.066 2.289.606 6.474-1.337 8.975-1.376zm10.288-3.69c.045-.044.087-.088.127-.133a.393.393 0 0 1-.117.081l-.01.053zm335.405-31.788c.904 2.706 11.304-1.471 12.578-.944-1.164-.598-4.845-.323-6.387-.386-.032.008-6.553.244-6.191 1.33zm51.51-3.682c-2.998.19-6.097.166-9.086-.354-3.548.339-14.553-.086-20.492 1.212 7.803-1.495 24.504 1.573 29.578-.858zm138.127-3.815c-1.29-.11-2.595-.086-3.933.236-3.186-.967-6.041-.7-8.574.802 2.784 1 8.873-.967 12.507-1.038zm28.65.252c-4.067-.559-9.007-.41-13.035.377 2.809.92 6.2.055 9.118.748 1.306-.378 2.604-.748 3.917-1.125zm10.376.495c-1.4-.102-2.84-1.156-5.333-.59 1.321 1.322 3.162 1.125 5.333.59zM802.62 76.243c-.22-.118-4.28-.487-4.264.386.968.212 4.327-.33 4.264-.386zm17.627.377l.148.016c.177-.002.311-.026.397-.078l-.545.062zm29.021-.849c-4.059-1.054-19.304-1.683-22.482.339 2.045-1.212 11.414.236 14.097.865 3.35-.173 5.081-.118 8.385-1.204zm210.524-1.722c-.394.26-3.352-1.03-4.374-.315.409.747 3.854.74 4.374.315zm47.19 2.163c-8.031-3.8-24.834-3.54-34.07-2.808.567 1.329-.172 1.864-2.225 1.612 1.07 2.266 33.896 3.414 36.296 1.196zm25.315 1.455c-3.139 1.4-7.552 1.164-10.88.606-2.886-.582 11.14-.716 10.88-.606zm57.465 3.052c-.205-2.194-11.399-2.517-12.476-.802 1.14.417 2.289.826 3.437 1.243.826.142 9.165.897 9.039-.44zm37.554 3.116c-1.093-.386-10.014-.819-9.258-2.77.889-2.289 13.483 2.117 9.258 2.77zm26.841.125c-4.476-1.69-12.138-2.179-16.67-1.203.19-.04-4.994.094-3.39.999 3.296 1.872 16.544 1.864 20.06.204zm18.282.756c-3.257-2.046-4.358-.347-7.576.361.48 2.817 8.394-.574 7.576-.361zm25.55 13.53c-5.514-.692-12.413-2.58-17.92-.708-.134 2.006 5.766.905 6.742.708 3.343.614 8.07 1.33 11.178 0zm54.94-8.3c-1.338-3.248-9.26-2.351-11.934-1.714-13.94.543-28.634-3.69-42.463-1.628 8.307 3.123 17.605 2.14 26.282 2.36 9.243.235 18.903 2.753 28.115.983zm9.991.522a.859.859 0 0 0 .044-.021l-.044.021zm8.96 1.414c-5.602-4.429 16.873-.244 16.778-.197-3.61 2.156-13.09.37-16.779.197zm8.896 10.73c.189 1.77 9.023 1.211 10.085.779-1.22-.402-2.43-.803-3.65-1.204-.102 0-6.56-.732-6.435.425zm32.245.763c-.779.047-6.466-.212-6.23 1.101.361 2.03 10.674.89 6.23-1.101zm2.777-10.14c2.84-.582 6.104-1.11 8.928-.04-6.6 1.7-10.218 1.11-16.622-.306 2.557.118 5.137.141 7.694.346zm11.697 12.665c-1.667.763-9.849 1.054-10.368-1.227 4.06-1.015 7.285-1.298 10.368 1.227zm.527-11.8c2.573-.37 3.894.771 5.31.976-2.226.362-4.051.456-5.31-.976zm27.997 13.011c-.904.567-.818.378-.22.024.212-.063.354-.094.22-.024zm4.846-.527c.37.236-2.384.22-4.374.19 1.172-.551 3.013-1.078 4.374-.19zm8.291-9.81c-3.54 1.7-16.637-6.63-20.256-2.556-.7.748 8.205 2.046 9.235 2.352 1.77.08 9 1.29 11.021.205zm242.823 19.227c6.089.857 12.264-.236 18.266-.527 9.015-.433 19.344.896 28.092-1.346.967.055 9.47-.739 8.511-1.18-9.77-4.515-33.212.032-43.919-.141-5.555-.092-20.456-3.047-25.273-.586 2.896-1.146 11.987 3.452 14.323 3.78zm-112.042.354a15.532 15.532 0 0 1 0 0zm29.61-4.587c6.733-.361 5.577-1.038 8 1.102-1.495.409-7.529 1.22-8-1.102zm-20.815-.4c5.734 1.486 12.31 1.99 18.273 1.266-5.207-1.7-13.042-2.895-18.273-1.267zm-12.32.463c1.007.3 4.304-.11 4.304-.11-.213-.126-4.256-.77-4.303.11zm-4.515-.613c3.683.65-7.825-.276-8.473-.003 2.298-1.05 6.014-.036 8.473.003zm-10.163 4.61c2.973 1.25 8.842-.37 12.523-.213-1.29-.18-2.604-.236-3.957-.031-3.178-1.322-6.033-1.243-8.566.244zm-69.21-7.151c-6.529-3.47-19.1 2.258-25.165-.873 3.021 1.707 8.11 1.534 11.462.779 1.109.047 12.334-.622 13.703.094zm.787-11.084c2.517-.102 8.865-1.015 10.659 1.314-2.32.7-8.976 1.077-10.66-1.314zm25.361.016c-.597-.079-10.1-.488-9.636 1.054.346 1.148 11.8 3.225 9.636-1.054zm13.153 12.28c1.094.047 2.36-.048 3.619-.056-4.374.252-10.297 2.227-13.475.166 1.022.464 8.897-.15 9.856-.11zm280.685-38.13c9.613-1.447 28.445-7.709 29.743-4.837-9.117 2.863-19.76 4.9-29.743 4.837zm-5.24-.102c-1.785.032-3.815.126-6.017.252 2.934-.393 5.593-.582 6.041-.252 1.692.15 3.462.095 5.216.102-2.557.386-4.492.457-5.24-.102zM154.278 130.525c.188-.153.354-.301.496-.443-.14.146-.308.285-.501.418l.005.025zm-22.75 9.036c3.531.196 18.573-5.638 22.745-9.061-2.593 1.779-9.642 2.38-12.541 4.577-1.102.433-8.803 4.476-10.203 4.484zm16.166-11.847a23.034 23.034 0 0 1-7.37 2.761 18.375 18.375 0 0 1 7.37-2.761z" fill="${n}" fill-rule="evenodd"/></svg>`,36:`<svg viewBox="0 0 1920 219" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1497.465 78.371v.013l-.06-.036.06.012v.011c.104-.155-.078-.355-1.045-.515l-.264-.042c.43.083.84.306 1.25.545-2.26-.264-4.711-.384-2.164-.18.913.529 1.983.445 2.223.216 1.046.637 1.983 1.418 2.668.59.18-.217-1.19-.445-2.668-.614zm413.177-71.135c-3.1.997-6.044 3.028-9.66 3.905-8.94 2.15-19.767 3.749-28.443 4.794-15.681 1.887-29.74 10.887-45.938 14.468-14.323 3.172-29.86 7.87-43.63 9.805-5.865.83-12.666.108-18.506 2.572-4.698 1.982-5.695 6.224-12.064 5.239-.409-1.178.348-1.875 2.271-2.08-19.502-.6-40.014 5.877-60.333 8.004-12.918 1.358-26.063 3.388-39.005 4.698-14.756 1.502-28.767 5.347-43.246 5.191-7.246-.072-13.362.925-20.452 2.127-5.768.973-17.7.553-22.11 5.155-1.261 1.31 11.788 0 12.726-.108 5.082-.59 10.31-.337 15.645-1.202 9.168-1.478 17.411-3.653 26.52-4.89 20.283-2.74 40.987-3.16 61.582-6.621 10.575-1.779 19.058-2.98 29.512-3.329 20.043-.673 38.308 2.187 59.396-1.358 3.881-.649 6.801-1.598 10.418-2.139a31.733 31.733 0 0 0 5.12-2.74 42.935 42.935 0 0 1 3.207 1.875c5.06-.505 10.262-.72 15.273-1.538 5.984-.973 21.57-8.736 26.784-2.896.853 1.226-21.665 4.662-23.888 4.807-2.866.283-32.167 3.258-35.863 4.956 1.67-.41 7.335 2.53 7.781 2.986-1.25.481-9.252 2.548-9.757 2.175 1.346 1.202 4.29 1.478 7.955 1.262-4.17.973-7.426 1.899-7.39 2.007.565 1.442 13.338-.71 14.54-1.094.528-.348 10.477-2.968 10.646-2.62-.193-.492-1.178-.648-2.452-.684 6.67-1.418 12.978-2.98 16.258-3.473 8.4-1.25 13.483-3.497 21.533-1.562-2.944 2.415-12.352 4.494-16.546 6.032-5.648 2.067-11.211 3.257-17.16 4.542-9.408 2.043-18.84 3.653-28.441 5.24-17.664 2.92-35.929 4.71-53.93 7.798-25.558 4.374-51.693 5.756-77.36 10.37-11.715 2.103-23.924 2.776-35.82 4.89-4.902.866-9.288 1.767-14.167 2.692-6.128 1.166-30.257 6.44-35.916 3.497-.474-.249 24.855-4.639 26.532-6.32-1.581.914-28.982 2.209-30.93 2.667-4.819 1.153-10.622 6.284-16.87 3.533.648-.457 1.297-.926 1.946-1.382-5.287-1.43-10.995 1.91-16.27 2.427-6.309.613-13.146.048-19.358 1.117-12.329 2.115-24.682 1.394-37.082 4.026-19.971 4.242-43.27 5.155-64.215 7.306-21.785 2.235-43.535 5.07-65.284 7.618-4.562.535-58.409 4.093-68.8 6.785 4.327-1.505 12.3-2.18 14.03-3.937 6.777-6.873-2.127-5.3-8.928-4.458-8.327 1.033-17.363.865-25.678 1.79-12.51 1.394-24.922 4.458-37.07 5.708-3.197.324-7.054-.324-10.322-.312-6.38.036-8.916 2.62-13.29 3.28-8.411 1.274-19.19.637-28.154.024-7.162-.493-13.687 1.79-20.512 2.463-17.471 1.719-35.616 1.55-52.607 4.038-15.056 2.199-30.365 2.607-44.988 3.737-20.668 1.586-41.672 4.085-61.968 5.647-31.663 2.44-63.89 5.468-95.78 8.135-15.286 1.274-29.2 2.62-44.233 4.65-6.176.83-50.167 5.84-51.008 2.44 4.121-.565 20.043-.108 22.566-3.641.24-.348-21.533 1.19-22.05 1.226-6.44.444-12.785.745-19.418 1.646-10.959 1.49-21.593 2.21-32.383 4.338-13.29 2.62-26.917 1.442-40.435 3.424-9.865 1.454-15.861 2.572-25.655 3.557-22.278 2.235-43.342 4.819-66.029 5.912-20.992 1.021-42.393 2.62-63.385 5.66-10.79 1.562-21.269 2.006-32.083 3.569-6.886.997-31.314 6.488-35.472 2.199 11.163-6.958 30.918-3.834 43.619-5.672 9.793-1.418 19.045-1.586 28.706-2.992 20.2-2.932 39.51-5.876 60.382-7.606 18.901-1.575 37.995-3.089 57.293-5.792 8.508-1.19 18.06-3.076 26.051-3.581 6.5-.42 11.067-2.608 17.207-3.629 4.687-.781 11.392 1.634 16.51.961 21.089-2.775 43.21-7.197 63.542-8.58 8.388-.576 17.135-2.92 25.018-3.52 8.808-.66 16.414-.336 25.078-2.079 9.228-1.862 20.055-1.982 29.355-2.788 10.623-.925 21.642-1.922 32.132-3.184 16.762-2.03 33.609-2.535 50.275-4.35 12.69-1.382 26.292-.096 38.993-4.11 1.754-.552 4.566-2.847 8.7-3.147 3.256-.24 6.224-.012 9.517-.12 11.872-.41 22.89-2.596 35.4-3.1 8.182-.325 18.805.396 26.026-4.182-16.017-3.954-31.95 1.97-48.22 2.223-21.666.324-43.127 2.187-64.552 4.842-33.128 4.098-67.206 3.293-100.563 7.702-24.153 3.197-49.267 4.831-73.54 6.465-29.259 1.959-58.062 7.727-87.189 10.923-62.905 6.897-126.807 14.852-190.505 20.44-60.08 5.275-121.267 13.806-180.892 19.13-26.675 2.378-52.907 7.221-79.69 9.889-15.766 1.574-31.567 4.866-47.357 6.332-8.099.757-54.193 10.046-56.248 5.624.325.697 72.025-11.584 81.915-13.134 22.013-3.437 46.515-4.927 69.273-8.411 37.935-5.792 77-11.86 115.32-15.249 43.33-3.833 86.78-10.13 130.448-13.566 36.793-2.884 73.563-7.93 110.476-10.622 26.136-1.911 51.983-7.595 78.25-9.337 15.669-1.033 34.462-.385 49.735-6.2-15.61-3.16-32.288 3.34-47.536 3.628-13.77.265-28.418 3.738-42.513 4.831-10.659.83-22.014 2.812-31.927 3.533-8.977.649-20.86 5.19-29.753 3.388 2.02-2.066 8.52.169 9.637-2.62 1.935-4.073-29.68 1.55-31.806 1.84-14.06 1.946-28.299 1.43-42.213 2.739-19.911 1.874-40.783 6.032-60.61 8.748-3.076.42-6.897-.156-10.923.432-6.91 1.01-14.01-.673-21.425 1.07-4.686 1.093-5.876 1.442-12.545 1.658-3.88.132-7.774 1.346-11.643 1.742-17.328 1.79-34.715 1.79-52.223 5.66-31.746 7.017-65.224 9.877-100.035 13.963-14.66 1.718-31.89 6.74-47.187 6.14-4.59-.192-8.207-1.766-13.518-1.37-5.191.385-9.553 1.622-14.744 2.307-7.775 1.022-16.03 1.406-24.045 2.764-19.526 3.293-39.581 6.128-60.105 9.397-5.359.853-55.442 8.435-55.406 9.384-.096-2.523 32.624-7.714 36.012-10.346-8.351-2.066 6.549-2.715 8.147-2.86 7.582-.672 15.02-2.823 22.59-3.58 6.405-.65 12.113-1.346 18.277-2.764 9.229-2.127 38.308-1.021 43.931-8.928a3.53 3.53 0 0 1-2.066-.89c3.34-3.436 12.845-.744 16.798-3.448-5.419-2.68-20.427-.589-26.231 1.226-4.374 1.37-5.636 2.235-9.553 3.244-3.352.865-8.748.325-12.184 1.286-8.964 2.5-16.75 3.87-26.316 5.323-7.702 1.178-15.272 4.819-22.95 6.645-7.955 1.899-17.316 1.394-25.487 2.199-6.982.697-13.614 3.893-20.752 5.6-5.636 1.345-55.287 5.575-56.008 8.459.433-2.764 16.174-4.458 18.722-6.345-5.468-1.586-15.069.89-21.1 1.563.364-.041-10.04 1.726-12.006.888L0 0h1920v5c-.68.8-8.587 1.987-9.358 2.236zM262.368 160.983c-7.15 1.538-14.275 4.638-21.905 2.716 5.683-4.038 23.96-5.227 30.413-3.665-1.502 2.066-6.513 1.381-8.508.949zm-29.5 4.95c.878.397 1.707.253 2.488-.408-.865-.409-1.706-.264-2.487.409zm34.8 9.854c-1.262-2.788-14.516 2.115-16.895 1.598-6.874.54-23.324 2.44-28.61 6.2 2.643.637 45.949-6.609 45.504-7.798zm18.036-2.103c-3.617 2.523-11.668 2.367-15.561 1.262 4.83-1.959 10.598-2.2 15.56-1.262zm10.394-17.303c.108-.157-20.452 2.403-19.587 2.992 1.73 1.153 6.765-.337 9 .168 2.127-.324 9.253-1.322 10.587-3.16zm347.845-7.198c-.613-.469-5.275-.6-6.429-.637-.685-.012-6.537.289-6.068 1.983.925 3.352 11.583-1.91 12.497-1.346zm38.644-4.254c-2.956.277-6.14.397-9.097-.3-3.953.553-21.485.42-23.635 3.725-.157.252 12.64-.961 14.275-1.082 5.023-.372 14.167 1.094 18.457-2.343zm120.174-9.228c-1.418-.192-1.202-.469.649-.853 1.418.204 1.201.492-.65.853zm12.977-2.716c-1.033.084-8.375 1.923-8.4 1.899 2.548 1.129 13.203-3.075 14.396-2.308-1.455-.936-4.422.253-5.996.41zm32.336-2.643c-3.917-.373-9.205.228-12.882 1.682 2.656 1.07 6.309-.373 9.169.408l3.713-2.09zm4.987-.661c3.232-1.502 3.424-.517 5.37.372-2.282 1.13-4.12 1.49-5.37-.372zm-35.58 26.159c.684.625-3.389 1.117-4.194.925-.12-1.141 3.689-1.273 4.194-.925zm18.36-2.007c-1.081-1.394-12.148-.084-12.713 1.61-.42 2.26 8.135-.036 9.277.24.048-.011 4.59-.36 3.436-1.85zm27.998-2.811c-3.088-.89-20.14.144-22.302 2.667 1.057-1.13 11.752-.649 14.143.012 3.304.096 5.443-.95 8.159-2.68zm254.611-34.847c-4.17-2.151-14.01-.854-18.192-.89-4.975-.048-11.02.841-15.814 2.247-5.984 7.282 10.418 2.98 15.045 2.38 3.869-.505 17.207-.325 18.961-3.737zm25.378-3.125c-.817-.985-13.11 3.545-10.802 3.833.42 0 12.845-1.393 10.802-3.833zm47.921-2.283c1.19-.024 9.144-.372 8.76-2.33-.577-2.993-11.656-1.695-12.377 1.08 1.214.421 2.415.83 3.617 1.25zm36.553-6.91c.313-2.643 14.708.313 9.613 2.524-1.994-.673-9.985.685-9.613-2.523zm35.905-2.246c-3.677-1.346-13.338-.48-16.547 1.274-.696.18-2.715-.036-3.184.769-.6.865 16.679 1.081 19.73-2.043zm17.76-3.389c-4.975-.733-3.93 1.37-7.054 3.1.853 3.437 7.618.3 7.054-3.1zm19.214-.372c1.934-.156 2.283.048 1.045.637-1.947.156-2.295-.048-1.045-.637zm8.735 17.231c-5.13 0-13.278-1.081-17.663 2.283.408 2.764 5.31.553 6.729-.18 3.689-.228 8.219.432 10.934-2.103zm52.103-22.735c-1.743-4.23-9.085-2.09-12.005-.396-5.767.66-11.283 1.286-16.546 1.934-7.919.986-18.24.409-25.306 3.485 7.967 2.86 17.796.204 25.907-1.298 9.276-1.73 19.346.625 27.95-3.725zm8.195-1.55c-2.596-.757-7.09-2.067-6.165-.312.733 1.394 4.819.54 6.165.312zm10.706.986c3.52-.409 13.879-.24 16.378-3.389.24-.288-16.138-.228-17.411.517.348.961.697 1.91 1.033 2.872zm20.788 13.926c-1.274-.384-2.535-.769-3.797-1.153-.745-.036-6.56.096-6.212 1.826.468 2.367 8.976.229 10.01-.673zm3.87.036c-1.407-.228-1.178-.504.672-.829 1.43.229 1.202.505-.673.83zm27.276-21.665c-6.212 3.821-9.336 3.605-16.306 2.56 2.512-.289 5.059-.733 7.582-.878 2.536-1.333 5.792-2.775 8.724-1.682zm-9.505 17.544c4.855 2.27-5.19 5.587-5.876 2.8-.456-1.863 4.699-2.728 5.876-2.8zm4.254 1.225c3.353-2.018 7.835-4.073 10.37-.024-1.646 1.587-9.589 2.8-10.37.024zm14.035-17.483c-2.343 1.045-4.158 1.406-5.383-.517 3.328-1.394 3.412-.456 5.383.517zm17.855 14.403c.298.028.596-.122.89-.452-.294-.379-.592-.58-.89-.607v1.059zm5.611-.01a3.919 3.919 0 0 0-.383.47c.817-.318 1.193-.564 1.289-.73l-.906.26zm-.354-.33c-.3.116-.6.296-.846.56.318.037.61-.038.886-.177l-.04-.383zm.955-.236v-.014c1.339-1.22 3.508-2.393 5-1.28.409.3-4.542 1.141-4.71 1.177-.079.098-.197.076-.29.117zm11.297-17.576c-1.659 1.67-18.277-5.227-20.296-.313-.889 2.031 8.087 1.55 9.469 1.923 1.25-.144 9.529-.156 10.827-1.61zm44.568 10.562c-5.78-3.413-19.9 5.768-24.754 3.004 2.596 1.646 8.736 1.166 11.344-.793 1.526-.168 12.677-2.644 13.41-2.21zm9.468-16.739c-1.922-2.86-7.906-.865-10.67-.192 1.454 2.343 8.183 1.863 10.67.192zm14.168-4.373c2.547 5.443-8.676 4.986-9.253 3.184-.805-2.487 8.183-3.232 9.253-3.184zm21.088 15.689c-1.919-.233-4.606.371-6.068.749.12-.012-9.793 1.706-9.625 1.79 3.1 2.33 12.21-2.433 15.842-2.448l-.149-.091zm25.066-2.22c-.853.878 12.545-.768 8.303-1.26-1.947.083-6.837-.097-8.303 1.26zm17.015-1.802c-.505-.36-4.278-.36-4.194.805.853.253 4.855-.252 4.194-.805zm0 7.15c-1.13-.589 11.655-1.718 8.46-.517-1.767.337-6.682 1.586-8.46.517zm25.883-9.697c-5.6 1.947-12.51 2.139-18.097.817 4.014-2.692 13.627-2.463 18.097-.817zm10.141-1.923c.625 1.899-7.03 3.377-7.786.229.252-.06 7.258-1.887 7.786-.229zm20.02-2.283c-2.296-1.31-4.82-1.286-7.559.072-1.508-.036-5.997-.179-7.053 1.138.796-.914 12.855.845 14.611-1.21zM166.784 162.041l-.005-.104c-2.294.85-10.268.425-12.99 2.218-1.514.24-10.058 2.692-10.683 2.44 2.693 1.345 19.822-2.02 23.678-4.554zm0 0a2.99 2.99 0 0 0 .5-.397c-.106.112-.278.21-.505.293l.005.104z" fill="${n}" fill-rule="evenodd"/></svg>`,37:`<svg viewBox="0 0 1920 221" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="evenodd"><path d="M1876.683 56.742c-20.485-1.862-33.521-1.862-40.97 1.863v-5.587c0-3.725-1.862-5.587-5.587-3.725-20.485 14.898-50.281 11.174-91.251-9.311l1.862-3.725c-1.862 0-3.724 1.863-9.311 3.725-3.725 1.862-7.45 3.724-9.312 3.724 0-1.862 0-1.862 1.863-3.724V38.12l-7.45 3.724c-3.724 0-5.586 1.862-7.448 3.725 0-1.863 0-3.725-1.863-5.587-1.862-1.862-1.862-3.725-1.862-5.587l-3.725 5.587c-1.862 5.587-5.586 7.449-9.31 9.311-1.863 0-5.588 0-7.45-1.862-5.587-1.862-7.449-1.862-9.311-1.862-3.725 0-7.45 1.862-11.174 3.724 1.862-3.724 1.862-5.587 1.862-5.587-9.311 3.725-20.485 7.45-33.52 9.312-22.348 1.862-35.384 1.862-37.246 3.724 1.862-5.587 3.725-9.311 1.862-13.036-1.862 5.587-5.586 11.174-14.898 13.036-1.862-1.862-1.862-1.862-3.724-1.862-1.863 0-1.863 0-3.725 1.862-5.313 3.542-8.942 5.4-10.887 3.972-.582.942-1.029 1.615-2.149 1.615-1.862 0-1.862 0-3.724-1.862-3.725 0-3.725 1.862-5.587 3.724l-3.725-7.449c-1.862 3.725-1.862 5.587-1.862 5.587-1.862 0-1.862-1.862-3.724-3.724-1.863-1.863-1.863-1.863-3.725-1.863-1.241-1.241-2.483 0-3.725 3.725-1.862 0-1.862 0-3.724-1.862-1.242-1.242-3.104-1.863-5.587-1.863-1.862 1.863-5.587 1.863-11.173 1.863-.5-.5-.998-.731-1.462-.731a7.062 7.062 0 0 0 1.462-1.132c1.862-1.862 1.862-3.724 0-9.311-14.899 5.587-44.695 9.311-91.252 9.311-3.724-5.587-5.587-7.449-5.587-9.311-1.862 0-3.724 0-7.449 1.862l-6.057 4.543c.058-.71-.406-1.695-1.392-2.68-1.862-1.863-1.862-1.863-3.724-1.863-3.725 0-3.725 1.862-5.587 3.725-1.862 1.862-3.725 3.724-5.587 1.862 1.862-1.862 3.725-5.587 1.862-9.311-1.862 3.724-5.586 5.586-9.31 7.449-5.588 1.862-5.588 1.862-7.45 1.862 1.862-1.862 1.862-3.725 1.862-5.587-1.862 1.862-5.587 3.725-9.311 3.725-5.587-1.863-7.45-1.863-9.311 0l1.862-5.587c-1.862-1.862-3.725-1.862-3.725-1.862-1.862 1.862-1.862 1.862-1.862 3.724s0 3.725-1.862 5.587c-1.862 0-1.862-1.862-1.862-5.587-1.863 3.725-7.45 5.587-13.036 7.45-9.312 1.862-13.036 1.862-13.036 3.724v-3.725c-1.863 1.863-5.587 1.863-13.036 1.863-5.587 0-9.311 0-13.036 1.862-4.41-2.646-7.149-4.874-8.415-6.685a6.67 6.67 0 0 1-.896 1.098l-5.587 3.725c-1.862 0-1.862 0-3.725 1.862 0 1.862 0 3.724 1.863 7.449-9.312-1.862-13.036-3.725-13.036-3.725-5.587 0-9.312 0-11.174 1.863 1.862-1.863 1.862-3.725 0-9.312C1251 63 1233 55.138 1233 57c-3.725 5.587-6.25 7.191-9.974 9.054 1.862-1.863 1.862-3.725 0-9.312-1.086-1.086-1.539-2.172-1.358-3.259l-11.678 20.02s0-1.863-1.862-3.725c0-1.862-1.862-3.724-3.725-1.862 0 1.862 0 3.724-1.862 7.449h-7.449c-5.587-1.862-7.449-3.725-7.449-7.45-1.862-1.861 0-1.861 1.862-3.724 1.863-1.862 1.863-1.862 0-3.724-1.862 0-3.724 1.862-5.586 3.724-1.863 1.863-3.725 1.863-5.587 1.863V64.19c-1.863-1.862-5.587 0-7.45 1.863-1.862 3.724-1.862 7.449 0 9.311 1.863 0 1.863 0 1.863-1.862-1.862-1.863 0-3.725 1.862-1.863-1.862 5.587-7.449 7.45-14.898 9.312 0-1.862 0-3.725 1.862-7.45-5.53 3.687-12.885 9.199-23.87 14.729-.104.708.323-.492 1.523-1.692 1.5-4.5 1.792-6.583 2.821-6.251-3.553-.96-9.005.783-17.72 2.526-4.719 3.147-9.439 3.635-13.036 1.465l.001 4.122c-1.862 0-3.725-1.862-5.587-3.725-1.862-1.862-1.862-3.724-3.724-1.862-5.587 1.862-7.45 3.725-7.45 3.725 0-1.151 0-2.302.44-3.014l-13.475 6.738c-9.312 1.862-14.898 1.862-20.485 0 0 1.862-1.863 3.725-3.725 7.45-1.862 1.861-3.724 3.724-5.587 3.724l1.863-7.45c-1.263-1.262-2.525-1.668-3.787-1.8l-1.8 1.8v-1.862c-3.707.432-5.303 1.147-7.45 1.863-1.862 1.862-5.586 0-7.448-1.863 1.862-1.862 1.862-1.862 1.862-3.724 0-3.725-1.862-5.587-3.725-5.587-1.862 1.862-1.862 1.862-1.862 3.725l-7.449 7.449c0 1.862-1.862 1.862-3.724 1.862-1.863 0-1.863 0-1.863 1.862 0 0-1.862 0-3.724 1.862-3.725 0-5.587-1.862-5.587-5.586v-7.754c-1.083 1.877-3.888 5.543-7.45 11.478v-3.724c0 3.724 0 5.586-1.861 5.586 0 1.242-2.483 1.242-7.45 0 0 1.863 0 3.725-1.862 5.587-1.862-1.862-5.587-1.862-11.173-1.862-5.587-1.862-7.45-3.725-9.312-5.587-3.724 3.725-5.587 5.587-7.449 5.587-1.862 1.862-5.587 3.725-9.311 1.862 1.862-1.862 3.724-3.724 3.724-5.587-1.862-1.862-3.724-1.862-3.724-1.862 0 1.862 0 1.862-1.862 1.862l-1.863 1.863c0 1.862-3.724-1.863-13.036-11.174-1.862 1.862-3.724 3.725-3.724 7.45 0 1.861 0 3.724 1.862 5.586v3.725c-1.862-3.725-3.724-5.587-5.587-5.587l-11.173 7.449c-1.863 0-1.863-1.862-3.725-3.725 1.862-1.862 1.862-3.724 1.862-5.587 1.863-1.862 1.863-3.724 0-5.586-1.862-1.863-1.862-3.725-3.724-3.725s-1.862 1.862-3.725 3.725c-1.862 1.862-3.724 3.724-3.724 5.586-1.242 1.242-2.576 4.41-4.003 9.504-3.446-.192-3.446-.192-5.309 1.67-5.586 0-5.586-1.862-5.586-5.587 0 1.863-1.863 1.863-3.725 1.863s-3.724 1.862-3.724 7.449c-1.863-1.863-9.312-3.725-20.485-1.863-9.312 1.863-14.899-1.862-18.623-9.311 0 0-1.862 0-3.725 1.862-1.862 1.863-1.862 1.863 0 3.725 1.863 1.862 1.863 3.724 1.863 1.862l1.862-1.862v5.587c-3.725-1.863-5.587-1.863-5.587-3.725-1.862-1.862-1.862-3.724 0-9.311-1.862-1.863-1.862 0-3.724 1.862-1.863 0-1.863 1.862-3.725 5.587l-3.725 7.449c-1.862 1.862-3.724 1.862-5.586 1.862 0-3.724-1.863-5.587-5.587-5.587l-5.587 9.312-5.587-5.587V105.16l-5.587 1.863-3.724 5.586-4.246-7.076c.223 1.117-.224 2.234-1.34 3.352-1.863 1.862-3.725 1.862-3.725 1.862l1.862-1.862c-1.862-1.862-3.725-1.862-7.45 0 0 1.862 1.863 5.587 7.45 7.449 0 1.862 0 1.862-1.862 1.862-1.863 1.862-3.725 1.862-3.725 3.725 0-1.863-1.862-3.725-3.725-3.725h-7.449c-1.862 0-1.862 0-1.862 1.862-1.862 1.863-1.862 3.725-1.862 3.725s-1.862 0-3.725-1.862c-1.862 0-1.862-1.863 0-3.725l1.863 1.862c1.862 0 1.862 0 3.724-1.862-1.862 0-1.862 0-1.862-1.862l-1.862-1.862c-1.863-1.863-1.863 0-3.725 1.862-1.862 0-1.862 1.862-1.862 7.449 0 1.862-1.862 3.725-3.725 1.862 1.863-1.862 1.863-1.862 1.863-3.724 1.862-1.863 1.862-3.725 1.862-3.725l-7.45-3.724v4.655-.93c0 1.861-1.862 3.724-5.586 5.586-1.862 1.862-3.725 3.725-3.725 5.587-1.862 1.862-3.724 0-5.586-1.862-3.725-1.863-5.587-1.863-5.587-1.863-1.863-1.862-3.725-3.724-5.587-1.862l-5.587 5.587v-1.862c-1.862 0-1.862 0-3.724 1.862l-5.587 3.724c-1.863-1.862-1.863-5.586-3.725-13.036-1.862-1.862-1.862-3.724-1.862-3.724-1.862-1.862-1.862 0-3.725 1.862-1.862 0-3.724 1.862-3.724 7.45-1.862 3.724-1.862 7.448 0 9.31-1.862-1.862-7.45 0-14.898 1.863-5.587 1.862-9.312 0-13.036-1.862-1.862 3.724-3.725 5.586-3.725 5.586-1.862 0-7.449 1.863-20.485 3.725-7.449 1.862-14.898 1.862-20.485-3.725 1.863-1.862 3.725-3.724 1.863-5.586-1.863-3.725-1.863-5.587-1.863-5.587-1.862 1.862-1.862 3.724-3.724 1.862 0-1.241-.62 0-1.862 3.725 1.862 3.724 1.862 5.586 1.862 7.449l3.724 3.724c-3.724 1.863-7.449 3.725-13.036 3.725-5.586 1.862-9.31 0-11.173-1.862 1.862 1.862 1.862 3.724 0 5.586l-5.587-7.449c-1.862-1.862-3.724 0-5.587 1.863v5.586l-3.724-5.586s0 1.862-1.863 7.449c-1.241 1.241-3.724-.621-7.449-5.587-3.724 5.587-5.586 7.449-5.586 7.449-3.725 3.724-7.45 3.724-9.312 1.862l-5.587-5.587c-1.862 0-1.862 0-1.862 1.863 0 1.862 0 3.724 1.862 5.586-1.862-1.862-3.724-1.862-5.586-1.862-1.863-1.862-3.725-1.862-5.587-1.862l-7.45-5.587c-9.31 14.898-26.071 22.347-52.143 24.21v-3.725c-1.862-1.862-1.862 0-1.862 1.862 0 1.863 0 1.863-1.862 3.725 0-1.862 0-3.725-1.863-7.45-1.862-1.862-3.724-5.586-1.862-7.448-1.862-1.863-3.724 0-5.587 3.724-1.862 5.587-3.724 7.45-5.587 7.45 0 1.862 0 3.724 1.863 1.862 1.862-1.863 1.862 0 1.862 1.862-9.311 0-11.174 1.862-9.311 5.587-1.863-1.863-3.725-7.45-1.863-13.036l-3.724 5.587c-1.862-3.725-1.862-9.312 0-16.76 1.862-5.588-7.45 0-9.312 5.586 0 .634-.013 1.242-.04 1.822-1.875-1.822-5.56-1.809-7.409.04-1.862 1.862-3.724 3.725-5.586 3.725 1.862 1.862 3.724 3.724 1.862 7.449 0 1.862 0 3.724-1.862 5.587-1.863-1.863-1.863-3.725-1.863-5.587 0-1.862-1.862-1.862-3.724-1.862 0 0 0 1.862-1.862 7.449-1.863 1.862 0 3.724 1.862 5.586v3.725c-1.242 1.241-3.725 1.241-7.45 0-1.862 0-1.862 0-1.862 1.862-1.862-1.862-1.862-5.587 0-11.173 0-5.587-1.862-9.312-3.724-11.174 0 1.862 0 5.587-1.862 11.174-1.863 5.586-1.863 9.311 0 13.036l-3.725-5.587v-7.45c0-1.24-1.862 0-5.587 3.725 0 1.862 0 3.725-1.862 3.725l-3.725-7.45v9.312c0-1.862 0-1.862-1.862-3.725l-3.724-3.724s-1.863 1.862-7.45 3.724c-1.862 1.863-3.724 1.863-5.586-3.724v1.862c-1.862 0-1.862 0-3.725 1.862-1.862 1.863-1.862 3.725 0 5.587 7.45-1.862 7.45 0 9.312 3.725-1.863-1.862-3.725-3.725-5.587-1.862 0 1.862 0 1.862-1.862 3.724-1.863 1.862-1.863 3.725-1.863 3.725l-1.862-3.725c-1.862 5.587-3.725 9.311-3.725 7.45 0-3.725 0-5.588-1.862-7.45l-1.862 7.45c-3.725 0-3.725-1.863-5.587-3.725 0-1.863 0-3.725-1.862-3.725 0-1.862 0-1.862-1.862-1.862l2.807-4.211c-.716.128-1.762-.33-2.807-1.376-1.863-1.862-1.863-3.725-3.725-1.862 0 1.862 0 5.587-1.862 11.173v9.312c-1.863 1.862-1.863 0-3.725-1.863 0-1.862 0 0-1.862 1.863l3.724-9.312c0-1.862-1.862-3.724-3.724-5.586-1.862-1.863-5.587-3.725-7.45-1.863l-3.724 7.45c0 3.724 1.863 5.586 3.725 7.448-1.862 0-1.862 0-3.725-1.862C331 205.724 331 203.862 331 202c-1.862 1.863-1.862 3.725-1.862 5.587 1.862 1.862 1.862 3.725 0 5.587l-7.45-7.45-9.31-7.448L316.1 187.1l-3.725 1.862c1.863-3.724-5.586 0-7.449 5.587-1.862 7.45-9.311 11.174-11.173 5.587-1.863-1.862-1.863-3.724-3.725-3.724-1.862-1.863-7.449 1.862-9.311-1.863 0-3.724-1.863-5.587-3.725-3.724-3.724 1.862-5.587 1.862-5.587 1.862-1.862 1.862-3.724 3.725-1.862 7.45 0 1.861 1.862 3.724 3.725 1.861 1.862 0 1.862 1.863 1.862 3.725-1.862 1.862-5.587 1.862-9.311 0-1.863-1.862-3.725 7.449-5.587 5.587-1.862 0-9.312-1.863-14.898-7.45-1.16-2.32-3.045-3.195-4.75-2.173.683-1.172 1.025-2.882 1.025-5.275-1.862 1.862-5.587 0-7.449-3.725-1.862-1.862-9.311-3.725-7.45-1.862l3.725 7.449c-5.586 0-9.31 1.862-11.173 3.724-3.725 1.863-5.587 5.587-7.45 9.312-1.861-1.863-1.861-3.725-1.861-7.45 0-1.54 0-3.081 1.055-3.567-8.96 3.656-18.089 5.384-28.99 3.568 1.863 1.862 1.863 3.724 1.863 5.586 0 1.863-1.863 1.863-3.725 1.863l-1.862 1.862c-.299.299-.55.598-.753.896-1.58-5.596-2.972-8.598-2.972-10.207l-1.862 1.862c-1.862 0-1.862-1.862-1.862-3.725 0-3.724-1.862-5.586-3.725-3.724-5.587 5.587-11.173 11.173-18.622 14.898-5.587-1.862-9.312-1.862-14.899 0-1.862 1.862-3.724 1.862-9.31 3.724-1.863 1.863-3.725 3.725-5.588 3.725-1.862-1.862-3.724-3.725-5.587-9.311-1.862-5.587-1.862-7.45-3.724-7.45s-1.862 1.863 0 5.587v1.863c0 1.241-.62.62-1.862-1.863h-9.312c-3.724 1.863-5.586 5.587-5.586 11.174v-11.174c0-1.241-.621-.62-1.863 1.863-1.862 0-1.862 0-1.862 1.862v-3.725l-1.862-1.862V202c-1.863-1.862-5.587-1.862-7.45 0-3.724 3.725-5.586 5.587-7.448 5.587l5.586 5.587c-1.862 1.862-5.586 3.724-11.173 3.724s-9.312 0-11.174 1.863l-1.862-5.587-3.725 3.724c0-1.862-1.862-3.724-3.724-5.586-1.862-1.863-1.862 0-3.725 1.862l2.2-4.4L43 208l-10 3.31L22 205l-1-4.706-11 1.705 1-3.724-11-4.211V0h1920v10l-6 15c-10.662 17.914-29.694 32.59-37.317 31.742z" fill-rule="nonzero" opacity=".25"/><path d="M1914 25c-8.415 9.712-15.106 15.19-20.072 16.43-9.311 9.312-20.485 11.175-37.245 9.312-20.485-1.862-33.521-1.862-40.97 1.863v-5.587c0-3.725-1.862-5.587-5.587-3.725-20.485 14.898-50.281 11.174-91.251-9.311l1.862-3.725c-1.862 0-3.724 1.863-9.311 3.725-3.725 1.862-7.45 3.724-9.312 3.724 0-1.862 0-1.862 1.863-3.724V32.12l-7.45 3.724c-3.724 0-5.586 1.862-7.448 3.725 0-1.863 0-3.725-1.863-5.587-1.862-1.862-1.862-3.725-1.862-5.587l-3.725 5.587c-1.862 5.587-5.586 7.449-9.31 9.311-1.863 0-5.588 0-7.45-1.862-5.587-1.862-7.449-1.862-9.311-1.862-3.725 0-7.45 1.862-11.174 3.724 1.862-3.724 1.862-5.587 1.862-5.587-9.311 3.725-20.485 7.45-33.52 9.312-22.348 1.862-35.384 1.862-37.246 3.724 1.862-5.587 3.725-9.311 1.862-13.036-1.862 5.587-5.586 11.174-14.898 13.036-1.862-1.862-1.862-1.862-3.724-1.862-1.863 0-1.863 0-3.725 1.862-5.313 3.542-8.942 5.4-10.887 3.972-.582.942-1.029 1.615-2.149 1.615-1.862 0-1.862 0-3.724-1.862-3.725 0-3.725 1.862-5.587 3.724l-3.725-7.449c-1.862 3.725-1.862 5.587-1.862 5.587-1.862 0-1.862-1.862-3.724-3.724-1.863-1.863-1.863-1.863-3.725-1.863-1.241-1.241-2.483 0-3.725 3.725-1.862 0-1.862 0-3.724-1.862-1.242-1.242-3.104-1.863-5.587-1.863-1.862 1.863-5.587 1.863-11.173 1.863-.5-.5-.998-.731-1.462-.731a7.062 7.062 0 0 0 1.462-1.132c1.862-1.862 1.862-3.724 0-9.311-14.899 5.587-44.695 9.311-91.252 9.311-3.724-5.587-5.587-7.449-5.587-9.311-1.862 0-3.724 0-7.449 1.862l-6.057 4.543c.058-.71-.406-1.695-1.392-2.68-1.862-1.863-1.862-1.863-3.724-1.863-3.725 0-3.725 1.862-5.587 3.725-1.862 1.862-3.725 3.724-5.587 1.862 1.862-1.862 3.725-5.587 1.862-9.311-1.862 3.724-5.586 5.586-9.31 7.449-5.588 1.862-5.588 1.862-7.45 1.862 1.862-1.862 1.862-3.725 1.862-5.587-1.862 1.862-5.587 3.725-9.311 3.725-5.587-1.863-7.45-1.863-9.311 0l1.862-5.587c-1.862-1.862-3.725-1.862-3.725-1.862-1.862 1.862-1.862 1.862-1.862 3.724s0 3.725-1.862 5.587c-1.862 0-1.862-1.862-1.862-5.587-1.863 3.725-7.45 5.587-13.036 7.45-9.312 1.862-13.036 1.862-13.036 3.724v-3.725c-1.863 1.863-5.587 1.863-13.036 1.863-5.587 0-9.311 0-13.036 1.862-4.41-2.646-7.149-4.874-8.415-6.685a6.67 6.67 0 0 1-.896 1.098l-5.587 3.725c-1.862 0-1.862 0-3.725 1.862 0 1.862 0 3.724 1.863 7.449-9.312-1.862-13.036-3.725-13.036-3.725-5.587 0-9.312 0-11.174 1.863 1.862-1.863 1.862-3.725 0-9.312C1231 57 1213 49.138 1213 51c-3.725 5.587-6.25 7.191-9.974 9.054 1.862-1.863 1.862-3.725 0-9.312-1.086-1.086-1.539-2.172-1.358-3.259l-11.678 20.02s0-1.863-1.862-3.725c0-1.862-1.862-3.724-3.725-1.862 0 1.862 0 3.724-1.862 7.449h-7.449c-5.587-1.862-7.449-3.725-7.449-7.45-1.862-1.861 0-1.861 1.862-3.724 1.863-1.862 1.863-1.862 0-3.724-1.862 0-3.724 1.862-5.586 3.724-1.863 1.863-3.725 1.863-5.587 1.863V58.19c-1.863-1.862-5.587 0-7.45 1.863-1.862 3.724-1.862 7.449 0 9.311 1.863 0 1.863 0 1.863-1.862-1.862-1.863 0-3.725 1.862-1.863-1.862 5.587-7.449 7.45-14.898 9.312 0-1.862 0-3.725 1.862-7.45-5.53 3.687-12.885 9.199-23.87 14.729-.104.708.323-.492 1.523-1.692 1.5-4.5 1.792-6.583 2.821-6.251-3.553-.96-9.005.783-17.72 2.526-4.719 3.147-9.439 3.635-13.036 1.465l.001 4.122c-1.862 0-3.725-1.862-5.587-3.725-1.862-1.862-1.862-3.724-3.724-1.862-5.587 1.862-7.45 3.725-7.45 3.725 0-1.151 0-2.302.44-3.014l-13.475 6.738c-9.312 1.862-14.898 1.862-20.485 0 0 1.862-1.863 3.725-3.725 7.45-1.862 1.861-3.724 3.724-5.587 3.724l1.863-7.45c-1.263-1.262-2.525-1.668-3.787-1.8l-1.8 1.8v-1.862c-3.707.432-5.303 1.147-7.45 1.863-1.862 1.862-5.586 0-7.448-1.863 1.862-1.862 1.862-1.862 1.862-3.724 0-3.725-1.862-5.587-3.725-5.587-1.862 1.862-1.862 1.862-1.862 3.725l-7.449 7.449c0 1.862-1.862 1.862-3.724 1.862-1.863 0-1.863 0-1.863 1.862 0 0-1.862 0-3.724 1.862-3.725 0-5.587-1.862-5.587-5.586v-7.754c-1.083 1.877-3.888 5.543-7.45 11.478v-3.724c0 3.724 0 5.586-1.861 5.586 0 1.242-2.483 1.242-7.45 0 0 1.863 0 3.725-1.862 5.587-1.862-1.862-5.587-1.862-11.173-1.862-5.587-1.862-7.45-3.725-9.312-5.587-3.724 3.725-5.587 5.587-7.449 5.587-1.862 1.862-5.587 3.725-9.311 1.862 1.862-1.862 3.724-3.724 3.724-5.587-1.862-1.862-3.724-1.862-3.724-1.862 0 1.862 0 1.862-1.862 1.862l-1.863 1.863c0 1.862-3.724-1.863-13.036-11.174-1.862 1.862-3.724 3.725-3.724 7.45 0 1.861 0 3.724 1.862 5.586v3.725c-1.862-3.725-3.724-5.587-5.587-5.587l-11.173 7.449c-1.863 0-1.863-1.862-3.725-3.725 1.862-1.862 1.862-3.724 1.862-5.587 1.863-1.862 1.863-3.724 0-5.586-1.862-1.863-1.862-3.725-3.724-3.725s-1.862 1.862-3.725 3.725c-1.862 1.862-3.724 3.724-3.724 5.586-1.242 1.242-2.576 4.41-4.003 9.504-3.446-.192-3.446-.192-5.309 1.67-5.586 0-5.586-1.862-5.586-5.587 0 1.863-1.863 1.863-3.725 1.863s-3.724 1.862-3.724 7.449c-1.863-1.863-9.312-3.725-20.485-1.863-9.312 1.863-14.899-1.862-18.623-9.311 0 0-1.862 0-3.725 1.862-1.862 1.863-1.862 1.863 0 3.725 1.863 1.862 1.863 3.724 1.863 1.862l1.862-1.862v5.587c-3.725-1.863-5.587-1.863-5.587-3.725-1.862-1.862-1.862-3.724 0-9.311-1.862-1.863-1.862 0-3.724 1.862-1.863 0-1.863 1.862-3.725 5.587l-3.725 7.449c-1.862 1.862-3.724 1.862-5.586 1.862 0-3.724-1.863-5.587-5.587-5.587l-5.587 9.312-5.587-5.587V99.16l-5.587 1.863-3.724 5.586-4.246-7.076c.223 1.117-.224 2.234-1.34 3.352-1.863 1.862-3.725 1.862-3.725 1.862l1.862-1.862c-1.862-1.862-3.725-1.862-7.45 0 0 1.862 1.863 5.587 7.45 7.449 0 1.862 0 1.862-1.862 1.862-1.863 1.862-3.725 1.862-3.725 3.725 0-1.863-1.862-3.725-3.725-3.725h-7.449c-1.862 0-1.862 0-1.862 1.862-1.862 1.863-1.862 3.725-1.862 3.725s-1.862 0-3.725-1.862c-1.862 0-1.862-1.863 0-3.725l1.863 1.862c1.862 0 1.862 0 3.724-1.862-1.862 0-1.862 0-1.862-1.862l-1.862-1.862c-1.863-1.863-1.863 0-3.725 1.862-1.862 0-1.862 1.862-1.862 7.449 0 1.862-1.862 3.725-3.725 1.862 1.863-1.862 1.863-1.862 1.863-3.724 1.862-1.863 1.862-3.725 1.862-3.725l-7.45-3.724v4.655-.93c0 1.861-1.862 3.724-5.586 5.586-1.862 1.862-3.725 3.725-3.725 5.587-1.862 1.862-3.724 0-5.586-1.862-3.725-1.863-5.587-1.863-5.587-1.863-1.863-1.862-3.725-3.724-5.587-1.862l-5.587 5.587v-1.862c-1.862 0-1.862 0-3.724 1.862l-5.587 3.724c-1.863-1.862-1.863-5.586-3.725-13.036-1.862-1.862-1.862-3.724-1.862-3.724-1.862-1.862-1.862 0-3.725 1.862-1.862 0-3.724 1.862-3.724 7.45-1.862 3.724-1.862 7.448 0 9.31-1.862-1.862-7.45 0-14.898 1.863-5.587 1.862-9.312 0-13.036-1.862-1.862 3.724-3.725 5.586-3.725 5.586-1.862 0-7.449 1.863-20.485 3.725-7.449 1.862-14.898 1.862-20.485-3.725 1.863-1.862 3.725-3.724 1.863-5.586-1.863-3.725-1.863-5.587-1.863-5.587-1.862 1.862-1.862 3.724-3.724 1.862 0-1.241-.62 0-1.862 3.725 1.862 3.724 1.862 5.586 1.862 7.449l3.724 3.724c-3.724 1.863-7.449 3.725-13.036 3.725-5.586 1.862-9.31 0-11.173-1.862 1.862 1.862 1.862 3.724 0 5.586l-5.587-7.449c-1.862-1.862-3.724 0-5.587 1.863v5.586l-3.724-5.586s0 1.862-1.863 7.449c-1.241 1.241-3.724-.621-7.449-5.587-3.724 5.587-5.586 7.449-5.586 7.449-3.725 3.724-7.45 3.724-9.312 1.862l-5.587-5.587c-1.862 0-1.862 0-1.862 1.863 0 1.862 0 3.724 1.862 5.586-1.862-1.862-3.724-1.862-5.586-1.862-1.863-1.862-3.725-1.862-5.587-1.862l-7.45-5.587c-9.31 14.898-26.071 22.347-52.143 24.21v-3.725c-1.862-1.862-1.862 0-1.862 1.862 0 1.863 0 1.863-1.862 3.725 0-1.862 0-3.725-1.863-7.45-1.862-1.862-3.724-5.586-1.862-7.448-1.862-1.863-3.724 0-5.587 3.724-1.862 5.587-3.724 7.45-5.587 7.45 0 1.862 0 3.724 1.863 1.862 1.862-1.863 1.862 0 1.862 1.862-9.311 0-11.174 1.862-9.311 5.587-1.863-1.863-3.725-7.45-1.863-13.036l-3.724 5.587c-1.862-3.725-1.862-9.312 0-16.76 1.862-5.588-7.45 0-9.312 5.586 0 .634-.013 1.242-.04 1.822-1.875-1.822-5.56-1.809-7.409.04-1.862 1.862-3.724 3.725-5.586 3.725 1.862 1.862 3.724 3.724 1.862 7.449 0 1.862 0 3.724-1.862 5.587-1.863-1.863-1.863-3.725-1.863-5.587 0-1.862-1.862-1.862-3.724-1.862 0 0 0 1.862-1.862 7.449-1.863 1.862 0 3.724 1.862 5.586v3.725c-1.242 1.241-3.725 1.241-7.45 0-1.862 0-1.862 0-1.862 1.862-1.862-1.862-1.862-5.587 0-11.173 0-5.587-1.862-9.312-3.724-11.174 0 1.862 0 5.587-1.862 11.174-1.863 5.586-1.863 9.311 0 13.036l-3.725-5.587v-7.45c0-1.24-1.862 0-5.587 3.725 0 1.862 0 3.725-1.862 3.725l-3.725-7.45v9.312c0-1.862 0-1.862-1.862-3.725l-3.724-3.724s-1.863 1.862-7.45 3.724c-1.862 1.863-3.724 1.863-5.586-3.724v1.862c-1.862 0-1.862 0-3.725 1.862-1.862 1.863-1.862 3.725 0 5.587 7.45-1.862 7.45 0 9.312 3.725-1.863-1.862-3.725-3.725-5.587-1.862 0 1.862 0 1.862-1.862 3.724-1.863 1.862-1.863 3.725-1.863 3.725l-1.862-3.725c-1.862 5.587-3.725 9.311-3.725 7.45 0-3.725 0-5.588-1.862-7.45l-1.862 7.45c-3.725 0-3.725-1.863-5.587-3.725 0-1.863 0-3.725-1.862-3.725 0-1.862 0-1.862-1.862-1.862l2.807-4.211c-.716.128-1.762-.33-2.807-1.376-1.863-1.862-1.863-3.725-3.725-1.862 0 1.862 0 5.587-1.862 11.173v9.312c-1.863 1.862-1.863 0-3.725-1.863 0-1.862 0 0-1.862 1.863l3.724-9.312c0-1.862-1.862-3.724-3.724-5.586-1.862-1.863-5.587-3.725-7.45-1.863l-3.724 7.45c0 3.724 1.863 5.586 3.725 7.448-1.862 0-1.862 0-3.725-1.862C311 199.724 311 197.862 311 196c-1.862 1.863-1.862 3.725-1.862 5.587 1.862 1.862 1.862 3.725 0 5.587l-7.45-7.45-9.31-7.448L296.1 181.1l-3.725 1.862c1.863-3.724-5.586 0-7.449 5.587-1.862 7.45-9.311 11.174-11.173 5.587-1.863-1.862-1.863-3.724-3.725-3.724-1.862-1.863-7.449 1.862-9.311-1.863 0-3.724-1.863-5.587-3.725-3.724-3.724 1.862-5.587 1.862-5.587 1.862-1.862 1.862-3.724 3.725-1.862 7.45 0 1.861 1.862 3.724 3.725 1.861 1.862 0 1.862 1.863 1.862 3.725-1.862 1.862-5.587 1.862-9.311 0-1.863-1.862-3.725 7.449-5.587 5.587-1.862 0-9.312-1.863-14.898-7.45-1.16-2.32-3.045-3.195-4.75-2.173.683-1.172 1.025-2.882 1.025-5.275-1.862 1.862-5.587 0-7.449-3.725-1.862-1.862-9.311-3.725-7.45-1.862l3.725 7.449c-5.586 0-9.31 1.862-11.173 3.724-3.725 1.863-5.587 5.587-7.45 9.312-1.861-1.863-1.861-3.725-1.861-7.45 0-1.54 0-3.081 1.055-3.567-8.96 3.656-18.089 5.384-28.99 3.568 1.863 1.862 1.863 3.724 1.863 5.586 0 1.863-1.863 1.863-3.725 1.863l-1.862 1.862c-.299.299-.55.598-.753.896-1.58-5.596-2.972-8.598-2.972-10.207l-1.862 1.862c-1.862 0-1.862-1.862-1.862-3.725 0-3.724-1.862-5.586-3.725-3.724-5.587 5.587-11.173 11.173-18.622 14.898-5.587-1.862-9.312-1.862-14.899 0-1.862 1.862-3.724 1.862-9.31 3.724-1.863 1.863-3.725 3.725-5.588 3.725-1.862-1.862-3.724-3.725-5.587-9.311-1.862-5.587-1.862-7.45-3.724-7.45s-1.862 1.863 0 5.587v1.863c0 1.241-.62.62-1.862-1.863h-9.312c-3.724 1.863-5.586 5.587-5.586 11.174v-11.174c0-1.241-.621-.62-1.863 1.863-1.862 0-1.862 0-1.862 1.862v-3.725l-1.862-1.862V196c-1.863-1.862-5.587-1.862-7.45 0-3.724 3.725-5.586 5.587-7.448 5.587l5.586 5.587c-1.862 1.862-5.586 3.724-11.173 3.724s-9.312 0-11.174 1.863l-1.862-5.587-3.725 3.724c0-1.862-1.862-3.724-3.724-5.586-1.862-1.863-1.862 0-3.725 1.862l2.2-4.4L23 202l-6-1-6-5-5 1-6-3V0h1920v10l-6 15z" fill-rule="nonzero"/><path d="M701.253 158.643l1.245-.25.995.25.996-1.493h1.99c2.987 0 4.231 2.986 4.231 5.475 0 1.742-.249 3.235-.497 4.977l-2.738 1.991-2.489.249c-2.737 0-10.95-.498-10.95-4.48 0-.995.498-2.488.747-3.484l1.244-.995 1.742 1.244a23.06 23.06 0 0 1 3.484-3.484zm124.699 11.082c.249.497.497 1.493.497 1.99l-.248 2.738-1.245 1.493c-1.99.996-4.23 1.494-6.47 1.494l-4.48-2.24-1.493-1.991v-.498l.249-1.99c1.244-2.24 3.235-3.734 5.475-4.978h3.484l3.982 2.986.498.996h-.25zm54.751-39.82c0-2.986 1.245-5.724 4.48-5.724 2.489 0 4.728 2.49 4.728 4.978 0 .498-.746 2.24-.995 2.737l-5.226 1.991c-1.245-.995-2.24-2.488-2.987-3.982zm-6.72 25.634c0 2.24-1.741 3.982-3.981 3.982-1.991 0-4.48-2.489-4.48-4.48 0-1.99 1.742-4.23 3.733-4.23 2.24 0 4.729 2.488 4.729 4.728zm33.35-19.412c0-1.742 1.492-3.484 3.235-3.484 2.24 0 4.23 1.991 4.23 4.23 0 1.743-1.244 4.232-3.235 4.232-2.489 0-4.23-2.738-4.23-4.978zm-76.902 6.222l-2.488 2.738c-1.742 0-2.987-1.494-2.987-3.236l2.987-2.488 2.488 2.986zm135.386-9.706l-2.738-2.24 1.991-1.99 2.24 1.99-1.493 2.24zm-120.205 39.073l1.991-1.494 1.991 2.24-1.99 1.991-1.992-2.737zm-138.137 1.61l-4.48-2.489.498-.249 5.226-.248.498.746-1.742 2.24zm128.93-6.339l2.24-1.244 1.492 1.742-1.742 1.493-1.99-1.244v-.747zm75.407-21.403l-1.742 1.742-1.991-2.488 1.244-.996 2.489 1.742zm-39.322 2.738l-1.742-2.489 1.494-1.244 1.742 1.493-1.494 2.24zm32.354-10.702l-.747-1.493.995-2.24h.747l-.249 3.485-.746.248zm37.33-5.226l1.742-.995 1.245 1.244-1.245 1.244-1.742-1.493zm-77.896 27.376l1.742-1.244 1.244.995-1.493 1.742-1.493-1.493zm75.905-20.656l.996 1.742-1.245 1.244-1.244-1.244 1.493-1.742zm-239.428 32.221l-1.244-.747.996-.248 1.244.746-.996.25zm158.048-38.692l-.747-.498.498-.746.497.497-.248.747zm-20.906 44.299l-.497-.498.249-.498.497.25-.249.746zm17.67-32.602c-.249-.249-.249-.249-.249-.498l.25-.249.248.25-.249.497zm23.643-7.217c-.249.249-.249.249-.498.249l-.249-.25.25-.248.497.249zm85.86-13.44h-.249c0-.248 0-.248.25-.248v.249zm-256.102 33.715c.25 0 .25-.248.498-.248v.248l-.249.25c0-.25 0-.25-.249-.25zm131.418-25.004c-.249-.249-.249-.249-.249-.498h.25c.248 0 .248 0 .248.25-.249 0-.249 0-.249.248zm-141.373 28.24c-.248 0-.248-.25-.497-.25 0 .25.249.25.497.25zm9.457-4.48v-.249l.25.249h-.25zm664.017-37.916h-1.803l-1.803-6.611 1.202-2.404 1.803-.601.601 2.404v7.212zm56.494-33.656l2.404-2.404 1.803 3.005-1.803 3.005-2.404-3.606zm-33.656-26.444l1.202 1.202v1.202c-.601-.601-.601-.601-1.202-.601v-1.803zm187.34 59.262c.601 0 .601 0 .601.601s0 .601-.601.601l-.601-.601.601-.601zm83.701 3.025l.601.601v.601h-.601v-1.202zM1362.27 36.502c.601 0 .601 0 .601.601h-.601v-.601zm57.095 33.055h.601v.601c-.601 0-.601 0-.601-.601zm-111.185-8.414l3.005 6.01-9.015 6.01-4.808-6.01c3.005-3.606 5.409-8.414 9.616-10.818l1.803 2.404-.601 2.404zm-24.641 46.277l-6.01-4.207c0-4.207 1.202-9.616 6.611-9.616l5.409 6.611-6.01 7.212zm51.686-22.237l-6.01-9.015 5.409-3.005 6.01 4.808-5.409 7.212zm251.046 2.167l4.808 3.606-6.01 7.212-4.808-6.01 6.01-4.808zm155.013 25.479l3.005 3.005-2.404 3.606-8.414-2.404-2.404-4.207 4.808-2.404 5.409 2.404zm34.04-13.773v-1.803l6.01-4.207 4.808 5.409-4.207 4.808-6.611-4.207zm-149.599-16.277l3.606-6.611 4.207 6.611 6.995-5.192-14.808 5.192zm82.721 30.651l-4.207 6.01-3.606-6.01 3.005-4.808 4.808 4.808zm-51.686-26.444l3.005-4.207 3.005 4.808-3.005 3.005-3.005-3.606zm-332.954 42.671l-4.808-2.404 4.207-3.606 3.005 3.005-2.404 3.005zm-34.257-10.818l2.404-4.207 3.005 3.606-3.005 3.005-2.404-2.404zm388.236-13.439l2.404 1.803-2.404 1.803-1.803-1.803 1.803-1.803zm84.918-8.748l-1.202-.601 1.202-1.202 1.202 1.202-1.202.601zm-562.703 30l.601-1.202.601.601-.601 1.202-.601-.601zm15.46 4.45c-4.828 0-7.798-3.342-9.284-7.798.743-2.228.743-4.827 2.6-6.312 1.114-2.228 2.97-3.342 5.57-3.342 5.198 0 9.654 2.97 9.654 8.54 0 4.828-3.713 8.912-8.54 8.912zm-113.604 7.028c0-2.971 3.342-5.942 5.199-7.798 2.97 0 7.426 5.198 7.426 8.169 0 3.342-4.085 5.57-6.312 7.426-3.342-.37-6.313-4.455-6.313-7.797zm-46.345-26.817l-4.084 5.57c-3.714 0-7.056-3.343-7.427-7.056l5.199-4.827c3.713 0 6.312 2.6 6.312 6.313z"/></g></svg>`,38:`<svg viewBox="0 0 1920 255" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1106.457 241.001l12.529-1.761c-8.931 1.76-12.522 1.761-12.529 1.761h1.862c-35.368 3.723-76.321 5.585-119.136 5.585-9.307 0-18.615 0-24.2 1.861 1.862-1.861 3.724-1.861 5.585-1.861h-9.307c5.584-1.862 11.169-3.723 13.03-5.585h-111.69l-94.935-3.723c-109.829-5.584-173.12-9.307-186.15-11.168-65.152-5.585-124.72-13.031-182.426-18.615-57.706-7.446-87.49-11.17-93.075-11.17l-63.29-9.307c48.398 9.308 85.628 16.754 111.689 20.477 48.399 7.446 98.66 14.892 150.781 20.476l148.92 11.169c143.296 5.511 244.891 9.21 304.785 7.516-1.788.14-3.848.554-5.085 1.791h11.169c-11.169 1.862-24.2 1.862-39.091 1.862-5.585 0-16.754 0-31.646 1.861-13.03 0-24.2 0-29.784 1.862h-63.29l-120.998-3.723c-57.706-1.862-135.889-9.308-236.41-22.338l-81.905-9.307-40.953-5.585c-14.892-1.861-27.922-5.584-39.091-7.446-1.862 0-1.862 0-1.862-1.861h-1.861c-13.03-3.723-27.923-9.308-46.538-18.615l-14.891-1.862H199.91c1.862 0 3.723 0 7.446 1.862l-16.753-3.723c-35.369 0-67.014-3.723-91.214-9.308-1.861 0-1.861 0-1.861-1.861h-1.862c-1.861 0-3.723 0-1.861-1.862h7.446c13.03 1.862 20.476 1.862 24.2 0-1.862 0-5.585 0-7.447-1.861h-3.723c0-1.862 0-1.862 1.862-3.723-1.862 0-1.862 0-3.723-1.862 0 0-1.862-1.861-7.446-3.723 48.399 1.862 115.413 5.585 202.903 7.446l-7.446-3.723c-3.723-1.861-7.446-1.861-13.03-1.861-9.308 0-13.031 0-13.031-1.862-31.646 1.862-52.122 1.862-65.152 0-22.338 0-52.122-1.861-87.49-7.446L37.96 138.62c-13.03-1.861-22.338-5.584-29.784-7.446H6.315v-1.861H4.453c-2.438-1.22-4.077-1.64-4.396-2.308L0 127V0h1920v4l-.459.23c.13.112.26.232.39.362 1.86 0-33.508 9.307-102.383 26.06l-122.859 29.785 87.49-18.615c46.538-9.308 70.737-14.892 74.46-14.892-1.861 1.861-3.723 1.861-7.446 1.861l-7.446 3.723c9.308-1.861 16.754-3.723 18.615-3.723l-169.396 50.26-59.567 18.615-46.538 13.03c-24.2 5.585-40.953 11.17-50.26 14.893 57.706-13.03 124.72-31.646 204.764-55.845l48.4-13.03c26.06-9.308 48.398-14.892 67.013-18.615l-14.892 5.584 16.4-3.28c-11.353 2.614-29.34 11.553-55.491 23.757l-46.538 18.614c-13.03 3.723-26.06 7.446-37.23 13.031-16.753 5.584-26.06 9.307-26.06 9.307-14.893 5.585-39.092 9.308-70.737 14.892l-117.274 29.784-109.829 26.061c1.862-1.861 3.723-1.861 9.308-3.723-5.585 1.862-9.308 1.862-13.03 1.862 46.537-20.477 85.628-35.369 115.412-40.953-24.2 1.861-50.26 9.307-81.906 22.338-31.645 13.03-61.429 20.476-93.074 26.06l-20.477 3.724c7.321 0 29.038-1.8 66.92-3.63l-1.767 1.768h9.307c-20.476 5.585-78.183 14.892-176.842 27.923l-31.645 11.169 74.46-7.446c27.922-3.723 52.121-9.308 74.46-14.892l78.182-18.615c61.43-14.892 106.105-22.338 134.027-20.477 0-1.861 1.862-1.861 7.446-3.723h5.585c16.753-1.861 29.784-3.723 42.814-3.723l-7.446 1.862h13.03l-37.23 3.723c-29.783 13.03-80.043 24.2-150.78 37.23l-80.044 11.169c-50.26 9.307-76.322 13.03-78.183 13.03-9.308 1.862-22.338 1.862-42.814 3.723-20.477 0-35.369 1.862-42.815 3.723-29.784 5.584-63.29 9.307-98.659 11.169 20.477 1.861 33.507 1.861 39.091 1.861h-11.169 11.17zM958.9 246.656c.903-.07 1.737-.07 2.361-.07-.78.024-1.566.048-2.36.07zm417.38-65.129l.094-.093h1.862c-.657.03-1.309.062-1.956.093zm480.005-141.124l2.216-.443c-.709.118-1.447.266-2.216.443zm-741.35 200.587c-.343.011-.687.011-1.032.011h-5.584a1848 1848 0 0 0 6.617-.011zm0 0c1.507-.052 3.013-.329 4.519-1.816l106.139-14.926c42.814-3.723 72.598-5.584 93.075-3.723 1.861 0-1.862 0-7.446 1.862h11.169c-18.615 1.861-48.4 5.584-89.352 13.03-33.745 3.552-72.574 5.41-118.103 5.573zm4.519-1.816l-.468.066.502-.1a7.809 7.809 0 0 1-.034.034z" fill="${n}" fill-rule="nonzero"/></svg>`,39:`<svg viewBox="0 0 1920 85" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1481.47 31.033c1.99-.252 4.01-.504 6.067-.748l6.049-1.648c.34-.122.677-.242 1.01-.358l-5.598.495-7.528 2.26zm15.39-4.619c1.984-.2 3.86-.366 5.627-.498a89.808 89.808 0 0 1 3.978-.898l-2.01.763c.358-.023.71-.044 1.058-.063l1.242-.252c-.256.06-.529.136-.82.229.666-.036 1.313-.065 1.943-.09l16.7-.605h8.736c.77.303 2.312.303 4.11.303 2.056.303 3.598.303 4.368.303.654 0 1.282 0 1.883.01-13.57-1.42-26.97-1.721-40.34-1.145l-6.475 1.943zm49.48-.506h-.694c.171.202.455.27.702.292-8.266-.276-22.289.326-42.067 1.223l-3.154.278c-.944.44-1.974.93-3.095 1.463 4.195-.338 11.557-.817 21.922-1.439l13.103-.605h15.416c-.257-.303-1.028-.606-1.799-.909h1.285c-.22 0-.44 0-.66-.19l-.958-.113zm1.616.192c.125.019.256.035.39.048l-.39-.048zm47.438 10.128a13.408 13.408 0 0 0-.675-.024l2.826.606.028.006-2.18-.588zm9.693 2.622a48.625 48.625 0 0 1 5.304 2.2c4.368 2.12 7.965 3.33 11.305 3.634-3.144-.695-7.039-2.276-11.57-4.47l-5.04-1.364zm27.824 9.07a224.922 224.922 0 0 0-7.104-2.025c1.05.495 2.786 1.192 5.21 1.926.63.036 1.262.069 1.894.098zm11.376 4.403l1.88.693 2.615.102c-.702-.244-1.396-.483-2.082-.72a71.837 71.837 0 0 1-2.413-.075zm10.849.202c.328.113.658.224.988.335l1.144.539c1.688.047 3.432.09 5.234.129l-.285-.142a672.93 672.93 0 0 1-3.11-.7c-1.185-.002-1.666-.021-1.666-.28-.816.047-1.584.087-2.305.119zm-24.144 1.564l-2.359-.926c-5.91-1.817-11.048-2.726-15.93-3.029 0 .303-1.284-.302-4.11-1.817l-12.332-1.514c-6.937-.605-10.791-.908-12.076-1.211-1.798-.303-4.368-.606-7.708-.606-3.34-.302-5.909-.302-7.707-.605l-4.625-.909-4.368-.605c-2.826-.303-5.91-.303-9.25-.303-3.082-.303-9.248-.303-18.498-.303.257-.909-1.284-1.514-4.881-1.211-6.166-.303-12.59-.303-19.013-.303-7.707 0-13.617.303-17.728.908l-16.7.606c-3.854.303-9.506.606-16.7 1.514-4.59.65-8.524 1.144-11.99 1.373l-6.168 1.585-21.107 5.067c.357-.362.715-.362 1.788-.724-1.073.362-1.788.362-2.504.362 5.532-2.463 10.517-4.51 14.869-5.97-.838.035-1.673.076-2.508.123a82.734 82.734 0 0 0-5.921 2.228c-6.082 2.533-11.806 3.98-17.888 5.066l-3.935.724c1.407 0 5.58-.35 12.86-.705l-.339.343h1.789c-3.935 1.086-15.026 2.896-33.987 5.429l-6.082 2.172 14.31-1.448c5.367-.724 10.018-1.81 14.31-2.895l15.026-3.62c11.806-2.895 20.393-4.342 25.759-3.98 0-.362.358-.362 1.43-.724h1.074c3.22-.362 5.724-.724 8.229-.724l-1.431.362h2.504l-7.155.724c-5.724 2.533-15.384 4.704-28.979 7.238l-15.383 2.171c-9.66 1.81-14.668 2.534-15.026 2.534-1.789.362-4.293.362-8.228.723-3.935 0-6.798.362-8.229.724-5.724 1.086-12.163 1.81-18.96 2.172 3.935.362 6.439.362 7.512.362h-2.146 2.146l2.408-.343c-1.716.342-2.406.343-2.408.343h.358c-6.797.723-14.668 1.085-22.896 1.085-1.79 0-3.578 0-4.651.362.358-.362.715-.362 1.073-.362h-1.789c1.074-.362 2.147-.723 2.505-1.085h-21.466l-18.245-.724c-15.571-.801-26.275-1.405-31.824-1.812l3.055 1.222 1.083.507 5.863.445c27.54 1.071 47.065 1.79 58.576 1.461-.344.027-.74.108-.978.348h2.147c-2.147.362-4.651.362-7.513.362-1.073 0-3.22 0-6.082.362-2.504 0-4.65 0-5.724.362h-12.164l-23.254-.724c-1.825-.06-3.758-.148-5.798-.267 1.531.675 2.764 1.153 3.728 1.375l-2.921-.584 2.652.995a83.284 83.284 0 0 1-8.308-2.107c-1.498-.111-3.045-.236-4.644-.373l13.947 4.138c-.332 0-1.658-.332-3.316-.663l1.327.663c.663 0 .994 0 1.326.331-.663 0-4.974-.994-13.263-2.652l-15.584-3.316 21.884 5.305c12.268 2.984 18.568 4.642 18.237 4.642-.332.332-.664.332-.995.332h.331c-.994.331-5.636 0-13.263-.663l-14.258-1.99c-.331-.331-.663-.331-.994-.331-.332-.332-.664-.332-.995-.332-.663-.331-.995-.663-.995-.995-.663-.331-5.305-1.326-14.258-3.315l-9.615-2.985-7.283-2.427-8.118-.933-7.87-1.086c-2.863-.362-5.367-1.086-7.514-1.448-.357 0-.357 0-.357-.362h-.358c-2.014-.582-4.26-1.398-6.923-2.637l-13.304-1.386c-8.952-.663-13.926-.994-15.584-1.326-2.321-.331-5.637-.663-9.947-.663-4.31-.332-7.627-.332-9.948-.663l-5.968-.995-5.637-.663c-3.647-.332-7.626-.332-11.937-.332-3.979-.331-11.937-.331-23.873-.331.331-.995-1.658-1.658-6.3-1.327-7.958-.331-16.248-.331-24.537-.331-9.948 0-17.574.331-22.88.995l-21.552.663c-4.973.331-12.268.663-21.552 1.658-8.29.994-14.921 1.658-20.558 1.658-.975 0-1.946.003-2.915.01-2.396.832-3.7 1.353-3.7 1.353-3.165 1.187-8.308 1.978-15.032 3.165l-24.92 6.329-23.34 5.538c.396-.396.792-.396 1.978-.791-1.186.395-1.977.395-2.769.395 9.89-4.35 18.197-7.515 24.526-8.702-5.143.395-10.68 1.978-17.405 4.747-6.725 2.769-13.054 4.35-19.779 5.538l-4.35.79c1.555 0 6.17-.382 14.22-.77l-.376.375h1.978c-4.351 1.187-16.614 3.165-37.58 5.934l-6.724 2.373 15.823-1.582c5.933-.791 11.076-1.978 15.823-3.165l16.613-3.955c13.054-3.165 22.548-4.747 28.481-4.352 0-.395.396-.395 1.583-.79h1.186c3.56-.396 6.33-.792 9.098-.792l-1.582.396h2.769l-7.911.79c-6.33 2.77-17.01 5.143-32.041 7.912l-17.01 2.374c-10.68 1.977-16.218 2.769-16.614 2.769-1.977.395-4.746.395-9.098.79-4.35 0-7.515.396-9.098.792-6.329 1.187-13.449 1.978-20.965 2.373 4.352.396 7.12.396 8.307.396h-2.373 2.769c-7.516.79-16.218 1.187-25.317 1.187-1.977 0-3.955 0-5.142.395.396-.395.791-.395 1.187-.395h-1.978c1.187-.396 2.373-.792 2.769-1.187h-23.734l-20.174-.791c-23.339-1.187-36.788-1.978-39.557-2.374-13.845-1.186-26.503-2.769-38.765-3.955-12.263-1.583-18.592-2.374-19.779-2.374l-13.45-1.978c10.286 1.978 18.197 3.56 23.735 4.352 10.285 1.582 20.965 3.164 32.04 4.35L756 81.393c30.45 1.171 52.04 1.957 64.767 1.597-.38.03-.817.118-1.08.381h2.373c-2.373.396-5.142.396-8.307.396-1.187 0-3.56 0-6.724.395-2.77 0-5.143 0-6.33.396H787.25l-25.712-.791c-12.262-.396-28.876-1.978-50.237-4.747l-17.405-1.978-8.702-1.187c-3.165-.395-5.934-1.186-8.307-1.582-.396 0-.396 0-.396-.396h-.395c-2.77-.79-5.934-1.977-9.89-3.955l-3.164-.396h-3.56c.395 0 .791 0 1.582.396l-3.56-.791c-7.516 0-14.24-.791-19.383-1.978-.395 0-.395 0-.395-.396h-.396c-.395 0-.791 0-.395-.395h1.582c2.769.395 4.351.395 5.142 0-.395 0-1.187 0-1.582-.396h-.791c0-.395 0-.395.395-.791-.395 0-.395 0-.79-.396 0 0-.396-.395-1.583-.79.714.027 1.446.056 2.198.087l-11.702-1.633c-.331-.331-.663-.331-.994-.331-.332-.332-.664-.332-.995-.332-.663-.331-.995-.663-.995-.995-.663-.331-5.305-1.326-14.258-3.315l-9.615-2.985-9.948-3.315c-7.626-1.99-14.258-2.985-20.558-3.316 0 .331-1.658-.332-5.305-1.99l-15.916-1.658c-8.952-.663-13.926-.994-15.584-1.326-2.321-.331-5.637-.663-9.947-.663-4.31-.332-7.627-.332-9.948-.663l-5.968-.995-5.637-.663c-3.647-.332-7.626-.332-11.937-.332-3.979-.331-11.937-.331-23.873-.331.331-.995-1.658-1.658-6.3-1.327-7.958-.331-16.248-.331-24.537-.331-9.948 0-17.574.331-22.88.995l-21.552.663c-4.973.331-12.268.663-21.552 1.658-8.29.994-14.921 1.658-20.558 1.658-2.492 0-4.962.022-7.415.072-1.687.69-3.685 1.56-6.021 2.553l-8.916 3.21c-2.487.618-4.973 1.235-7.12 2.217-3.203.944-4.986 1.586-4.986 1.586-2.85.957-7.448 1.5-13.464 2.347l-22.355 4.854-20.924 4.2c.364-.34.716-.328 1.784-.642-1.068.314-1.771.29-2.475.265 8.928-3.562 16.413-6.118 22.077-6.976-4.584.192-9.558 1.427-15.623 3.68-6.065 2.253-11.742 3.464-17.758 4.31l-3.894.568c1.384.049 5.499-.148 12.669-.244l-.346.323 1.759.061c-3.906.92-14.871 2.298-33.598 4.11l-6.053 1.9 14.118-.915c5.3-.52 9.91-1.415 14.167-2.322l14.895-3.002c11.705-2.408 20.196-3.52 25.46-2.984.012-.352.363-.34 1.43-.655l1.056.037c3.178-.241 5.652-.507 8.114-.42l-1.419.302 2.462.086-7.059.457c-5.713 2.266-15.284 4.045-28.735 6.04l-15.198 1.582c-9.558 1.427-14.507 1.959-14.858 1.946-1.771.29-4.233.205-8.115.421-3.869-.135-6.695.119-8.114.421-5.664.859-12.02 1.341-18.715 1.46 3.857.487 6.319.573 7.374.61l-2.11-.074 2.462.086c-6.708.47-14.458.551-22.547.269-1.76-.062-3.518-.123-4.585.192.364-.34.716-.327 1.067-.315l-1.758-.061c1.067-.315 2.135-.63 2.499-.97l-21.104-.737-17.913-1.33c-20.715-1.78-32.65-2.9-35.099-3.338-12.273-1.485-23.48-3.285-34.346-4.721-10.854-1.788-16.457-2.688-17.513-2.724l-11.897-2.177c9.084 2.078 16.069 3.73 20.968 4.606 9.096 1.726 18.544 3.465 28.355 4.864l28.064 3.093c27.04 1.987 46.211 3.356 57.54 3.431-.34.015-.732.08-.974.305l2.11.074c-2.122.278-4.584.192-7.398.094-1.055-.037-3.165-.11-5.991.143-2.462-.086-4.573-.16-5.64.155l-11.959-.418-22.837-1.502c-10.891-.732-25.615-2.655-44.522-5.78l-15.414-2.3-7.701-1.325c-2.802-.45-5.24-1.24-7.337-1.665-.352-.012-.352-.012-.34-.364-2.79-.801-5.566-1.955-9.022-3.836l10.12 2.002-3.165-.11c.352.012.704.024 1.395.4l-3.141-.813c-6.683-.234-12.638-1.146-17.173-2.36-.352-.013-.352-.013-.34-.365-.703-.024-1.055-.037-.69-.376l1.406.05c2.45.437 3.857.486 4.573.159-.352-.013-1.056-.037-1.395-.401-.691-.376-.691-.376-.327-.716-.352-.012-.352-.012-.691-.376 0 0-.34-.364-1.383-.753 9.133.671 8.848-.635 25.367.294l-1.382-.753c-.692-.376-1.395-.4-2.45-.438-1.759-.061-2.462-.086-2.45-.437-5.992.142 3.062 2.46.612 2.022-4.22-.147-9.836-.696-16.482-1.984l-15.754-2.663c-2.45-.438-4.184-1.203-5.578-1.604l-.34-.364c-1.043-.388-1.394-.4-1.03-.74.351.012.703.025 1.419-.302 1.77-.29 3.893-.569 5.64-.156 9.457 1.349 18.938 2.044 28.745 2.411C37.132 46.006 26.174 42.032 0 35V0h1920v35c-8.047-1.185-16.074-1.682-24.086-1.641l-24.508 7.258-8.997 2.807-7.029 1.965c-3.655.842-6.186 1.684-7.591 2.245 8.716-1.965 18.838-4.771 30.928-8.42l7.31-1.965a71.457 71.457 0 0 1 10.122-2.806l-2.25.842 2.477-.495c-1.714.394-4.431 1.742-8.381 3.582l-7.03 2.807c-1.967.561-3.935 1.122-5.622 1.964-2.53.842-3.937 1.404-3.937 1.404-2.249.842-5.904 1.403-10.684 2.245l-17.713 4.49-16.589 3.93c.281-.28.563-.28 1.406-.561-.843.28-1.406.28-1.968.28 7.029-3.087 12.933-5.332 17.432-6.174-3.655.28-7.591 1.403-12.371 3.368-4.78 1.964-9.278 3.087-14.058 3.929l-3.093.561c1.106 0 4.386-.271 10.108-.547l-.267.267h1.405c-3.092.842-11.808 2.245-26.71 4.21l-4.78 1.684 11.247-1.123c4.217-.561 7.872-1.403 11.246-2.245l11.81-2.807c9.277-2.245 16.025-3.368 20.243-3.087 0-.281.281-.281 1.125-.562h.843c2.53-.28 4.499-.561 6.467-.561l-1.125.28h1.968l-5.623.562c-4.499 1.965-12.09 3.649-22.774 5.613l-12.09 1.684c-7.592 1.404-11.528 1.965-11.81 1.965-1.405.28-3.373.28-6.466.561-3.093 0-5.342.281-6.467.562-4.498.842-9.56 1.403-14.901 1.684 3.093.28 5.06.28 5.904.28h-1.687 1.968c-5.342.562-11.527.842-17.994.842-1.406 0-2.812 0-3.655.281a.965.965 0 0 1 .22-.168l-.33.01c.125-.01.241-.01.332-.01.207-.113.414-.113.621-.113h-1.406c.844-.28 1.687-.561 1.969-.842h-16.87l-14.34-.561c-16.588-.842-26.148-1.403-28.116-1.684-9.84-.842-18.838-1.965-27.554-2.807-3.263-.42-5.935-.762-8.045-1.024.774.374 1.428.646 1.972.794l-2.263-.534 1.803.797c7.244 1.112 14.764 2.22 22.56 3.055l22.493 1.684c21.643.83 36.988 1.388 46.035 1.133-.27.02-.581.083-.768.27h1.687c-1.687.28-3.655.28-5.905.28-.843 0-2.53 0-4.78.281-1.968 0-3.655 0-4.498.281h-9.56l-18.275-.561c-8.716-.281-20.525-1.404-35.708-3.368l-12.371-1.404-1.801-.245.372.22c.514 0 .771 0 1.028.302-.294 0-1.516-.297-3.712-.837l-2.073-.282c-1.46-.182-2.802-.483-4.026-.748l4.415 1.262c9.507 2.725 14.388 4.24 14.131 4.24-.257.302-.513.302-.77.302h.257c-.771.303-4.368 0-10.277-.605l-11.048-1.817c-.257-.303-.514-.303-.771-.303-.257-.303-.514-.303-.77-.303-.515-.303-.772-.606-.772-.909-.513-.302-4.11-1.21-11.047-3.028l-7.451-2.725-2.51-.986c-1-.166-1.942-.352-2.819-.554-.281 0-.281 0-.281-.281h-.281c-.282 0-.563 0-.282-.28h.824zm23.1 3.957l-6.19-1.552 8.527 2.436c-.734-.25-1.51-.54-2.338-.884zm4.059 1.376l.134.038v-.038h-.134zm11.067.516a56.497 56.497 0 0 1-4.836-1.443c-1.16-.13-1.873-.196-2.16-.196l-1.741-.255 2.21.773c2.524.47 4.7.853 6.527 1.121zm-216.74-20.288a82.9 82.9 0 0 0-3.367.937c.486.021.996.048 1.532.08 1.407-.348 2.841-.711 4.305-1.09-.838.023-1.66.047-2.47.073zm25.228-10.781c.3-.045.6-.09.898-.133l13.909-2.994c1.68-.34 3.207-.654 4.587-.94-1.304.082-2.607.172-3.91.27l-15.484 3.797zm308.253 36.126l-.035.005.025-.005L1785 65c.225-.007.45-.046.675-.257l15.86-2.113c6.398-.527 10.849-.79 13.909-.527.278 0-.278 0-1.113.264H1816c-2.782.263-7.232.79-13.352 1.844-4.804.48-10.297.74-16.689.784zm109.362-31.632l-.678.007-.462.23c.408-.08.793-.162 1.14-.237zm-2.29.034c-1.072.022-2.144.054-3.215.095l-17.847 4.319 13.214-2.807c3.39-.677 5.996-1.223 7.848-1.607zm-25.095 2.065c-18.396 2.52-36.732 6.97-55.056 11.52l2.575-.19 13.496-1.403c3.093-1.404 4.498-1.965 4.498-1.684 5.342-.28 10.966-1.123 17.432-2.807l8.435-2.807 8.154-2.526.466-.103zm-619.443 24.816l.71.222 7.215 2.14 4.455.339-3.049-.82c-1.579-.478-3.13-.944-4.653-1.397a925.7 925.7 0 0 1-4.678-.484zm214.804-31.716c-14.397 2.226-28.925 5.178-43.758 8.558a673.619 673.619 0 0 1-19.117 4.073l3.367-.25 17.172-1.81c3.936-1.81 5.725-2.534 5.725-2.172 6.797-.362 13.952-1.447 22.18-3.619l10.733-3.619 3.698-1.16zm-218.224 18.18c-10.739-1.472-21.676-3.332-32.894-5.59a548.61 548.61 0 0 0-33.957-5.737c-3.145-.068-7.059-.356-11.913-.778l-16.927-2.38c-2.405-.199-4.805-.38-7.2-.546a83.086 83.086 0 0 0-4.057.273c6.3.332 12.268.995 17.573 1.99 1.327.331 3.98.663 7.627.663 3.647.332 5.968.332 7.626.663.331 0 4.974.663 13.926 2.321l14.258 1.99c11.906 2.193 20.555 4.09 25.948 6.25 3.11.206 5.804.358 8.057.51l11.933.372zm-39.19-2.654c-2.481-.511-5.173-1.121-8.074-1.825l-13.927-3.315c-3.979-.995-8.289-1.99-13.263-2.653l-13.263-1.326 5.637 1.99c17.574 2.32 27.853 3.978 31.5 4.973h-1.658l.315.315c-6.748-.326-10.616-.647-11.92-.647l3.647.663c.873.154 1.738.316 2.598.489h.23c5.146 0 11.062.518 18.179 1.336zm-.134 4.456c1.167.406 2.292.76 3.382 1.064l-1.392-.704c-.595-.3-1.19-.351-1.99-.36zM570.56 38.352c5.145 2.045 9.46 3.223 13.486 3.532-2.53-.474-5.435-1.325-8.681-2.48a1634.97 1634.97 0 0 0-4.805-1.052zm62.367 14.265l3.84 1.536c3.493 1.63 6.169 2.933 8.141 3.68 4.015.137 8.059.204 12.152.218a2291.878 2291.878 0 0 1-24.133-5.434zm8.712 5.087a85.745 85.745 0 0 1-7.194-2.225l-8.62-2.32c-14.258-4.311-26.195-7.627-36.474-9.948 1.658.663 4.642 1.658 8.952 2.652l8.29 2.321 10.61 3.316 20.165 5.983c1.421.084 2.844.157 4.271.22zM626.21 56.59l-8.343-1.775 6.314 1.53c.302.027.598.068.886.125.38.041.762.081 1.143.12zm27.984 7.125c2.661.687 3.948 1.047 3.794 1.047a1.373 1.373 0 0 1-.025.024c7.12.294 15.257.587 24.46.783l-1.581-.792c-.792-.395-1.583-.395-2.77-.395-1.977 0-2.768 0-2.768-.396-6.725.396-11.076.396-13.845 0-2.118 0-4.552-.078-7.265-.271zM338.093 42.78c-1.706.067-3.406.15-5.102.25l-16.331 4.231-11.378 3.124-8.88 2.155c-4.608.896-7.81 1.84-9.594 2.482 10.99-2.08 23.774-5.156 39.058-9.2l9.231-2.143a94.027 94.027 0 0 1 2.996-.9zm-20.009.883l-.044-.008-.554.113.598-.105zm27.909-5.771a88.665 88.665 0 0 1 7.274-.32c2.32-.33 5.968-.33 11.605 0 0-.33.663-.33 2.321-.33.995 0 1.658 0 2.321-.332l1.327-.663c-7.535.16-14.217.398-20.083.638-1.434.306-3.023.642-4.765 1.007zm-8.414-2.515c-.764-.096-1.906-.028-3.544.206h-1.326a1.297 1.297 0 0 1-.019-.019c-17.926 4.132-35.554 8.727-53.117 13.157 3.59-.446 7.361-1.1 11.399-2.005l10.674-3.149 10.31-2.809c9.571-1.779 14.532-2.662 15.248-2.989.012-.352.376-.691 1.092-1.018.352.012.703.024 1.067-.315.352.012.704.024 1.068-.315l7.148-.744zm3.085-1.613c26.882-5.938 54.507-10.635 83.653-12-8.222.672-17.952 1.742-29.271 3.209l-14.59 1.658-7.294.995c-2.653.331-4.974.994-6.964 1.326-.331 0-.331 0-.331.331h-.332c-2.32.664-4.973 1.658-8.29 3.316l-2.652.332h-2.984c.332 0 .663 0 1.326-.332l-2.984.663a84.1 84.1 0 0 0-9.287.502zM461.54 21.94c-8.278.252-17.953.618-29.026 1.043l-26.526 1.99c-9.284.995-18.237 2.32-26.858 3.647-4.642.663-11.274 1.99-19.895 3.648l11.274-1.658c.995 0 6.3-.663 16.579-1.99 10.279-.994 20.89-2.32 32.495-3.316 2.32-.331 13.594-.994 33.157-1.989l16.91-.663h2.347a477.08 477.08 0 0 0-10.457-.712zM996.693 45.4l-2.58 1.032c.862.038 1.78.085 2.76.143 0-.332.662-.332 2.32-.332.995 0 1.658 0 2.321-.331l1.327-.663c-2.117.045-4.166.096-6.148.151zm123.794-14.762l-2.107-.059c.14.037.286.057.424.068-10.669-.302-28.765.357-54.29 1.338l-26.526 1.99c-9.284.995-18.237 2.32-26.858 3.647-1.262.18-2.671.41-4.227.682l-4.425 1.312.031-.004c.995 0 6.3-.663 16.579-1.99 10.279-.994 20.89-2.32 32.495-3.316 2.32-.331 13.594-.994 33.157-1.989l16.91-.663h19.896c-.332-.332-1.327-.663-2.321-.995h1.658c-.132 0-.264 0-.396-.02zM981.113 45.954l-3.178.943a95.045 95.045 0 0 1 4.598-.274c.924-.276 1.857-.556 2.798-.84-1.452.057-2.858.114-4.218.171zm-21.232 6.437l-6.098 1.707c-5.142 1.187-8.702 2.373-10.68 3.165 6.223-1.406 12.955-3.116 20.3-5.133-1.176.078-2.35.165-3.522.26zm34.33-12.996l-1.358.209-10.97 2.66h.068l2.984-.664c-.663.332-.994.332-1.326.332h.497l8.128-1.73a48.297 48.297 0 0 1 1.978-.807zm-45.142 7.836a1711.243 1711.243 0 0 0-20.35 4.036c5.802-.614 11.937-1.725 18.735-3.498l1.615-.538zm-31.156 6.274a2310.716 2310.716 0 0 0-4.291.903l2.978-.31c.464-.211.902-.409 1.313-.593zM820.766 82.99c.192-.014.37-.014.502-.014l-.502.014zm88.694-13.84l.02-.02h.395l-.415.02zm-55.536 12.636c-.073.003-.146.003-.22.003h-1.186c.472 0 .94-.001 1.406-.003zm0 0c.32-.01.64-.07.96-.386l22.555-3.171c9.098-.791 15.427-1.187 19.778-.791.395 0-.396 0-1.582.395h2.373c-3.956.396-10.285 1.187-18.987 2.77-7.171.754-15.422 1.149-25.097 1.183zm.96-.386l-.1.014.107-.02a1.667 1.667 0 0 1-.007.006zm-.1.014c-1.9.375-2.662.375-2.662.375l2.662-.375zm264.02-50.767l.42.012c-.11 0-.26 0-.42-.012zm74.346 11.6l.348.017h-.331l-.017-.016zm85.5 25.138c.138.032.27.058.395.08l-.394-.08zM177.68 74.103a5.634 5.634 0 0 0-.447-.003l.447.003zm78.864-9.572l.352.012-.37.005.018-.017zm-49.986 9.524l-1.055-.037 1.25.041c-.065 0-.13-.002-.195-.004zm1.06-.31l20.154-2.119c8.114-.421 13.754-.576 17.61-.09.352.013-.351-.012-1.419.303l2.11.074c-3.529.229-9.18.736-16.968 1.872-6.4.449-13.748.544-22.352.274.285 0 .571-.042.866-.313zm-.088.01a34.5 34.5 0 0 0 .095-.015 1.49 1.49 0 0 1-.006.006l-.09.01zm-2.379.25s.678.024 2.379-.25l-2.379.25zm1129.139-8.439c.173-.014.333-.014.453-.014l-.453.014zm80.215-12.662l.018-.019h.358l-.376.019zm92.25-27.438l.427-.086a7.039 7.039 0 0 0-.426.086zm-142.477 38.998c-.066.003-.133.003-.199.003h-1.073c.427 0 .85-.001 1.272-.003zm0 0c.29-.01.579-.063.868-.353l20.399-2.902c8.228-.723 13.952-1.085 17.887-.723.358 0-.357 0-1.43.362h2.146c-3.578.361-9.302 1.085-17.172 2.533-6.486.69-13.948 1.052-22.698 1.083zm.868-.353l-.09.013.097-.02a1.516 1.516 0 0 1-.007.007zM1794.143 63H1793c.857 0 1.429 0 2-.28-.286.28-.571.28-.857.28zm29.562-7l.014-.014h.281l-.295.014zm72.96-21l.335-.067c-.107.018-.219.04-.335.067zM1785 64.998c-.052.002-.104.002-.156.002H1784c.336 0 .669 0 1-.002zm0-.264c-1.427.266-2 .266-2 .266l2-.266zM1546.238 26l.762.023c-.202 0-.47 0-.762-.023z" fill="${n}" fill-rule="evenodd"/></svg>`,40:`<svg viewBox="0 0 1920 105" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1919.907 79.685c.044.992-.183.547-.906-2.314-9.313-36.836-59.693-72.785-98.19-51.04-3.123 1.764-14.043 11.599-22.806 21.904-.337.4 3.687 18.175 3.499 20.815-.457 6.334-1.093 9.517-6.884 12.225-6.773 3.167-20.505 1.316-21.503-7.779-.942-8.607 2.135-18.254 7.058-27.137-10.371-18.45-26.977-30.74-53.316-24.396-15.13 3.646-31.543 10.34-40.994 23.344 5.981 8.716 19.299 26.823 9.916 35.887-5.44 5.257-23.155 10.42-29.155 3.663-3.787-4.265-1.858-14.68-1.022-19.748.338-2.058 7.02-19.35 6.971-19.41-17.723-21.783-43-32.578-75.237-20.146-12.653 4.879-26.37 11.257-36.428 20.974 6.876 11.656 17.968 30.19 10.407 43.873-13.274 24.02-43.588 2.618-38.14-20.036.687-2.86 13.57-25.086 13.995-24.48-3.283-4.696-6.5-8.544-8.824-10.79-14.025-13.561-30.837-20.225-50.318-13.646-11.358 3.834-23.192 7.983-33.399 14.453-1.04.586-1.961 1.335-2.967 1.97.608-.386 3.971 23.792 3.22 26.955-1.574 6.623-5.6 9.838-12.173 11.593-9.34 2.496-29.663-.987-24.175-14.712 3.95-9.877 10.1-18.468 17.62-25.772-16.531-14.465-53.239-13.571-71.916-6.74-6.241 2.283-22.77 12.595-34.907 24.416.951 1.34 1.987 2.585 2.856 4.01 6 9.848 13.205 31.795-3.135 35.797-15.566 3.811-30.65-15.22-21.747-28.833 2.333-3.565 4.801-7.067 7.346-10.515-18.127-15.58-50.584-28.188-59.988-29.762-18.264-3.06-41.351-2.824-54.008 13.559.196-.255-.324.978-1.182 2.991-.457 1.075 5.268 12.349 5.672 14.65.893 5.082 1.23 11.583-.4 16.56-2.109 6.436-10.035 14.57-17.689 13.74-7.5-.824-9.494-9.3-9.011-15.665.345-4.555 7.825-24.452 5.302-27.791-11.077-14.661-29.734-24.164-48.375-22.62-16.776 1.393-32.92 5.966-46.936 15.675-1.562 1.082-7.676 5.192-14.03 10.585 1.362 1.81 2.825 3.502 3.992 5.537 15.722 27.424-22.913 50.096-30.625 20.77-1-3.815 7.383-26.552 10.708-24.292-13.736-9.338-34.104-16.29-41.705-16.621-14.22-.621-28.7-.184-42.268 4.773-5.089 1.858-20.95 10.722-33.183 20.672 4.117 8.74 7.242 25.172 2.244 34.093-6.848 12.223-21.907 4.606-26.827-5.093-4.036-7.955-3.39-18.535 1.908-25.753 2.04-2.779 4.301-5.408 6.656-7.956-15.798-16.757-49.441-22.66-68.385-18.107-8.264 1.985-20.88 6.847-32.041 13.781 2.382 5.055 4.38 10.344 5.472 16.078 2.374 12.452-1.96 33.448-15.808 37.992-12.084 3.965-22.493-11.252-23.846-22.115-.83-6.649 1.72-12.918 5.241-18.411 1.077-1.682 14.64-16.29 15.043-15.623-2.468-4.073-5.1-7.466-7.465-9.56-16.682-14.741-39.199-27.314-62.002-13.114-11.668 7.263-24.006 14.612-33.67 24.505-.186.192-1.343 1.698-2.953 3.939 5.387 12.213 6.793 57.376-19.133 43.911-13.904-7.219-4.192-32.92 1.838-42.5a67.173 67.173 0 0 1 2.573-3.764c-10.736-13.678-31.358-21.023-50.661-18.824-15.306 1.744-37.758 7.967-53.092 18.606 2.985 4.295 5.52 8.986 7.335 14.257 3.84 11.164 4.678 24.325-2.905 34.155-14.546 18.857-28.165-1.74-30.967-18.73-.557-3.384 6.939-31.153 9.813-28.243-8.593-8.7-19.941-15.606-29.58-18.767-19.336-6.342-48.446-7.624-62.883 4.347.773.83 1.634 1.524 2.37 2.411 6.158 7.45 9.891 19.756 6.926 29.233-1.705 5.448-10.334 13.025-16.433 11.81-7.163-1.426-10.389-13.379-11.36-19.65-.285-1.835.996-21.157 1.935-20.564-6.446-4.06-13.221-6.882-16.532-7.672-9.159-2.185-18.71-4.28-28.193-3.596-11.102.799-23.044 2.682-32.152 9.72-2.158 1.665-5.875 5.184-9.422 9.519.138-.168 7.892 14.123 8.38 15.618 1.734 5.348 2.973 11.555.858 16.997-6.034 15.516-21.834 5.89-27.296-5.07-1.42-2.85-.798-24.803 1.325-23.556-8.49-4.99-17.756-8.506-20.68-9.258-8.362-2.153-17.181-4.612-25.906-4.27-13.895.543-25.803 4.904-34.103 15.44 5.149 14.164 6.773 44.66-16.41 36.846-11.002-3.709-5.008-21.789-1.625-30.217 1.13-2.813 2.527-5.517 4.05-8.15-10.451-13.946-29.904-26.24-39.232-27.544-14.599-2.04-30.078.413-42.034 9.65-2.327 1.798-5.372 4.502-8.466 7.738.452 1.077.856 2.253 1.373 3.223 3.085 5.794 7.735 11.765 9.288 18.242 5.228 21.823-29.53 31.524-34.043 7.292-1.864-10.008 3.248-20.966 8.302-29.275-5.09-9.574-12.09-16.692-26.874-10.671-11.4 4.64-23.32 10.835-31.942 19.9.782 3.049 1.364 6.125 1.576 9.138.624 8.905-1.653 22.561-11.684 25.66-10.696 3.3-17.018-7.147-15.368-16.664.563-3.238 11.092-19.893 10.76-20.566C79.03 37.077 68.51 29.445 55.648 33.405 29.18 41.547 8.113 57.839 13.318 87.658c.885 5.07-6.138 8.906-8.82 3.72C1.662 85.9.254 80.375.031 74.952L0 75V0h1920v80l-.093-.315zm-129.22-5.809a140.484 140.484 0 0 0-3.044-10.42c-2.34 5.27-2.049 9.288 3.044 10.42zm-116.316 3.495c5.317 2.613 10.486 1.934 15.526-1.696-2.834-6.949-6.105-13.55-9.86-19.578-2.899 6.589-6.1 15.079-5.666 21.274zM1556.04 90.792c3.447-4.67 4.73-11.237 4.16-16.908-.267-2.688-7.476-19.038-7.452-19.137-2.263 9.321-7.937 16.44-6.377 26.704.598 3.933 4.421 16.447 9.67 9.341zm-113.772-25.11c5.89-5.915-4.897-16.337.295-20.945-1.414 1.255-2.897 2.42-4.22 3.801-5.997 4.717-14.493 25.795.822 19.154 1.346-.584 2.358-1.26 3.103-2.01zm-121.61 21.09c8.995-8.122 7.811-16.837 1.424-25.115-7.197 9.3-9.823 18.608-1.424 25.115zm-127.266-12.8c.307-4.835-.259-9.546-1.449-14.073-3.29 9.614-4.864 17.89 1.449 14.072zm-131.312 3.746c12.691-7.567 11.085-16.039 3.46-23.662-7.478 8.235-11.884 17.395-3.46 23.662zm-130.913 7.149c2.673-7.523 2.913-14.23 1.196-20.108-7.28 7.919-10.013 15.554-1.196 20.108zm-125.64 8.023c17.861-4.16 16.156-23.01 9.571-38.355-12.504 10.35-19.622 23.688-9.57 38.355zm-112.86-4.107c4.433-9.27 5.443-17.789 3.912-25.289-6.75 11.209-12.627 24.352-3.911 25.29zm-117.147 4.52c10.058-11.527 7.943-24.205.305-35.207-7.706 9.388-9.54 21.122-.305 35.206zM472.786 65.298c4.908-6.579 2.3-13.165-3.176-18.774-1.977 5.77-1.917 13.038.788 21.997a6.17 6.17 0 0 1 2.388-3.223zM370.238 75.756c5.325-6.07 2.586-12.23-3.29-17.63-2.968 6.597-3.317 13.293 2.763 17.917.174-.105.348-.2.527-.287zM264.223 80.27c4.67-4.556 6.025-9.83 4.908-15.346-2.71 4.873-5.532 11.065-4.908 15.346zM159.54 72.548c15.833-2.767 8.634-10.372 4.05-19.361-3.88 6.392-6.064 13.262-4.05 19.361zm-71.803-7.37c-.131.276-.345.5-.468.782-.895 1.736-1.503 3.545-2.083 5.36a14.939 14.939 0 0 0 2.551-6.142z" fill="${n}" fill-rule="evenodd"/></svg>`,41:`<svg viewBox="0 0 1920 113" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1892.28 65.435c-3.577.03-5.903.146-6.98.35-2.404.454-4.909 1.337-6.093 3.658-1.502 2.948.7 6.275 4.105 6.135 2.589-.105 4.664-1.166 6.716-2.663-.168.137-.075-4.08.083-4.53.287-.807 1.01-1.79 2.168-2.95zm1.604 2.092c-1.445.446-2.401 2.065-1.245 3.957 1.083 1.768 4.289 1.433 4.978-.58.703-2.058-1.85-3.96-3.733-3.377zm1-9.776c-.63 1.712.774 4.17 1.165 5.869 2.566 1.536 4.525-3.003 4.694-4.754.091-.954.077-3.926-.907-4.353-1.077-.467-3.33 1.162-4.404 2.41-.27.312-.465.601-.548.828zm15.532 8.149c-.452-3.74-9.576 1.784-9.408 2.04.48.72.776 1.573.772 2.444 3.913.39 9.22.334 8.636-4.484zm-8.92 17.423c3.74-.374 4.852-4.125 2.04-6.65-.976-.878-2.077-1.63-3.21-2.33-.102-.024-.199-.05-.298-.076-.323.35-.584.752-.992 1.02-1.97 1.298-4.954 1.625-6.979.328 1.322 4.23 4.41 8.213 9.438 7.708zm-61.079-33.196c-6.544-8.957-15.344-22.304-26.132-27.682-.239.014-.477.02-.716.036 6.666 13.503 13.62 26.761 20.478 40.225 1.156 2.268-2.042 4.156-3.414 1.995-7.949-12.502-13.939-25.536-20.1-38.754-2.968 10.48-5.129 20.755 2.155 30.781 4.847 6.672 10.407 11.979 16.625 17.286 7.64 6.52 14.706 13.012 19.724 21.456 5.776-15.473 1.111-32.024-8.62-45.343zM1712.9 54.992c-4.776-3.739-10.04-6.898-15.643-9.232-2.55-1.063-5.366-2.246-8.11-2.684-1.086-.172-5.314.782-5.932.105 4.468 5.04 9.171 9.889 14.34 14.22 5.919 4.956 12.491 9.07 18.352 14.048 1.768 1.502-.479 3.927-2.334 3.026-13.234-6.423-24.437-19.036-33.38-30.593-.089.33-.206.605-.449.861-2.261 16.486 1.423 30.825 18.25 37.996 11.747 5.008 23.481 10.033 35.167 15.18.085.037.731-6.447.721-7.065a33.364 33.364 0 0 0-.865-6.99c-2.692-11.669-10.86-21.624-20.117-28.872zM1634.2 73.016c-2.235-1.878-3.211-3.432-6.613-2.583-2.332.582-5.06 2.346-5.479 4.84-.675 4.04 1.928 6.56 5.673 4.806.303-.143 3.571-1.65 3.567-1.778.043-2.112 1.179-4.04 2.852-5.285zm7.573 11.667c-2.35.704-5.045.675-7.122-.473-3.685 2.688-8.972 8.659-3.224 11.201 3.044 1.348 5.916-.673 7.332-3.347 1.148-2.17 2.37-4.925 3.014-7.38zm-4.41-8.41c-3.248 3.754 3.81 4.999 4.135 2.127.204-1.837-2.22-4.34-4.135-2.126zm13.642-12.718c-5.014-1.176-8.917 3.763-9.523 8.343-.024.168 3.894 3.175 4.375 3.048 1.714-.453 6.391-4.434 7.236-5.877 1.326-2.272.687-4.865-2.088-5.514zm6.924 22.208c.224-6.355-5.244-7.587-10.414-7.262-.275 1.48-.993 2.793-2.038 3.899 2.185 1.877 3.398 4.692 6.114 6.113 2.595 1.358 6.213.797 6.338-2.75zm-82.924-19.635c-4.876-8.757-10.66-16.898-16.97-24.647 2.483 11.929 6.9 22.646 12.415 33.972 1.34 2.755-2.397 4.964-4.107 2.401-6.603-9.895-10.479-21.083-12.678-32.656-3.98 10.823-6.035 21.514 2.02 32.39 5.961 8.047 12.018 16.022 17.924 24.11 2.154-11.998 8.343-23.098 1.396-35.57zm-110.3-16.138c-7.345-7.583-14.855-15.38-25.066-18.357-.127.52 17.668 20.78 21.876 33.394.07.216.101.406.028.62-3.662.817-6.43-6.443-7.84-8.7-1.448-2.32-3.154-4.451-4.949-6.51-1.736-1.991-3.557-3.91-5.234-5.95-1.073-1.306-4.998-5.275-4.849-6.987-1.146 13.22 4.742 25.58 16.714 33.345 6.476 4.202 12.798 8.028 18.145 13.276 3.327-12.799 1.51-23.462-8.826-34.131zm-74.448 20.451c-2.658-2.306-4.826-5.2-8.755-4.826-2.312.218-6.666 3.096-3.345 5.295 2.811 1.86 9.7 1.89 9.327 3.086.538-1.364 1.546-2.607 2.773-3.555zm-6.995 13.493c.853.002 6.985-3.01 6.186-3.628-1.964-1.512-1.574-3.24-4.165-2.1-1.558.685-3.129 1.88-3.557 3.607-.249 1.005-.249 1.543.049 1.823.26.247.745.298 1.487.298zm9.208-10.172c-1.176 1.84-.802 3.734 1.736 2.999 2.575-.748 2.538-2.886 1.55-3.9-.776-.795-2.138-.9-3.286.9zm1.926-5.738c-.087.37-.317.604-.586.78 1.528-.994 4.388-.608 6.14-.82 2.484-.298 5.095-1.298 6.718-3.285 1.518-1.857 2.437-5.582.311-7.431-2.611-2.276-6.797-.752-8.753 1.667-2.138 2.64-3.072 5.839-3.83 9.089zm21.52 7.18c-.711-7.04-14.046-2.982-13.99-2.629.318 1.554.235 3.165-.345 4.572-.277.67 4.232 2.544 4.909 2.698 1.356.31 2.914.341 4.29.202 2.806-.277 5.464-1.613 5.136-4.842zm-16.906 15.589c6.306-2.312 1.071-11.08-.855-9.962-.778.453-1.588.823-2.453.995-.667.13-1.963 5.667-1.726 6.42.699 2.228 2.738 3.39 5.034 2.547zm-58.485 6.892c1.99-24.954-29.295-35.94-50.563-41.812 12.068 6.949 19.594 20.255 34.39 23.123 2.343.455 1.7 3.98-.545 4.032-16.159.368-24.265-16.585-36.246-25.301.42.5.754.921.863 1.131 1.615 3.11 1.868 3.507 2.868 6.93 2.781 9.53 9.73 15.9 18.74 19.722 10.206 4.331 21.629 5.647 30.493 12.175zm-125.637.14c4.768-19.696-15.805-30.268-33.216-37.067 5.805 4.608 11.073 9.883 15.376 15.619 1.348 1.797-1.566 3.943-3.066 2.364-9.226-9.7-18.535-18.11-29.497-25.627 7.81 9.186 13.994 20.086 24.184 26.347 9.347 5.744 19.675 9.836 26.22 18.363zm-79.694-27.736c-4.452-1.578-7.749 2.975-3.226 5.576.756.435 2.33 1.415 3.218 1.294 1.158-.158 1.38-1.799 2.641-1.77.065.001.118.024.182.026-.95-1.718-1.885-3.432-2.815-5.126zm3.47 18.283c-.048.172 0 .327-.095.505-1.487 2.745-3.068 6.013-1.908 9.196 1.2 3.284 2.797 3.314 4.08 2.019 1.14-1.148 2.032-3.337 2.183-5.223.047-.584-.525-6.871-.85-6.748-.962.368-2.211.495-3.41.25zm2.86-8.181c-1.138-2.224-2.878.865-2.714 2.271.458 3.836 3.482-.772 2.714-2.271zm12.811-11.24c-4.17-1.15-8.405 1.532-11.11 4.412-.685.732 5.13 3.355 5.821 3.438 2.304.281 5.328-.07 7.032-1.819 2.31-2.368 1.837-5.372-1.743-6.03zm4.386 24.097c1.142-2.494-1.081-5.612-2.87-7.12-2.474-2.087-5.774-3.488-9.026-4.113-.649-.105-1.687 2.982-1.588 3.515.3 1.595 2.69 2.878 3.7 4.1 1.32 1.597 2.334 3.382 4.382 4.158 1.402.532 4.57 1.275 5.402-.54zm-23.7-8.846c-.38-1.762-.34-3.543.094-5.283-.28 1.126-8.78.233-9.941.586-2.464.75-5.433 2.834-5.13 5.84.328 3.257 4.347 4.848 7.223 4 3.004-.882 4.978-2.778 7.167-4.898.176-.172.388-.164.586-.245zm-48.749-32.781c-6.281-6.696-13.177-12.017-20.57-16.935 10.17 9.522 17.159 22.222 20.661 35.797.71 2.753-3.55 3.921-4.248 1.17-3.021-11.93-8.567-22.104-15.978-31.146 1.055 4.178 1.635 8.608 2.11 13.068 1.57 14.73 6.505 23.077 17.936 32.21 2.45 1.956 4.586 3.888 6.494 6.016 1.328-13.791 3.125-30.02-6.405-40.18zM996.638 64.59c-3.252-8.794-15.57-23.244-24.532-30.18-.164-.019-.321-.04-.483-.061 2.066 12.353 9.68 20.987 15.148 32.33 1.146 2.382-2.062 4.281-3.543 2.072-7.514-11.186-12.201-21.67-14.273-34.822-3.213.3-5.246 3.791-6.594 7.46 4.058 7.942 6.144 16.762 1.354 24.119-.035.056-.08.097-.116.153 2.73 3.367 6.615 6.122 11.15 8.93 8.521 5.274 15.872 11.313 22.727 18.255-.28-9.543 2.476-19.293-.838-28.256zM960 37.166a78.545 78.545 0 0 1 2.298-3.526 45.152 45.152 0 0 1-2.298-.322c-.756.12-1.544.243-2.298.322A80.353 80.353 0 0 1 960 37.166zm-.806 18.691c.788-4.424.351-9.277-1.557-14.467-1.346-3.668-3.38-7.16-6.592-7.461-2.072 13.153-6.759 23.636-14.27 34.822-1.484 2.21-4.694.308-3.546-2.071 5.467-11.344 13.082-19.978 15.148-32.331-.164.02-.321.042-.483.06-8.963 6.937-21.282 21.387-24.532 30.181-3.314 8.963-.56 18.713-.838 28.256 6.855-6.942 14.206-12.98 22.726-18.256 7.498-4.642 12.573-11.04 13.944-18.733zm-121.31 15.597c-.697 2.75-4.958 1.582-4.248-1.17 3.502-13.576 10.489-26.276 20.66-35.798-7.392 4.918-14.288 10.24-20.57 16.935-9.527 10.16-7.734 26.389-6.404 40.18 1.908-2.128 4.042-4.06 6.494-6.016 11.43-9.133 16.366-17.48 17.936-32.21.475-4.46 1.055-8.89 2.11-13.068-7.41 9.042-12.957 19.216-15.978 31.147zm-49.853 4.211c4.523-2.6 1.226-7.154-3.226-5.576-.93 1.694-1.865 3.408-2.815 5.126.064-.002.117-.025.182-.027 1.26-.028 1.483 1.613 2.64 1.77.888.122 2.46-.858 3.219-1.293zm6.792 3.84c-1.16-.353-9.658.54-9.94-.586.435 1.74.476 3.521.096 5.283.198.081.408.073.586.245 2.189 2.12 4.163 4.016 7.167 4.899 2.876.847 6.895-.744 7.223-4.002.303-3.005-2.666-5.089-5.132-5.839zm-11.487 18.568c1.162-3.183-.419-6.451-1.906-9.196-.097-.178-.045-.333-.093-.505-1.2.244-2.448.117-3.414-.25-.323-.124-.895 6.163-.848 6.747.151 1.886 1.044 4.075 2.18 5.223 1.286 1.295 2.882 1.265 4.08-2.02zM770.953 76.8c.689-.085 6.506-2.708 5.82-3.438-2.704-2.88-6.94-5.562-11.11-4.412-3.58.66-4.052 3.663-1.741 6.031 1.703 1.748 4.727 2.1 7.03 1.82zm.109 12.63c1.01-1.223 3.4-2.508 3.7-4.1.101-.534-.94-3.62-1.588-3.516-3.252.625-6.552 2.026-9.026 4.113-1.789 1.508-4.012 4.626-2.87 7.12.833 1.813 4 1.072 5.402.54 2.048-.776 3.062-2.56 4.382-4.157zm7.413-9.24c-.768 1.5 2.256 6.107 2.714 2.271.164-1.406-1.576-4.497-2.714-2.271zm-47.145-.73c10.188-6.261 16.375-17.16 24.184-26.347-10.96 7.517-20.271 15.926-29.497 25.627-1.5 1.579-4.414-.567-3.064-2.364 4.3-5.736 9.57-11.01 15.374-15.619-17.411 6.799-37.984 17.369-33.216 37.066 6.544-8.527 16.872-12.62 26.219-18.363zm-99.755-20.603c.109-.21.442-.63.86-1.131-11.978 8.716-20.082 25.669-36.245 25.301-2.243-.052-2.886-3.577-.545-4.032 14.798-2.868 22.322-16.174 34.392-23.123-21.268 5.871-52.554 16.858-50.563 41.81 8.865-6.526 20.287-7.842 30.494-12.173 9.01-3.822 15.958-10.192 18.739-19.721 1-3.424 1.253-3.82 2.868-6.93zm-93.076 6.757c-3.93-.374-6.1 2.52-8.757 4.826 1.227.948 2.235 2.19 2.773 3.555-.374-1.196 6.516-1.227 9.327-3.086 3.319-2.199-1.033-5.077-3.343-5.295zm-.275 18.021c.298-.28.298-.818.049-1.823-.428-1.728-1.999-2.922-3.557-3.607-2.591-1.142-2.201.588-4.165 2.1-.8.616 5.335 3.63 6.186 3.628.742 0 1.227-.051 1.487-.298zm-12.431-6.875c2.538.735 2.912-1.158 1.736-3.001-1.148-1.8-2.51-1.694-3.284-.9-.99 1.015-1.027 3.153 1.548 3.9zm.23 11.485c.237-.753-1.06-6.29-1.726-6.42-.865-.172-1.673-.542-2.453-.995-1.926-1.117-7.163 7.65-.855 9.962 2.296.843 4.335-.321 5.034-2.547zm-12.514-8.401c.677-.154 5.186-2.027 4.91-2.698-.58-1.407-.664-3.018-.346-4.572.056-.353-13.279-4.412-13.99 2.63-.326 3.23 2.33 4.565 5.133 4.842 1.379.14 2.937.107 4.293-.202zm-.491-22.577c-2.124 1.849-1.205 5.574.313 7.431 1.623 1.987 4.232 2.985 6.72 3.284 1.75.213 4.61-.173 6.138.82-.269-.175-.501-.41-.586-.78-.758-3.25-1.692-6.448-3.828-9.088-1.958-2.42-6.144-3.943-8.757-1.667zm-48.404 13.577c11.972-7.765 17.858-20.125 16.714-33.345.147 1.712-3.776 5.681-4.849 6.987-1.677 2.04-3.498 3.959-5.234 5.95-1.795 2.059-3.5 4.19-4.948 6.51-1.41 2.257-4.181 9.517-7.841 8.7-.075-.214-.043-.404.028-.62 4.208-12.614 22.003-32.875 21.876-33.394-10.21 2.977-17.72 10.774-25.067 18.357-10.334 10.67-12.151 21.332-8.824 34.131 5.347-5.248 11.667-9.074 18.145-13.276zm-100.3 6.742c8.055-10.875 6-21.566 2.02-32.389-2.199 11.573-6.075 22.76-12.678 32.656-1.712 2.563-5.447.354-4.107-2.4 5.516-11.327 9.93-22.044 12.417-33.973-6.311 7.749-12.094 15.89-16.972 24.647-6.949 12.472-.758 23.572 1.394 35.57 5.906-8.088 11.967-16.063 17.927-24.11zm-71.902-7.154c-3.402-.849-4.378.705-6.613 2.583 1.671 1.245 2.81 3.173 2.852 5.285-.004.127 3.262 1.635 3.567 1.778 3.745 1.755 6.348-.766 5.671-4.806-.416-2.494-3.147-4.258-5.477-4.84zm-3.84 24.978c5.746-2.542.46-8.513-3.224-11.2-2.077 1.147-4.771 1.174-7.122.472.645 2.456 1.866 5.21 3.014 7.381 1.416 2.674 4.288 4.695 7.332 3.347zm-14.43-20.465c.48.127 4.397-2.88 4.375-3.048-.606-4.58-4.509-9.519-9.523-8.343-2.775.649-3.416 3.242-2.088 5.514.845 1.443 5.522 5.424 7.236 5.877zm-5.734 13.567c2.716-1.42 3.929-4.236 6.114-6.113-1.045-1.106-1.76-2.42-2.038-3.9-5.17-.324-10.638.908-10.414 7.263.125 3.547 3.743 4.108 6.338 2.75zm14.228-12.24c-1.916-2.212-4.341.29-4.133 2.127.323 2.872 7.38 1.627 4.133-2.126zm-60.63 6.466c16.828-7.17 20.512-21.51 18.25-37.996-.242-.256-.361-.531-.448-.86-8.943 11.556-20.146 24.17-33.38 30.592-1.857.901-4.102-1.526-2.336-3.026 5.863-4.977 12.435-9.092 18.353-14.048 5.17-4.331 9.873-9.18 14.341-14.22-.62.677-4.844-.277-5.931-.105-2.745.438-5.56 1.62-8.11 2.684-5.603 2.334-10.868 5.493-15.644 9.232-9.256 7.248-17.425 17.203-20.117 28.873a33.23 33.23 0 0 0-.865 6.989c-.01.618.636 7.102.721 7.065 11.686-5.147 23.42-10.172 35.167-15.18zM107.31 56.73c7.286-10.027 5.125-20.302 2.156-30.782-6.16 13.218-12.15 26.252-20.1 38.754-1.371 2.16-4.569.273-3.413-1.995 6.858-13.464 13.81-26.722 20.478-40.225-.237-.016-.475-.022-.716-.036-10.788 5.378-19.588 18.725-26.132 27.682-9.731 13.32-14.396 29.867-8.62 45.343 5.018-8.444 12.084-14.936 19.722-21.456 6.22-5.307 11.78-10.614 16.625-17.286zM34.7 65.783c-1.615-.305-5.787-1.238-6.981-.35.913.838 1.74 1.741 2.168 2.952.16.448.253 4.666.083 4.529 2.054 1.497 4.13 2.558 6.718 2.663 3.406.14 5.609-3.187 4.105-6.135-1.184-2.32-3.689-3.204-6.094-3.659zm-16.195 17.54c5.026.504 8.116-3.48 9.438-7.71-2.025 1.298-5.008.971-6.979-.327-.408-.268-.669-.67-.992-1.02-.099.026-.196.052-.297.077-1.134.699-2.235 1.45-3.214 2.33-2.809 2.524-1.697 6.275 2.044 6.65zM9.584 65.9c-.584 4.818 4.723 4.874 8.636 4.484-.004-.87.293-1.724.77-2.443.17-.257-8.954-5.78-9.406-2.041zm10.58-11.387c-.984.424-.998 3.4-.907 4.353.167 1.75 2.128 6.29 4.694 4.754.39-1.7 1.795-4.157 1.167-5.87-.085-.226-.28-.515-.548-.828-1.075-1.247-3.33-2.876-4.406-2.409zm7.195 16.97c1.158-1.89.2-3.51-1.243-3.956-1.884-.582-4.436 1.32-3.733 3.377.687 2.013 3.895 2.348 4.976.58zm1874.623-36.392c-4.684-1.812-8.22-3.114-10.604-3.905a174.081 174.081 0 0 0-10.6-3.135c-1.836-.48-3.679-.93-5.528-1.352-1.162-.264-3.676-.297-4.608-.986 9.711 7.179 17.636 16.787 22.266 27.923 11.865-10.685 12.908 6.878 12.296 7.04 5.174-1.373 10.249-.983 9.796 5.224-.382 5.28-3.929 7.999-8.234 8.735a9.337 9.337 0 0 1 1.73 2.65c1.58 3.609.269 7.48-3.276 9.18-6.595 3.166-15.39-2.606-16.692-9.496-2.273 1.275-4.802 2.051-7.44 1.445-3.308-.762-6.541-3.308-6.707-6.948-.386-8.436 8.375-11.68 15.48-10.924-6.842-16.623-18.774-35.856-38.24-37.644a226.419 226.419 0 0 0-15.658-.914c-2.616-.058-11.06 1.431-13.056.065 10.562 7.225 19.171 19.76 24.87 29.69 4.073 7.095 7.3 14.807 8.576 22.928 1.277 8.133-.503 15.314-3.302 22.935-.673 1.833-1.496 4.687-3.09 5.932-2.537 1.984-3.687-1.98-4.928-3.804-4.994-7.336-11.338-13.565-17.991-19.388-7.094-6.207-14.315-12.577-18.905-20.952-7.145-13.036-3.33-22.917-.667-36.272-20.415-.523-42.576 5.52-62.594 9.347 17.041 5.41 33.897 21.678 42.011 36.436-.01-.018 9.123-4.11 10.512-3.828.004 3.931-4.962 6.748-8.181 7.811 11.403-3.007 13.6 16.676.186 11.07-.586-.245-4.887-3.28-4.59-7.446-2.65 1.061 1.746 5.58-1.195 7.106-4.523 2.349-4.052-5.546-3.42-7.51.13-.404 1.674-5.093 2.392-4.374-6.67-6.722-12.19-14.577-19.182-20.964-8.707-7.955-20.583-17.292-33.113-15.497-10.158 1.455-20.229 3.807-30.366 5.454 10.954 4.954 20.875 13.624 28.484 21.955 10.562 11.56 14.64 25.007 9.752 40.233-.457 1.425-2.163 2.78-3.741 2.124-17.3-7.185-38.923-12.888-52.8-25.843-8.874-8.282-8.644-23.828-6.005-35.093-7.128.796-14.272 1.418-21.439 1.758-12.403.588-24.762.362-37.092-.307 4.474 3.146 8.62 6.805 12.179 10.964 1.673 1.956 2.928 4.214 4.482 6.257 1.437 1.886 3.384 3.094 4.901 4.879 1.185-2.811 2.391-5.49 5.002-7.284 3.182-2.189 8.109-2.692 11.345-.408 6.366 4.495 3.92 10.928-.88 14.915 5.091 1.33 9.063 6.953 8.079 12.201-.81 4.32-4.643 7.44-9.13 6.765-2.651-.398-6.01-2.26-8.359-4.691-.066 1.04-.218 2.088-.638 3.187-1.813 4.747-5.38 8.125-10.647 8.56-4.744.39-9.067-2.55-9.798-7.376-.166-1.095.426-8.043 2.124-8.007-4.554-.095-9.358-3.9-9.313-9.232.059-7.046 5.521-11.106 11.587-11.745-1.983-3.203-5.296-6.968-6.189-8.007-2.726-3.177-4.802-3.963-7.63-7.053-6.483-7.082-15.074-5.12-23.716-6-8.596-.878-17.175-1.913-25.745-3.016 7.45 8.231 14.291 18.381 17.363 27.704 3.246 9.861-.83 19.093-1.348 28.92-.167 3.144.02 15.523-5.048 15.483-4.4-.035-8.147-4.869-10.613-7.947-3.468-4.325-6.293-9.095-9.475-13.624-6.815-9.707-14.8-20.88-12.205-33.434 1.356-6.567 5.439-12.47 7.747-18.667-6.178-2.36-13.735-2.087-20.257-2.944-4.715-.62-17.486.129-21.128-2.646 7.874 5.997 14.754 14.574 16.6 23.531 2.808-.226 5.621.651 7.812 3.094 1.532 1.71-.746 3.889-2.478 2.478-.39-.319-.857-.463-1.305-.655 4.242 2.94 3.88 7.731-.81 9.926-1.698.794-3.944 1.198-5.678.277-.792-.42-1.477-1.082-1.843-1.912-.313-.708-.687-4.44-.089-4.932-1.27 1.045-1.508 2.434-1.124 3.984.37 1.494 1.233 2.77-.527 3.785-8.038 4.635-4.996-9.115-2.09-12.077.839-.855 1.805-1.56 2.82-2.171-2.565-5.002-4.346-10.243-8.155-14.717-8.911-10.47-17.373-12.29-30.62-13.29a468.303 468.303 0 0 0-16.84-.979c-3.758-.145-12.354 1.378-15.567-.297 9.711 5.063 18.014 14.766 24.186 22.595 6.684 8.479 8.472 18.558 6.785 29.05-.415 2.576-3.656 17.792-8.2 11.933-9.297-11.989-26.807-16.067-34.13-29.766-4.559-8.533-6.962-19.145-3.712-28.483 3.001-8.631-12.71-4.13-17.086-3.65-16.746 1.842-33.562 4.65-50.423 7.765 7.413 5.518 16.443 15.702 21.789 22.616.774.236 1.54.485 2.251.766.388.153.708.368.968.616.898-3.84 2.506-7.562 5.948-9.666 4.18-2.557 9.386-2.739 12.828 1.137 3.007 3.388 2.62 8.626.36 12.297.73.07 1.445.208 2.142.43 4.137 1.322 8.191 5.075 6.9 9.905-1.85 6.924-7.852 8.937-13.751 7.898.762 4.701-1.512 10.086-7.157 11.098-4.485.802-8.971-.984-10.556-5.54-.481-1.38-.681-2.989-.546-4.543-.74.71-1.566 1.352-2.603 1.837-2.38 1.112-5.649.944-7.706-.794-2.288-1.93-1.126-5.463.176-7.775.764-1.354 1.643-2.454 2.664-3.383-4.748 1.26-9.928-1.613-8.746-7.888 1.03-5.455 4.968-7.33 9.423-7.47-1.979-2.715-3.947-5.439-6.165-7.874-5.462-6-9.82-11.981-18.585-12.256-7.28-.228-14.178 3.258-21.205 4.612-13.038 2.514-26.084 4.994-39.182 7.169 17.567 4.333 36.401 13.686 45.589 29.901 2.965 5.23 4.262 11.33 3.935 17.335-.605 11.075-6.35 4.284-12.897.558-4.028-2.296-8.474-3.731-12.858-5.168-8.878-2.913-18.252-5.447-24.869-12.496-7.536-8.028-7.593-28.64-20.443-26.91a447.843 447.843 0 0 1-15.236 1.798c-5.275.527-19.768 4.202-24.378 1.7 10.78 5.853 20.835 14.432 27.027 23.424 2.706-.158 5.465.509 7.725 2.057 1.437.982.212 2.971-1.338 2.29-1.023-.449-2.167-.657-3.33-.742.886.065 2.115 4.45 2.311 5.283.445 1.896.043 4.253-1.671 5.405-1.613 1.085-8.606.541-9.388-1.567-.13-.35-.182-.745-.24-1.136-.19 6.102-4.861 8.404-5.334 1.532-.216-3.12 2.472-8.844 4.852-10.766.227-.182.508-.246.744-.41-5.88-5.612-11.255-11.58-18.015-16.328-9.348-6.564-16.23-8.638-27.53-9.121-7.368-.315-14.735-.833-22.57-1.862 12.3 4.995 25.639 13.242 30.827 26.106 2.54 6.3 2.817 13.634.495 20.061-3.765 10.427-7.262 2.163-11.451-2.756-2.628-3.084-6.138-5.35-9.564-7.434-6.789-4.133-14.267-7.235-19.752-13.193-8.149-8.854-14.319-23.762-25.435-29.049-9.38-4.46-20.24-4.06-30.184-6.336 8.226 7.106 14.954 15.99 18.482 25.56 4.14-5.636 12.923-8.777 18.358-3.233 3.146 3.21 3.278 8.143.036 11.447-1.148 1.17-2.494 1.942-3.909 2.545.976.543 1.936 1.145 2.85 1.907 3.185 2.654 5.863 7.161 4.679 11.488-2.266 8.27-15.554 4.588-16.838-1.964.399 2.035.49 4.14.029 6.206-.692 3.1-2.454 7.19-6.031 7.696-3.216.455-7.646-2.884-9.483-5.283-1.443-1.88-2.943-5.374-1.219-7.488-11.257 5.861-21.772-10.642-10.568-17.494 1.567-.956 3.535-1.702 5.593-2.098-.16-.976-.176-1.984.13-2.985 1.078-3.508 3.784-5.018 6.76-5.17-7.733-13.235-18.049-23.446-33.368-26.72-6.496-1.388-19.5-1.516-24.884-5.16 7.608 5.15 14.605 11.49 19.162 18.543 6.799 10.52 6.24 24.067 5.1 36.044-.312 3.27-.47 7.625-1.91 10.596-2.713 5.593-3.305 3.17-7.214-.897-7.613-7.92-18.571-13.792-22.522-24.627-4.218-11.576-1.957-25.206-7.256-36.326-3.961-8.309-10.544-7.537-18.377-8.395a301.907 301.907 0 0 0-15.393-1.304c-9.44-.546-19.361-1.19-28.761.158-1.987.285-6.452 2.409-8.17 2.225 20.935 2.247 44.221 9.18 51.588 25.473 3.377-1.81 7.282-2.466 11.15-1.281.914.279 1.045 1.772 0 1.978-2.59.512-5.184 1.205-6.451 2.545 6.85 2.405 5.042 12.082-1.64 13.094-2.711.413-5.432-.885-6.853-3.197-.38 2.233-.34 4.517-.317 7.148.028 3.824-3.537 2.05-4.798.625-1.544-1.748-1.103-5.592-.752-7.66.178-1.043 4.523-10.01 4.871-9.505-12.22-17.682-34.6-20.938-55.52-23.323a68.349 68.349 0 0 1 3.84 4.572c4.001 5.222 10.125 9.79 13.587 15.346 8.984 14.416.63 30.384 7.09 45.43 1.219 2.84-2.102 6.098-4.565 3.524-8.869-9.259-17.456-17.543-28.3-24.534-4.46-2.878-8.397-5.744-11.78-9.43-3.383 3.686-7.32 6.552-11.78 9.43-10.846 6.99-19.431 15.275-28.3 24.534-2.465 2.574-5.784-.683-4.565-3.523 6.457-15.047-1.894-31.015 7.09-45.431 3.464-5.556 9.584-10.124 13.585-15.346a68.978 68.978 0 0 1 3.842-4.572c-20.922 2.385-43.3 5.641-55.52 23.323.348-.505 4.693 8.462 4.87 9.505.352 2.068.793 5.912-.751 7.66-1.261 1.425-4.826 3.2-4.798-.625.022-2.63.063-4.915-.32-7.148-1.418 2.312-4.14 3.61-6.853 3.197-6.68-1.012-8.486-10.689-.584-13.272-2.32-1.162-4.913-1.855-7.506-2.367-1.043-.206-.914-1.7 0-1.978 3.87-1.185 7.775-.53 11.152 1.281 7.367-16.294 30.651-23.226 51.587-25.473-1.717.184-6.182-1.94-8.169-2.225-9.4-1.348-19.323-.704-28.76-.158-5.14.3-10.274.742-15.394 1.304-7.833.858-14.416.086-18.377 8.395-5.3 11.12-3.036 24.75-7.258 36.326-3.947 10.835-14.907 16.706-22.52 24.627-3.909 4.064-4.503 6.49-7.213.897-1.44-2.97-1.599-7.326-1.91-10.598-1.14-11.975-1.698-25.522 5.099-36.042 4.557-7.053 11.552-13.393 19.161-18.543-5.382 3.644-18.39 3.772-24.883 5.16-15.32 3.274-25.635 13.485-33.367 26.72 2.975.152 5.68 1.662 6.758 5.17.307 1 .291 2.01.131 2.985 2.058.396 4.024 1.142 5.593 2.098 11.204 6.85.689 23.355-10.568 17.494 1.724 2.112.224 5.609-1.217 7.488-1.84 2.4-6.27 5.738-9.487 5.283-3.573-.507-5.337-4.595-6.029-7.696-.458-2.065-.37-4.171.029-6.206-1.284 6.552-14.572 10.232-16.838 1.964-1.184-4.327 1.494-8.834 4.679-11.488.914-.762 1.874-1.364 2.85-1.907-1.415-.603-2.761-1.375-3.909-2.545-3.242-3.304-3.11-8.238.036-11.447 5.435-5.544 14.218-2.403 18.358 3.233 3.528-9.57 10.254-18.454 18.482-25.56-9.941 2.276-20.807 1.876-30.184 6.336-11.118 5.287-17.288 20.195-25.435 29.047-5.485 5.96-12.965 9.062-19.752 13.195-3.426 2.084-6.936 4.35-9.564 7.432-4.19 4.92-7.686 13.185-11.45 2.758-2.323-6.427-2.044-13.76.494-20.06 5.188-12.865 18.527-21.112 30.356-26.036-7.364.956-14.731 1.476-22.1 1.79-11.3.484-18.183 2.558-27.53 9.122-6.761 4.747-12.135 10.716-18.014 16.328.236.164.517.228.742.41 2.382 1.922 5.07 7.646 4.854 10.766-.473 6.872-5.143 4.57-5.333-1.532-.06.39-.11.787-.241 1.136-.782 2.108-7.775 2.652-9.388 1.567-1.714-1.154-2.116-3.509-1.671-5.405.196-.832 1.423-5.218 2.312-5.283-1.164.085-2.308.293-3.33.742-1.55.681-2.776-1.308-1.34-2.29 2.26-1.548 5.02-2.217 7.726-2.057 6.19-8.992 16.247-17.571 27.027-23.424-4.61 2.502-19.103-1.173-24.38-1.7a449.056 449.056 0 0 1-15.236-1.799c-12.85-1.73-12.905 18.883-20.443 26.91-6.617 7.05-15.989 9.584-24.865 12.497-4.386 1.437-8.832 2.872-12.862 5.166-6.544 3.728-12.29 10.52-12.895-.556-.327-6.005.97-12.104 3.935-17.337 9.188-16.21 28.022-25.566 45.59-29.9-13.1-2.174-26.145-4.654-39.183-7.168-7.027-1.354-13.925-4.84-21.205-4.612-8.767.275-13.122 6.255-18.585 12.256-2.217 2.435-4.186 5.16-6.163 7.874 4.45.14 8.392 2.015 9.419 7.47 1.184 6.275-3.996 9.149-8.744 7.888 1.021.93 1.9 2.029 2.664 3.383 1.302 2.31 2.464 5.845.176 7.775-2.057 1.738-5.325 1.906-7.706.794-1.04-.485-1.864-1.128-2.603-1.837.137 1.554-.065 3.163-.546 4.543-1.585 4.554-6.071 6.342-10.556 5.54-5.645-1.012-7.92-6.397-7.159-11.098-5.897 1.04-11.9-.974-13.749-7.898-1.291-4.83 2.763-8.583 6.9-9.905.697-.222 1.413-.36 2.142-.43-2.26-3.673-2.647-8.91.36-12.297 3.44-3.876 8.65-3.694 12.828-1.137 3.442 2.104 5.048 5.826 5.95 9.666.258-.248.578-.463.966-.616.71-.281 1.477-.53 2.251-.766 5.346-6.914 14.376-17.098 21.79-22.616-16.862-3.114-33.678-5.923-50.424-7.765-4.376-.48-20.09-4.981-17.086 3.65 3.252 9.338.847 19.95-3.713 28.483-7.322 13.699-24.832 17.777-34.13 29.766-4.543 5.86-7.784-9.357-8.199-11.932-1.687-10.495.101-20.574 6.785-29.053 6.172-7.827 14.475-17.53 24.186-22.593-3.213 1.675-11.811.152-15.568.297-5.619.22-11.233.556-16.84.978-13.246 1-21.708 2.822-30.619 13.29-3.807 4.475-5.59 9.716-8.154 14.718 1.014.61 1.98 1.316 2.819 2.17 2.906 2.963 5.948 16.713-2.09 12.078-1.76-1.014-.897-2.291-.527-3.785.384-1.55.145-2.94-1.124-3.984.598.492.224 4.224-.089 4.932-.366.83-1.051 1.491-1.843 1.912-1.736.921-3.98.517-5.677-.277-4.69-2.195-5.053-6.987-.81-9.926-.447.192-.916.336-1.306.655-1.732 1.411-4.01-.768-2.478-2.478 2.193-2.443 5.004-3.32 7.81-3.094 1.848-8.957 8.728-17.534 16.6-23.53-3.642 2.774-16.41 2.024-21.126 2.645-6.524.857-14.079.584-20.257 2.944 2.306 6.197 6.389 12.1 7.747 18.667 2.595 12.555-5.392 23.727-12.207 33.434-3.18 4.53-6.005 9.297-9.473 13.624-2.466 3.078-6.213 7.912-10.613 7.947-5.068.04-4.883-12.339-5.048-15.484-.52-9.826-4.594-19.058-1.348-28.919 3.072-9.323 9.913-19.473 17.36-27.704-8.567 1.103-17.144 2.138-25.742 3.015-8.642.881-17.233-1.081-23.719 6-2.827 3.09-4.9 3.877-7.627 7.054-.893 1.039-4.206 4.804-6.189 8.007 6.066.64 11.528 4.7 11.587 11.745.045 5.331-4.76 9.137-9.313 9.232 1.7-.036 2.29 6.912 2.124 8.007-.731 4.827-5.054 7.765-9.798 7.373-5.267-.432-8.834-3.81-10.647-8.557-.42-1.101-.572-2.146-.638-3.187-2.349 2.431-5.708 4.293-8.36 4.69-4.486.676-8.318-2.445-9.129-6.764-.984-5.248 2.988-10.871 8.079-12.2-4.8-3.988-7.246-10.421-.88-14.916 3.236-2.284 8.163-1.78 11.345.408 2.61 1.795 3.817 4.473 5.002 7.284 1.517-1.785 3.462-2.993 4.899-4.88 1.558-2.042 2.811-4.3 4.484-6.256 3.56-4.16 7.705-7.818 12.18-10.964-12.331.669-24.69.895-37.095.307-7.165-.34-14.31-.962-21.437-1.758 2.64 11.265 2.87 26.81-6.005 35.093-13.877 12.955-35.5 18.658-52.8 25.843-1.578.655-3.282-.699-3.74-2.124-4.892-15.226-.811-28.672 9.75-40.233 7.61-8.33 17.53-17.001 28.485-21.955-10.137-1.647-20.206-4-30.366-5.454-12.53-1.797-24.404 7.542-33.113 15.497-6.993 6.387-12.512 14.242-19.182 20.964.718-.721 2.262 3.97 2.391 4.374.633 1.964 1.104 9.859-3.42 7.51-2.94-1.526 1.456-6.047-1.194-7.106.295 4.166-4.004 7.201-4.59 7.446-13.411 5.606-11.217-14.077.188-11.07-3.221-1.063-8.187-3.88-8.183-7.81 1.389-.284 10.524 3.809 10.512 3.827 8.114-14.758 24.97-31.025 42.011-36.436-20.02-3.827-42.18-9.87-62.592-9.347 2.662 13.355 6.476 23.236-.669 36.272-4.59 8.375-11.81 14.745-18.905 20.952-6.653 5.82-13 12.05-17.993 19.388-1.241 1.823-2.39 5.788-4.925 3.804-1.595-1.245-2.418-4.099-3.09-5.932-2.8-7.621-4.582-14.802-3.303-22.935 1.275-8.12 4.503-15.833 8.575-22.929 5.7-9.93 14.31-22.464 24.87-29.69-1.995 1.367-10.44-.122-13.055-.064a226.42 226.42 0 0 0-15.659.914C48.913 24.686 36.981 43.917 30.14 60.542c7.102-.756 15.865 2.488 15.48 10.924-.167 3.64-3.4 6.186-6.709 6.948-2.637.606-5.166-.17-7.44-1.445-1.303 6.89-10.096 12.662-16.691 9.497-3.547-1.702-4.857-5.572-3.276-9.182a9.337 9.337 0 0 1 1.73-2.65C8.929 73.9 5.382 71.182 5 65.9c-.453-6.207 4.622-6.597 9.796-5.225-.612-.163.43-17.724 12.294-7.04C31.722 42.5 39.645 32.893 49.358 25.714c-.932.69-3.448.722-4.608.986-1.85.423-3.692.871-5.527 1.352a173.655 173.655 0 0 0-10.6 3.135c-2.564.85-5.105 1.764-7.625 2.731l-4.268 1.779c-1.06.541-2.267 1.212-3.465 1.671L0 44V0h1920v44l-7.506-4.042c-2.84-1.372-6.343-2.995-10.512-4.867z" fill="${n}" fill-rule="evenodd"/></svg>`,42:`<svg viewBox="0 0 1920 163" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="evenodd"><g opacity=".25"><path d="M67.296 78.015c8.258 4.814 19.024 3.4 26.725-1.502 17.41-11.081 18.436-37.104.11-47.537C54.449 6.381 2.446 27.822.093 77.821c-2.514 53.38 46.872 82.54 97.08 70.135 51.934-12.834 75.287-48.718 120.084-75.87 21.24-12.873 48.253-18.453 72.548-21.323 18.015-2.13 39.802 1.067 52.65 15.16 10.328 11.33 19.91 49.77.439 54.29-43.13 10.008-28.386-32.004-47.677-27.024-14.944 3.858-2.205 31.403 4.547 37.032 11.15 9.295 29.15 10.194 42.756 7.775 44.38-7.898 31.5-67.839 6.985-88.652C313.802 19.031 245.76 41.6 210.085 59.815c-51.856 26.478-70.88 69.636-132.768 76.047-32.82 3.397-61.768-15.415-64.919-49.241-.18-10.876 2.349-21.08 7.581-30.617 3.177-4.17 6.356-8.337 9.534-12.507 20.723-27.183 32.557.62 37.555 19.732 0 0-8.386 2.726-6.934 7.821.56 1.975 2.595 4.303 7.162 6.965zM665.768 82.389a9.887 9.887 0 0 0-3.201-.85c-15.71-1.463-20.108 29.08-16.292 39.42 9.74 26.382 48.78 27.08 71.883 24.49 39.091-4.38 64.245-39.079 88.99-65.68 26.414-28.391 65.873-35.275 103.264-28.535 45.6 8.222 42.928 57.208 10.89 80.654-5.497 2.712-10.993 5.427-16.494 8.141-36.314 17.925-2.312-33.34-5.063-41.876-10.158-31.504-54.392 13.395-48.984 36.603 11.666 50.05 84.417 20.827 102.93-2.292 32.707-40.843-13.537-89.817-52.37-96.837-25.353-4.58-52.864.94-75.609 12.634-25.58 13.151-37.737 37.11-59.583 54.419-19.596 15.528-40.96 37.931-69.4 28.43-57.374-19.172-17.535-42.624-30.961-48.721"/><path d="M1035.057 82.053c-23.562-37.557-63.544-16.237-76.794 17.923-25.49 65.71 62.675 49.055 96.897 34.198 23.479-10.192 43.588-30.237 63.061-46.272 16.298-13.424 31.585-23.566 51.537-30.6 37.258-4.815 57.531 10.377 60.815 45.572.857 9.182-11.794 32.907-22.569 33.816-6 .507-10.816-4.068-14.44-8.266-10.014-11.595-3.553-8.83-.18-18.982 5.627-16.938-21.862-10.404-27.78-4.123-8.847 9.386-10.464 27.06-1.028 36.497 31.894 31.894 75.226-4.936 79.304-38.924 5.772-48.135-53.162-72.548-90.513-53.903-35.332 17.64-62.12 46.635-94.89 68.182-12.393 8.147-27.317 12.466-41.426 16.562-81.654 23.707-29.293-106.335 12.553-48.493 2.338 3.232 7.656.326 5.453-3.187M445.186 82.053c-41.017-65.233-109.666 38.56-68.863 61.75 27.63 15.7 62.204 1.988 88.967-9.629 23.476-10.192 43.588-30.237 63.059-46.272 16.297-13.424 31.585-23.566 51.536-30.6 25.601-9.029 55.232 12.107 57.33 38.335 2.229 27.846-29.593 57.573-41.394 19.14 18.172-4.617-2.726-24.482-18.132-11.533-10.585 8.898-13.002 28.553-2.984 38.572 31.895 31.894 75.226-4.936 79.303-38.924 5.774-48.135-53.162-72.548-90.511-53.903-35.334 17.64-62.123 46.635-94.89 68.182-12.396 8.147-27.32 12.466-41.426 16.562-81.655 23.707-29.295-106.335 12.553-48.493 2.336 3.232 7.66.324 5.452-3.187"/><path d="M1297.729 78.312c.562 1.973 2.597 4.3 7.165 6.963 8.258 4.814 19.022 3.399 26.724-1.502 17.411-11.081 18.436-37.105.111-47.537-39.683-22.596-91.687-1.152-94.041 48.847-2.513 53.378 46.872 82.54 97.079 70.132 51.935-12.832 89.29-48.715 134.087-75.87 21.237-12.872 48.252-18.45 72.545-21.322 18.018-2.13 39.805 1.067 52.653 15.162 10.327 11.328 19.909 49.768.438 54.287-43.129 10.008-28.385-32.001-47.676-27.021-14.944 3.856-2.205 31.4 4.547 37.03 11.15 9.294 29.148 10.196 42.755 7.774 44.379-7.898 31.498-67.838 6.985-88.651-35.702-30.312-103.743-7.743-139.42 10.473-51.854 26.476-84.878 69.635-146.767 76.044-32.82 3.398-61.767-15.412-64.918-49.239-.18-10.877 2.346-21.081 7.579-30.619 3.179-4.167 6.356-8.337 9.535-12.504 20.722-27.185 32.557.62 37.555 19.73 0 0-8.385 2.726-6.936 7.823"/><path d="M1696.784 89.313c-41.02-65.234-109.669 38.56-68.866 61.749 27.63 15.701 62.206 1.99 88.97-9.628 23.474-10.19 43.585-30.235 63.058-46.272 16.298-13.424 31.585-23.564 51.537-30.601 25.6-9.028 55.231 12.108 57.33 38.337 2.226 27.844-29.595 57.572-41.396 19.14 18.171-4.617-2.727-24.483-18.131-11.535-10.586 8.9-13.001 28.556-2.985 38.572 31.894 31.894 75.228-4.935 79.304-38.921 5.774-48.138-53.162-72.55-90.51-53.906-35.335 17.64-62.126 46.636-94.893 68.182-12.393 8.15-27.317 12.466-41.424 16.563-81.654 23.707-29.295-106.336 12.553-48.493 2.336 3.232 7.658.323 5.453-3.187"/></g><path d="M1919.995 86.998a54.235 54.235 0 0 1-.39 7.156c-4.076 33.986-47.41 70.815-79.304 38.921-10.016-10.016-7.601-29.673 2.985-38.572 15.404-12.948 36.302 6.918 18.13 11.535 11.802 38.432 43.623 8.704 41.396-19.14-2.098-26.229-31.728-47.365-57.33-38.337-19.95 7.037-35.238 17.177-51.536 30.6-19.473 16.038-39.584 36.082-63.059 46.273-26.763 11.619-61.339 25.33-88.969 9.628-7.053-4.009-10.835-10.425-12.056-17.961-4.707 5.986-11.784 10.381-21.746 12.154-13.607 2.422-31.605 1.52-42.755-7.775-6.752-5.628-19.491-33.173-4.547-37.03 19.29-4.98 4.547 37.03 47.676 27.022 19.471-4.519 9.89-42.96-.438-54.287-12.848-14.095-34.635-17.292-52.653-15.162-24.293 2.872-51.308 8.45-72.545 21.322-44.797 27.155-82.152 63.038-134.087 75.87-40.603 10.034-80.668-7.119-93.181-42.28-10.198 30.525-48.253 57.638-77.01 28.88-9.436-9.436-7.82-27.11 1.029-36.496 5.917-6.281 33.406-12.815 27.779 4.123-3.373 10.152-9.834 7.387.18 18.982 3.624 4.198 8.44 8.773 14.44 8.266 10.775-.91 23.426-24.634 22.57-33.816-3.285-35.195-23.558-50.387-60.816-45.573-19.952 7.035-35.24 17.177-51.537 30.601-19.473 16.035-39.582 36.08-63.06 46.272-27.333 11.866-89.074 24.879-99.84-3.84a59.788 59.788 0 0 1-1.63 2.13c-18.513 23.119-91.264 52.341-102.93 2.292-5.408-23.208 38.826-68.107 48.984-36.603 2.751 8.537-31.251 59.8 5.063 41.876 5.501-2.714 10.997-5.429 16.494-8.14 32.038-23.447 34.71-72.433-10.89-80.655-37.391-6.74-76.85.144-103.263 28.535-24.746 26.601-49.9 61.3-88.991 65.68-22.437 2.515-59.906 1.93-70.969-22.273-14.237 25.745-47.009 44.115-72.484 18.64-10.018-10.019-7.6-29.674 2.984-38.572 15.406-12.95 36.304 6.916 18.132 11.534 11.801 38.432 43.623 8.705 41.394-19.141-2.098-26.228-31.729-47.364-57.33-38.336-19.951 7.035-35.239 17.177-51.536 30.601-19.471 16.035-39.583 36.08-63.06 46.272-26.762 11.617-61.336 25.33-88.966 9.628-7.053-4.008-10.836-10.426-12.056-17.962-4.708 5.987-11.785 10.383-21.748 12.156-13.606 2.419-31.605 1.52-42.756-7.775-6.752-5.629-19.49-33.174-4.547-37.032 19.291-4.98 4.547 37.032 47.677 27.024 19.47-4.52 9.889-42.96-.439-54.29-12.848-14.093-34.635-17.29-52.65-15.16-24.295 2.87-51.309 8.45-72.548 21.322-44.797 27.153-82.15 63.037-134.085 75.87C48.965 143.867 1.516 117.46.036 68.088L0 68V0h1920v87l-.005-.002z" fill-rule="nonzero"/></g></svg>`};var n;return"data:image/svg+xml;base64,"+l.Base64.encode(o[e])}},function(e,t,o){"use strict";o.d(t,"a",(function(){return n}));let n=new Map},function(e,t,o){"use strict";o.d(t,"a",(function(){return n}));let n=new Map},function(e,t,o){"use strict";o.d(t,"a",(function(){return a}));const n=["relative","absolute","fixed"],a=e=>n.includes(e)?e:void 0},,,,,function(e,t,o){"use strict";o.d(t,"a",(function(){return a})),o.d(t,"b",(function(){return r}));var n=o(1);const a=()=>[{value:"none",title:Object(n.a)("None")},{value:"bounce",title:Object(n.a)("Bounce")},{value:"flash",title:Object(n.a)("Flash")},{value:"pulse",title:Object(n.a)("Pulse")},{value:"rubberBand",title:Object(n.a)("RubberBand")},{value:"shake",title:Object(n.a)("Shake")},{value:"swing",title:Object(n.a)("Swing")},{value:"tada",title:Object(n.a)("Tada")},{value:"wobble",title:Object(n.a)("Wobble")},{value:"jello",title:Object(n.a)("Jello")},{value:"bounceIn",title:Object(n.a)("BounceIn")},{value:"bounceInDown",title:Object(n.a)("BounceInDown")},{value:"bounceInLeft",title:Object(n.a)("BounceInLeft")},{value:"bounceInRight",title:Object(n.a)("BounceInRight")},{value:"bounceInUp",title:Object(n.a)("BounceInUp")},{value:"fadeIn",title:Object(n.a)("FadeIn")},{value:"fadeInDown",title:Object(n.a)("FadeInDown")},{value:"fadeInDownBig",title:Object(n.a)("FadeInDownBig")},{value:"fadeInLeft",title:Object(n.a)("FadeInLeft")},{value:"fadeInLeftBig",title:Object(n.a)("FadeInLeftBig")},{value:"fadeInRight",title:Object(n.a)("FadeInRight")},{value:"fadeInRightBig",title:Object(n.a)("FadeInRightBig")},{value:"fadeInUp",title:Object(n.a)("FadeInUp")},{value:"fadeInUpBig",title:Object(n.a)("FadeInUpBig")},{value:"flip",title:Object(n.a)("Flip")},{value:"flipInX",title:Object(n.a)("FlipInX")},{value:"flipInY",title:Object(n.a)("FlipInY")},{value:"lightSpeedIn",title:Object(n.a)("LightSpeedIn")},{value:"rotateIn",title:Object(n.a)("RotateIn")},{value:"rotateInDownLeft",title:Object(n.a)("RotateInDownLeft")},{value:"rotateInDownRight",title:Object(n.a)("RotateInDownRight")},{value:"rotateInUpLeft",title:Object(n.a)("RotateInUpLeft")},{value:"rotateInUpRight",title:Object(n.a)("RotateInUpRight")},{value:"slideInUp",title:Object(n.a)("SlideInUp")},{value:"slideInDown",title:Object(n.a)("SlideInDown")},{value:"slideInLeft",title:Object(n.a)("SlideInLeft")},{value:"slideInRight",title:Object(n.a)("SlideInRight")},{value:"zoomIn",title:Object(n.a)("ZoomIn")},{value:"zoomInDown",title:Object(n.a)("ZoomInDown")},{value:"zoomInLeft",title:Object(n.a)("ZoomInLeft")},{value:"zoomInRight",title:Object(n.a)("ZoomInRight")},{value:"zoomInUp",title:Object(n.a)("ZoomInUp")},{value:"jackInTheBox",title:Object(n.a)("JackInTheBox")},{value:"rollIn",title:Object(n.a)("RollIn")}],r=()=>[{value:"none",title:Object(n.a)("None")},{value:"flash",title:Object(n.a)("Flash")},{value:"pulse",title:Object(n.a)("Pulse")},{value:"fadeIn",title:Object(n.a)("FadeIn")},{value:"fadeInDown",title:Object(n.a)("FadeInDown")},{value:"fadeInLeft",title:Object(n.a)("FadeInLeft")},{value:"fadeInRight",title:Object(n.a)("FadeInRight")},{value:"fadeInUp",title:Object(n.a)("FadeInUp")},{value:"zoomIn",title:Object(n.a)("ZoomIn")}]},function(e,t,o){"use strict";o.d(t,"a",(function(){return s})),o.d(t,"b",(function(){return c})),o.d(t,"c",(function(){return d}));var n=o(2),a=o(7),r=o(84);function i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function l(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?i(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):i(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const s=(e,t,o,n)=>{var i;const{id:s,type:c}=n||{};if("tabsState"===s)return n;switch(c){case"tabs":case"tabs-dev":return l(l({},n),{},{tabs:Object(r.g)(n.tabs).map(n=>{var r;return l(l({},n),{},{options:[{id:"tabsState",type:"stateMode",config:{states:e},options:null!==(r=n.options)&&void 0!==r?r:[],value:a.e(t),onChange:o}]})})});case"popover":case"popover-dev":return l(l({},n),{},{options:[{id:"tabsState",type:"stateMode",config:{states:e},options:null!==(i=n.options)&&void 0!==i?i:[],value:a.e(t),onChange:o}]});default:return n}},c=(e,t)=>Object(r.e)([a.d],t.states).includes(e),d=(e,t)=>t.some(c.bind(null,e))},function(e,t,o){"use strict";o.d(t,"a",(function(){return a})),o.d(t,"b",(function(){return r}));var n=o(39);function a(e,t){return t?t[e]:void 0}function r(e,t,o){return Object(n.f)(a(t,o),e)}},,,,,,,,,,,function(e,t,o){"use strict";o.d(t,"a",(function(){return i}));var n=o(172),a=o(14),r=o(24);const i=(e,t,o)=>{const i=Object(n.a)(o),l=Object(a.q)(i);return Object(r.insert)(e,t,l)}},,function(e,t,o){"use strict";o.d(t,"a",(function(){return p}));var n=o(2),a=o(0),r=o.n(a),i=o(5),l=o.n(i),s=o(8),c=o(15),d=o(45),u=o(57);class p extends r.a.Component{renderForEdit(){const{active:e,className:t,checkIcon:o,unCheckIcon:n,children:a,onClick:i}=this.props,s=l()("brz-control__radio-option",{"brz-control__radio-option--active":e},t),d=l()("brz-control__radio-check",{"brz-control__radio-check--active":e});return r.a.createElement("div",{className:s,onClick:i},r.a.createElement(c.b,{className:d,icon:e?"nc-"+o:"nc-"+n}),a)}renderForView(){const{active:e,className:t,value:o,name:n,checkIcon:a,unCheckIcon:i,required:s,children:c,onClick:p}=this.props,b=l()("brz-control__radio-option",{"brz-control__radio-option--active":e},t),m=Object(u.a)();return r.a.createElement("div",{className:b,onClick:p},r.a.createElement("input",{id:m,className:"brz-input",type:"radio",name:n,value:o,checked:e,required:s,"data-type":this.props["data-type"],"data-label":this.props["data-label"],onChange:()=>{}}),r.a.createElement("label",{className:"brz-label",htmlFor:m},r.a.createElement(d.a,{className:"brz-control__radio-icon brz-control__radio--check",type:"editor",name:a}),r.a.createElement(d.a,{className:"brz-control__radio-icon brz-control__radio--uncheck",type:"editor",name:i}),c))}render(){return this.renderForEdit()}}Object(n.a)(p,"defaultProps",{checkIcon:"check",unCheckIcon:"uncheck",className:"",active:!1,value:"",name:"",onClick:s.default.noop})},function(e,t,o){"use strict";o.d(t,"a",(function(){return a})),o.d(t,"b",(function(){return r}));let n="above";const a=()=>n,r=e=>{n=e}},function(e,t,o){"use strict";o.d(t,"a",(function(){return i}));var n=o(0),a=o.n(n),r=o(176);const i=({active:e,children:t,onChange:o,onStart:i,onEnd:l,hAlign:s,vAlign:c,xSuffix:d,ySuffix:u,getValue:p,getContainerSizes:b})=>{const{x:m,y:h}=p(),[g,v]=Object(n.useState)({x:m,y:h}),f=Object(n.useCallback)(({deltaX:e,deltaY:t})=>{const{width:n,height:a}=b(),r="px"===d?e:100*e/n,i="px"===u?t:100*t/a;o({x:Math.round(g.x+r),y:Math.round(g.y+i)})},[s,c,g.x,g.y]),y=Object(n.useCallback)(()=>{const{x:e,y:t}=p();g.x===e&&g.y===t||(i&&i({x:e,y:t}),v({x:e,y:t}))},[m,h]),O=Object(n.useCallback)(()=>{const{x:e,y:t}=p();g.x===e&&g.y===t||l&&l({x:e,y:t})},[m,h]);return a.a.createElement(r.a,{active:e,exceptions:[".brz-ed-toolbar",".brz-ed-tooltip__content-portal",".brz-rich-text .brz-ed-content-editable-focus"],onDragStart:y,onDrag:f,onDragEnd:O},t)}},function(e,t,o){"use strict";o.d(t,"c",(function(){return Ls})),o.d(t,"b",(function(){return Ws}));var n=o(139),a=o(2),r=o(0),i=o.n(r),l=o(5),s=o.n(l),c=o(15),d=o(23),u=o(27),p=o(19),b=o(30);function m(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function h(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?m(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):m(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class g extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{isSidebarOpen:!1}),Object(a.a)(this,"handleLabelClick",()=>{const e=Object(d.b)(),{rightSidebar:t}=Object(p.H)(e.getState());t.isOpen||this.setState({isSidebarOpen:!0},()=>{e.dispatch(Object(u.C)("rightSidebar",h(h({},t),{},{isOpen:!0})))})})}static shouldOptionBeFiltered(){return Object(p.h)(Object(d.b)().getState())!==b.a}componentWillUnmount(){const e=Object(d.b)(),{rightSidebar:t}=Object(p.H)(e.getState());this.state.isSidebarOpen&&void 0===t.lock&&e.dispatch(Object(u.C)("rightSidebar",h(h({},t),{},{isOpen:!1})))}renderIcon(){const{icon:e}=this.props;return i.a.createElement("div",{className:"brz-ed-option__icon"},i.a.createElement(c.b,{icon:e}))}renderLabel(){const{label:e,helper:t,helperContent:o}=this.props;return i.a.createElement("div",{className:"brz-ed-option__label"},e,t&&i.a.createElement("div",{className:"brz-ed-option__helper"},i.a.createElement(c.b,{icon:"nc-alert-circle-que"}),i.a.createElement("div",{className:"brz-ed-option__helper__content",dangerouslySetInnerHTML:{__html:o}})))}render(){const{className:e,icon:t,label:o,helper:n,attr:a,title:r}=this.props,l=s()("brz-ed-option__advanced","brz-ed-option__inline",e,a.className);return i.a.createElement("div",{className:l,title:r,onClick:this.handleLabelClick},t&&this.renderIcon(),(o||n)&&this.renderLabel())}}Object(a.a)(g,"defaultProps",{className:"",icon:"nc-cog",title:"",label:"",sidebarLabel:"",helper:!1,helperContent:"",attr:{}});var v=o(12),f=o(37),y=o(8),O=o(38),S=o(83),C=o(51),x=o(46),j=o(1);function B(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function P(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?B(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):B(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class w extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"anchorInputRefs",[]),Object(a.a)(this,"handleThumbnailClick",e=>{this.props.value===e?this.props.onChange(""):this.props.onChange(e)}),Object(a.a)(this,"handleInputChange",y.default.debounce((e,t)=>{const{pageBlocks:o,globalBlocks:n,dispatch:a}=this.props,r=encodeURIComponent(e);let i=r;if(""!==i){const e=o.filter(e=>e.value._id!==t).map(e=>("GlobalBlock"===e.type&&(e=n[e.value._id].data),e.value.anchorName));let a=!1,l=0;do{a=!1;for(let t of e)if(i===t){a=!0,i=r+"-"+(1+ ++l);break}}while(a)}const l=o.find(({type:e,value:o})=>"GlobalBlock"===e?n[o._id].data.value._id===t:o._id===t);if("GlobalBlock"!==l.type){const e=o.map(e=>e.value._id===t?P(P({},e),{},{value:P(P({},e.value),{},{anchorName:i})}):e);a(Object(u.w)({blocks:e}))}else{const e=l.value._id,t=Object(f.a)(n[e],e=>{e.data.value.anchorName=i});a(Object(u.z)(t))}this.anchorInputRefs[t].setValue(i)},1e3))}componentWillUnmount(){this.handleInputChange.cancel(),this.anchorInputRefs=null}renderLabel(){const{label:e,helper:t,helperContent:o}=this.props,n=t?i.a.createElement("div",{className:"brz-ed-option__helper"},i.a.createElement(c.b,{icon:"nc-alert-circle-que"}),i.a.createElement("div",{className:"brz-ed-option__helper__content",dangerouslySetInnerHTML:{__html:o}})):null;return i.a.createElement("div",{className:"brz-ed-option__label"},e,n)}renderThumbnails(){const{value:e,pageBlocksAssembled:t,globalBlocks:o}=this.props;return t.filter(e=>"unlisted"!==e.value._blockVisibility).map(t=>{"GlobalBlock"===t.type&&(t=o[t.value._id].data);const{_id:n,anchorName:a}=t.value,r=s()("brz-ed-option__block-thumbnail-item",{active:n===e}),l=a?decodeURIComponent(a):"";return i.a.createElement("div",{key:n,className:r,onClick:()=>this.handleThumbnailClick(n)},i.a.createElement(T,{blockData:t}),i.a.createElement(z,{ref:e=>{e&&(this.anchorInputRefs[n]=e)},id:n,value:l,onChange:e=>this.handleInputChange(e,n)}))})}render(){const{className:e,attr:t,label:o,helper:n,display:a}=this.props,r=s()("brz-ed-option__block-thumbnail","brz-ed-option__"+a,e,t.className);return i.a.createElement("div",Object(v.a)({},t,{className:r}),o||n?this.renderLabel():null,i.a.createElement(S.a,{style:{height:"100%",overflow:"hidden"},className:"brz-ed-scroll-pane brz-ed-scroll--small brz-ed-scroll--darker"},this.renderThumbnails()))}}Object(a.a)(w,"defaultProps",{label:"",className:"",attr:{},helper:!1,helperContent:"",display:"inline",value:""});class T extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{blockData:this.props.blockData,imageFetched:!1,showSpinner:!0})}componentDidMount(){this.mounted=!0,this.preloadThumbnail(this.state.blockData)}preloadThumbnail(e){let t=!1;const{url:o}=Object(C.b)(e);return Object(x.e)(o).then(()=>{this.mounted&&!t&&this.setState({imageFetched:!0,showSpinner:!1,blockData:e})}),()=>t=!0}render(){const{blockData:e,imageFetched:t,showSpinner:o}=this.state,{url:n,width:a,height:r}=Object(C.b)(e),l={width:132,height:132*r/a},s=o?{}:{display:"none"};return i.a.createElement("div",{className:"brz-ed-option__block-thumbnail-image",style:l},i.a.createElement("div",{className:"brz-ed-option__block-thumbnail-loading",style:s},i.a.createElement(c.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"})),t&&i.a.createElement("img",{className:"brz-img",src:n}))}}class z extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{inputValue:this.props.value}),Object(a.a)(this,"handleContainerClick",e=>{e.stopPropagation()}),Object(a.a)(this,"handleInputChange",e=>{this.setState({inputValue:e.target.value},()=>{this.props.onChange(this.state.inputValue)})})}setValue(e){this.state.inputValue!==e&&this.setState({inputValue:e})}render(){const{id:e}=this.props,t="anchor-"+e;return i.a.createElement("div",{className:"brz-ed-option__block-thumbnail-anchor",onClick:this.handleContainerClick},i.a.createElement("span",{className:"brz-span"},"#"),i.a.createElement("input",{className:"brz-input",type:"text",autoComplete:"off",placeholder:Object(j.a)("block-name"),value:this.state.inputValue,onChange:this.handleInputChange,id:t}),i.a.createElement("label",{className:"brz-label",htmlFor:t},i.a.createElement(c.b,{icon:"nc-pen"})))}}var E=Object(O.b)(e=>({pageBlocks:Object(p.v)(e),pageBlocksAssembled:Object(p.r)(e),globalBlocks:Object(p.k)(e)}))(w);class k extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"handleMouseDown",e=>{e.preventDefault(),this.props.onChange(!this.props.value)})}render(){const{className:e,attr:t,value:o,icon:n,title:a}=this.props,r=s()("brz-ed-option__button",{"brz-ed-toolbar--active":o},e,t.className),l=y.default.omit(t,"className");return i.a.createElement("div",Object(v.a)({className:r,title:a,onMouseDown:this.handleMouseDown},l),i.a.createElement(c.b,{icon:n}))}}Object(a.a)(k,"defaultProps",{className:"",attr:{},icon:"nc-circle-add",title:"Add",value:!1});var H=k,F=o(62),_=o(98),R=o(79),M=o(21),L=o(53),W=o(57),I=o(44),N=o(211),A=o(32);const D=({value:e},t)=>!!e&&e._id===t;class V extends r.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{loading:!1,active:!1}),Object(a.a)(this,"mounted",!1),Object(a.a)(this,"handleCreateSaveBlock",async()=>{const{blockType:e,extraFontStyles:t,value:{blockId:o}}=this.props,n={extraFontStyles:t,type:e},a=this.getBlock();if(!a){const t="normal"===e?Object(j.a)("Could not Create Saved Block"):Object(j.a)("Could not Create Saved Popup");return R.a.error(t),void(this.mounted&&this.state.loading&&this.setState({loading:!1}))}let r;try{r=await Object(_.a)()}catch(e){r=!1}if(r){const e=document.getElementById(o);if(e){const{src:t,width:o,height:a}=await Object(_.b)(e).catch(()=>({src:void 0,width:void 0,height:void 0}));if(t&&Object(A.c)(o)&&Object(A.c)(a)){const{id:e}=await Object(M.b)({base64:t,blockType:"saved"}).catch(()=>({id:void 0}));e&&(n._thumbnailSrc=e,n._thumbnailWidth=o,n._thumbnailHeight=a,n._thumbnailTime=Date.now())}}}await Object(M.g)({data:a,meta:n,uid:Object(W.a)(),dataVersion:1}).catch(t=>{"normal"===e?R.a.error(Object(j.a)("Could not Create Saved Block")):R.a.error(Object(j.a)("Could not Create Saved Popup")),console.error(t)}),r||R.a.warn(Object(j.a)("Your block was saved without screenshot, browser is not compatible"),{hideAfter:5}),this.mounted&&this.setState({loading:!1})}),Object(a.a)(this,"handleClick",async()=>{if(this.state.loading)return;this.setState({loading:!0});if(Object(N.a)()||this.props.isAuthorized)await this.handleCreateSaveBlock();else{const e={mode:"stack",prompt:"authorization",props:{onClose:this.handleCreateSaveBlock,onSkip:this.handleCreateSaveBlock,onSuccess:this.handleCreateSaveBlock}};F.a.open(e)}})}componentDidMount(){this.mounted=!0}componentWillUnmount(){this.mounted=!1}getBlock(){const{blockType:e,pageBlocks:{items:t},value:{blockId:o}}=this.props;let n;return n="normal"===e?t.find(e=>D(e,o)):Object(L.a)(t,e=>D(e,o)).obj,n}renderTooltip(){const{tooltipContent:e}=this.props,{loading:t,active:o}=this.state,n=s()("brz-ed-toolbar__item__tooltip",{"brz-ed-animated brz-ed-animated--fadeIn active":o});return!t&&i.a.createElement("div",{className:n},e)}render(){const{attr:e,icon:t,title:o,tooltipContent:n,className:a}=this.props,{loading:r}=this.state,l=s()("brz-ed-option__button",a,e.className);return i.a.createElement("div",Object(v.a)({},e,{className:l,title:o,onClick:this.handleClick}),n&&this.renderTooltip(),r?i.a.createElement(c.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}):i.a.createElement(c.b,{icon:t,className:"brz-ed-animated brz-ed-animated--fadeIn"}))}}Object(a.a)(V,"defaultProps",{className:"",attr:{},icon:"nc-circle-add",title:"Add",tooltipContent:"",blockType:"normal",value:{blockId:""},pageBlocks:{items:[]},extraFontStyles:[],isAuthorized:!1});var $=Object(O.b)(e=>({isAuthorized:"connected"===e.authorized||"pending"===e.authorized,pageBlocks:Object(p.x)(e),extraFontStyles:Object(I.b)(e)}))(V),G=o(123),U=o(14),K=o(130),q=o(131);var Y=o(35),X=o.n(Y);class Z{static render(e){const t=e||document.body,o=t&&t.ownerDocument;if(t&&o){const e=i.a.createElement(c.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}),n=o.createElement("div");return n.className="brz-ed-portal__loading",t.append(n),Z.opened.add(n),X.a.render(e,n),n}}static close(e){e&&(e.remove(),Z.opened.delete(e))}static closeAll(){Z.opened.forEach(e=>{e.remove()}),Z.opened.clear()}}Object(a.a)(Z,"opened",new Set);const J=()=>{let e="";return new Map([...q.a,...K.a]).forEach(t=>{t.state.isOpened&&(e=t.instanceKey)}),e},Q=e=>{const t=new Map([...q.a,...K.a]).get(e);t&&t.open()};class ee extends r.Component{constructor(...e){super(...e),Object(a.a)(this,"mounted",!1),Object(a.a)(this,"switchKey",Math.random()),Object(a.a)(this,"isGlobalBlock",()=>{const{value:{_id:e},globalBlocks:t}=this.props;return Object.keys(t).includes(e)}),Object(a.a)(this,"handleChange",async e=>{const{blockType:t,extraFontStyles:o,pageBlocks:n,makeNormalToGlobalBlock:a,makeGlobalToNormalBlock:r,makePopupToGlobalBlock:i,makeGlobalBlockToPopup:l,value:{_id:s}}=this.props,c=document.querySelector(`[id='${s}']`),d=Z.render(c),u=(p=n,b=s,Object(L.a)(p,({value:e})=>e&&e._id===b).obj);var p,b;if(e){if(c&&u){const e=await(async e=>{if(await Object(_.a)()){const{src:t,width:o,height:n}=await Object(_.b)(e),{id:a}=await Object(M.b)({base64:t,blockType:"global"});return{_thumbnailSrc:a,_thumbnailWidth:o,_thumbnailHeight:n,_thumbnailTime:Date.now()}}})(c),n={extraFontStyles:o,type:t};e&&(n._thumbnailSrc=e._thumbnailSrc,n._thumbnailWidth=e._thumbnailWidth,n._thumbnailHeight=e._thumbnailHeight,n._thumbnailTime=e._thumbnailTime);const r=Object(C.j)(),l={meta:n,status:"draft",data:u,rules:Object(C.k)(u)?[]:[{type:1,appliedFor:r.group,entityType:r.type,entityValues:[r.id]}],position:null,dataVersion:1};await Object(M.e)(l).then(e=>{if(!e||!e.data)throw e;{Z.close(d);const e="popup"===t&&J();"popup"===t?i(l):a(l),e&&Q(e)}}).catch(e=>{Z.close(d),this.switchKey=Math.random(),this.mounted&&this.forceUpdate(),"popup"===t?R.a.error(Object(j.a)("Could not Create Global Popup")):R.a.error(Object(j.a)("Could not Create Global Block")),console.error(e)})}}else if(await Object(M.F)(),this.isGlobalBlock()){const e=Object(U.q)(this.props.blocksData[s]),o="popup"===t&&J();Z.close(d);const n={block:e,fromBlockId:s};"popup"===t?l(n):r(n),o&&Q(o)}})}componentDidMount(){this.mounted=!0}componentWillUnmount(){this.mounted=!1}renderLabel(){const{label:e,helper:t,helperContent:o}=this.props;return i.a.createElement("div",{className:"brz-ed-option__label brz-ed-option__switch__label"},e,t&&i.a.createElement("div",{className:"brz-ed-option__helper"},i.a.createElement(c.b,{icon:"nc-alert-circle-que"}),i.a.createElement("div",{className:"brz-ed-option__helper__content",dangerouslySetInnerHTML:{__html:o}})))}render(){const{label:e,display:t,helper:o,attr:n={},className:a}=this.props,r=s()("brz-ed-option__global-block","brz-ed-option__"+t,a,n.className);return i.a.createElement("div",Object(v.a)({},n,{className:r}),(e||o)&&this.renderLabel(),i.a.createElement(G.a,{key:this.switchKey,defaultValue:this.isGlobalBlock(),onChange:this.handleChange}))}}Object(a.a)(ee,"defaultProps",{blockType:"normal",className:"",label:"",display:"inline",attr:{},helper:!1,helperContent:"",extraFontStyles:[],pageBlocks:[],blocksData:{},globalBlocks:{},value:{_id:""},makeNormalToGlobalBlock:y.noop,makeGlobalToNormalBlock:y.noop,makePopupToGlobalBlock:y.noop,makeGlobalBlockToPopup:y.noop,updateBlocks:y.noop});var te=Object(O.b)(e=>({extraFontStyles:Object(I.b)(e),pageBlocks:Object(p.t)(e),globalBlocks:Object(p.k)(e),blocksData:Object(p.a)(e)}),e=>({makeNormalToGlobalBlock:t=>e(Object(u.n)(t)),makeGlobalToNormalBlock:t=>e(Object(u.m)(t)),makePopupToGlobalBlock:t=>e(Object(u.o)(t)),makeGlobalBlockToPopup:t=>e(Object(u.l)(t)),updateBlocks:t=>e(Object(u.w)(t))}))(ee),oe=o(58);let ne;ne=o(291),o(293),o(145);class ae extends i.a.Component{constructor(e){super(e),Object(a.a)(this,"state",{value:""}),Object(a.a)(this,"lastUpdatedValue",""),Object(a.a)(this,"onChange",e=>this.setState({value:e},this.onChangeDebounced)),Object(a.a)(this,"onChangeDebounced",y.default.debounce(()=>{this.props.onChange(this.state.value),this.lastUpdatedValue=this.state.value},1e3)),this.state={value:e.value}}componentWillReceiveProps({value:e}){e!==this.lastUpdatedValue&&(this.state.value!==this.lastUpdatedValue&&(this.onChangeDebounced.cancel(),this.props.onChange(this.state.value),this.lastUpdatedValue=this.state.value),this.setState({value:e}))}renderLabel(){const{label:e,helper:t,helperContent:o}=this.props,n=t?i.a.createElement("div",{className:"brz-ed-option__helper"},i.a.createElement(oe.b,{placement:"bottom-center",openOnClick:!1,overlay:i.a.createElement("div",{className:"brz-ed-option__helper__content",dangerouslySetInnerHTML:{__html:o}})},i.a.createElement(c.b,{icon:"nc-alert-circle-que"}))):null;return i.a.createElement("div",{className:"brz-ed-option__label brz-ed-option__code__label"},e,n)}render(){const{label:e,className:t,helper:o,display:n,lineNumbers:a,attr:r,placeholder:l}=this.props,c=s()("brz-ed-option__code","brz-ed-option__"+n,t,r.className),d=y.default.omit(r,"className"),u={lineNumbers:a,tabSize:2,placeholder:l,mode:"css"};return i.a.createElement("div",Object(v.a)({className:c},d),e||o?this.renderLabel():null,i.a.createElement(ne,{value:this.state.value,onChange:this.onChange,options:u}))}}Object(a.a)(ae,"defaultProps",{className:"",label:"",placeholder:"",helper:!1,helperContent:"",attr:{},display:"inline",lineNumbers:!1,value:"",onChange:y.default.noop});var re=ae,ie=o(141),le=o.n(ie);function se(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}var ce={simpleCheckForValidColor(e){let t=0,o=0;return y.default.each(["r","g","b","a","h","s","l","v"],n=>{if(e[n]&&(t+=1,isNaN(e[n])||(o+=1),"s"===n||"l"===n)){/^\d+%$/.test(e[n])&&(o+=1)}}),t===o&&e},toState(e,t,o){const n=e.hex?le()(e.hex):le()(e),r=n.toHsl(),i=n.toHsv(),l=n.toRgb(),s=n.toHex();0===r.s&&(r.h=t||0,i.h=t||0);let c={};return e.hex||0===i.v||(c={hsv:i}),o||(c={hsv:i}),"saturation"===e.wasChanged&&(c={hsv:{h:i.h,s:0===i.s?e.s/100:i.s,v:i.v}}),"hue"!==e.wasChanged&&"opacity"!==e.wasChanged||(c={}),function(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?se(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):se(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}({hsl:r,hex:"#"+s,rgb:l,oldHue:e.h||t||r.h,source:e.source},c)},isValidHex:e=>le()(e).isValid(),getContrastingColor(e){if(!e)return"#fff";const t=this.toState(e);if("transparent"===t.hex)return"rgba(0,0,0,0.4)";return(299*t.rgb.r+587*t.rgb.g+114*t.rgb.b)/1e3>=128?"#000":"#fff"}};class de extends r.Component{constructor(e){super(e),Object(a.a)(this,"onHexChange",({target:{value:e}})=>{const{value:{opacity:t},onChange:o}=this.props;this.setState({hex:e}),e.length<6||!ce.isValidHex(e)||o({hex:(e="#"===e[0]?e:"#"+e).toLowerCase(),opacity:t,isChanged:"hex"})}),this.state={hex:e.value.hex||"#000000"}}componentWillReceiveProps({value:{hex:e}}){e!==this.state.hex&&this.setState({hex:e||"#000000"})}render(){return i.a.createElement("input",{id:"hex",className:"brz-input",autoComplete:"off",value:this.state.hex,onChange:this.onHexChange})}}Object(a.a)(de,"defaultProps",{value:{hex:"#000000"}}),de.defaultProps={value:{hex:"#000000",opacity:1},onChange:y.default.noop};class ue extends i.a.Component{render(){const{className:e,attr:t,value:o,onChange:n}=this.props,a=s()("brz-ed-option__color-picker__hex",e,t.className),r=y.default.omit(t,"className");return i.a.createElement("div",Object(v.a)({className:a},r),i.a.createElement(de,{value:o,onChange:n}))}}Object(a.a)(ue,"defaultProps",{className:"",attr:{},value:{hex:"#000000",opacity:1},onChange:y.default.noop});var pe=ue,be=o(18);class me extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"handleSidebarOpen",()=>{Object(d.b)().dispatch(Object(u.C)("leftSidebar",{isOpen:!0,drawerContentType:"styling"}))})}render(){const{className:e,colors:t,value:o,onChange:n}=this.props,a=s()("brz-ed-option__color-palette",e),r=(t||Object(be.b)()).map(e=>{const t=s()("brz-ed-option__color-palette__item",{active:e.id===o}),a={backgroundColor:e.hex};return i.a.createElement("div",{key:e.id,className:t,style:a,onClick:()=>n(e.id)})});return i.a.createElement("div",{className:a},r,i.a.createElement("div",{className:"brz-ed-option__color-palette__icon",onClick:this.handleSidebarOpen},i.a.createElement(c.b,{icon:"nc-cog"})))}}Object(a.a)(me,"defaultProps",{className:"",colors:null,value:"",onChange:()=>console.log("ColorPalette default onChange")});var he=me;class ge extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"handleSidebarOpen",()=>{Object(d.b)().dispatch(Object(u.C)("leftSidebar",{isOpen:!0,drawerContentType:"styling"}))})}render(){const{className:e,colors:t,value:o,onChange:n}=this.props,a=s()("brz-ed-option__color-palette2",e),r=(t||Object(be.b)()).map(e=>{const t=s()("brz-ed-option__color-palette2__item",{active:e.id===o}),a={backgroundColor:e.hex};return i.a.createElement("div",{key:e.id,className:t,style:a,onClick:()=>n(e.id)})});return i.a.createElement("div",{className:a},r,i.a.createElement("div",{className:"brz-ed-option__color-palette2__icon",onClick:this.handleSidebarOpen},i.a.createElement(c.b,{icon:"nc-cog"})))}}Object(a.a)(ge,"defaultProps",{className:"",colors:null,value:"",onChange:()=>console.log("ColorPalette default onChange")});var ve=ge,fe=o(16);function ye(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Oe(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?ye(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):ye(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Se extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{active:null}),Object(a.a)(this,"handleToolbarOpen",e=>{this.setState({active:e})}),Object(a.a)(this,"handleToolbarClose",()=>{this.setState({active:null})}),Object(a.a)(this,"renderLabel",()=>{const{label:e,helper:t,helperContent:o}=this.props,n=t?i.a.createElement("div",{className:"brz-ed-option__helper"},i.a.createElement(c.b,{icon:"nc-alert-circle-que"}),i.a.createElement("div",{className:"brz-ed-option__helper__content",dangerouslySetInnerHTML:{__html:o}})):null;return i.a.createElement("div",{className:"brz-ed-option__label brz-ed-option__color-palette-editor__label"},e,n)})}handleColorChange(e,t){const o=this.props.value.map((o,n)=>n===t?Oe(Oe({},o),{},{hex:e.hex}):o);this.props.onChange(o)}render(){const{className:e,attr:t,label:o,helper:n,value:a}=this.props,r=a.map((e,t)=>{const o=s()("brz-ed-option__color-palette-editor__item",{active:t===this.state.active}),n={backgroundColor:e.hex};return i.a.createElement(fe.c,{key:t,getItems:()=>[{id:"settings",type:"popover",icon:"nc-cog",display:"inside",size:"auto",onOpenDirect:!0,position:90,options:[{id:"backgroundColor",type:"colorPicker",label:"Color HEX",disableOpacity:!0,value:{hex:e.hex,opacity:1},onChange:e=>this.handleColorChange(e,t)},{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[{id:"backgroundColorFields",type:"colorFields",disableOpacity:!0,value:{hex:e.hex,opacity:1},onChange:e=>this.handleColorChange(e,t)}]}]}]}],onOpen:()=>this.handleToolbarOpen(t),onClose:this.handleToolbarClose},i.a.createElement("div",{className:o,style:n}))}),l=s()("brz-ed-option__color-palette-editor",e,t.className);return i.a.createElement("div",Object(v.a)({},t,{className:l}),o||n?this.renderLabel():null,r)}}Object(a.a)(Se,"defaultProps",{className:"",helperContent:"",helper:!1,attr:{},value:[]});var Ce=Se;const xe={},je=(e,t,o,n)=>{const a=`${e}-${t}-${o}${n?"-server":""}`,r=((e,t,o,n)=>{if("undefined"==typeof document&&!n)return null;const a=n?new n:document.createElement("canvas");a.width=2*o,a.height=2*o;const r=a.getContext("2d");return r?(r.fillStyle=e,r.fillRect(0,0,a.width,a.height),r.fillStyle=t,r.fillRect(0,0,o,o),r.translate(o,o),r.fillRect(0,0,o,o),a.toDataURL()):null})(e,t,o,n);return xe[a]?xe[a]:(xe[a]=r,r)},Be=({white:e,grey:t,size:o,renderers:n,borderRadius:a,boxShadow:r})=>{const l={borderRadius:a,boxShadow:r,absolute:"0px 0px 0px 0px",background:`url(${je(e,t,o,n.canvas)}) center left`};return i.a.createElement("div",{style:l})};Be.defaultProps={size:8,white:"transparent",grey:"rgba(0,0,0,.08)",renderers:{}};var Pe=Be;function we(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Te(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?we(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):we(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class ze extends r.Component{constructor(e){super(e),Object(a.a)(this,"change",null),Object(a.a)(this,"handleChange",(e,t)=>{const o=this.props.contentWindow();this.change=((e,t,o,n)=>{e.preventDefault();const a=n.clientWidth,r=n.clientHeight,i="number"==typeof e.pageX?e.pageX:e.touches[0].pageX,l="number"==typeof e.pageY?e.pageY:e.touches[0].pageY,s=i-(n.getBoundingClientRect().left+t.pageXOffset),c=l-(n.getBoundingClientRect().top+t.pageYOffset);if("vertical"===o.direction){let e;if(e=c<0?0:c>r?1:Math.round(100*c/r)/100,o.hsl.a!==e)return{h:o.hsl.h,s:o.hsl.s,l:o.hsl.l,a:e,source:"rgb"}}else{let e;if(e=s<0?0:s>a?1:Math.round(100*s/a)/100,o.a!==e)return{h:o.hsl.h,s:o.hsl.s,l:o.hsl.l,a:e,source:"rgb"}}return null})(e,o,this.props,this.container)||this.change,this.change&&(this.change.a=1-this.change.a,this.props.onChange&&this.props.onChange(Te(Te({},this.change),{},{opacityDragEnd:t,wasChanged:"opacity"}),e))}),Object(a.a)(this,"handleMouseDown",e=>{this.handleChange(e);const t=this.props.contentWindow();t.addEventListener("mousemove",this.handleChange),t.addEventListener("mouseup",this.handleMouseUp),this.setState({showTooltip:!0})}),Object(a.a)(this,"handleMouseUp",e=>{this.handleChange(e,!0),this.unbindEventListeners(),this.setState({showTooltip:!1}),this.change=null}),Object(a.a)(this,"unbindEventListeners",()=>{const e=this.props.contentWindow();e.removeEventListener("mousemove",this.handleChange),e.removeEventListener("mouseup",this.handleMouseUp)}),this.state={showTooltip:!1}}componentWillUnmount(){this.unbindEventListeners()}render(){const{direction:e,rgb:t}=this.props,o={background:`linear-gradient(${"vertical"===e?"to top":"to right"}, rgba(${t.r},${t.g},${t.b}, 0) 0%,\n rgba(${t.r},${t.g},${t.b}, 1) 100%)`,boxShadow:this.props.shadow,borderRadius:this.props.radius},n="vertical"===e?{left:0,top:100*(1-t.a)+"%"}:{left:100*t.a+"%"};return i.a.createElement("div",{className:"color-picker-alpha-body",style:{borderRadius:this.props.radius}},i.a.createElement("div",{className:"color-picker-alpha-checkboard"},i.a.createElement(Pe,{renderers:this.props.renderers})),i.a.createElement("div",{className:"color-picker-alpha-gradient",style:o}),i.a.createElement("div",{className:"color-picker-alpha-container",ref:e=>this.container=e,onMouseDown:this.handleMouseDown,onTouchMove:this.handleChange,onTouchStart:this.handleChange},i.a.createElement("div",{className:"color-picker-alpha-pointer",style:n},this.props.pointer?this.props.pointer(this.props,this.state.showTooltip):i.a.createElement("div",{className:"color-picker-alpha-slider"}))))}}Object(a.a)(ze,"defaultProps",{contentWindow:()=>window});function Ee(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ke(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ee(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ee(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const He=e=>{class t extends r.Component{constructor(e){super(),Object(a.a)(this,"handleChange",(e,t)=>{if(ce.simpleCheckForValidColor(e)){const o=ce.toState(e,e.h||this.state.oldHue,e.hsv||this.state.hsv);this.setState(o),this.props.onChangeComplete&&this.debounce(this.props.onChangeComplete,o,t),this.props.onChange&&this.props.onChange(ke(ke({},o),{},{wasChanged:e.wasChanged,opacityDragEnd:e.opacityDragEnd}),t)}}),Object(a.a)(this,"handleSwatchHover",(e,t)=>{if(ce.simpleCheckForValidColor(e)){const o=ce.toState(e,e.h||this.state.oldHue,e.hsv||this.state.hsv);this.setState(o),this.props.onSwatchHover&&this.props.onSwatchHover(o,t)}}),this.state=ke({},ce.toState(e.color,0,null)),this.debounce=y.default.debounce((e,t,o)=>{e(t,o)},100)}componentWillReceiveProps(e){this.setState(ke({},ce.toState(e.color,this.state.oldHue,this.state.hsv)))}render(){const t={};return this.props.onSwatchHover&&(t.onSwatchHover=this.handleSwatchHover),i.a.createElement(e,Object(v.a)({},this.props,this.state,{onChange:this.handleChange},t))}}return t.propTypes=ke({},e.propTypes),t.defaultProps=ke(ke({},e.defaultProps),{},{color:{h:250,s:.5,l:.2,a:1}}),t};function Fe(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function _e(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Fe(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Fe(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Re extends r.Component{constructor(...e){super(...e),Object(a.a)(this,"handleChange",e=>{const t=((e,t,o,n)=>{e.preventDefault();const a=n.clientWidth,r=n.clientHeight,i="number"==typeof e.pageX?e.pageX:e.touches[0].pageX,l="number"==typeof e.pageY?e.pageY:e.touches[0].pageY,s=i-(n.getBoundingClientRect().left+t.pageXOffset),c=l-(n.getBoundingClientRect().top+t.pageYOffset);if("vertical"===o.direction){let e;if(c<0)e=359;else if(c>r)e=0;else{e=360*(-100*c/r+100)/100}if(o.hsl.h!==e)return{h:e,s:o.hsl.s,l:o.hsl.l,a:o.hsl.a,source:"rgb"}}else{let e;if(s<0)e=0;else if(s>a)e=359;else{e=360*(100*s/a)/100}if(o.hsl.h!==e)return{h:e,s:o.hsl.s,l:o.hsl.l,a:o.hsl.a,source:"rgb"}}return null})(e,this.props.contentWindow(),this.props,this.container);t&&this.props.onChange&&this.props.onChange(_e(_e({},t),{},{wasChanged:"hue"}),e)}),Object(a.a)(this,"handleMouseDown",e=>{this.handleChange(e,!0);const t=this.props.contentWindow();t.addEventListener("mousemove",this.handleChange),t.addEventListener("mouseup",this.handleMouseUp)}),Object(a.a)(this,"handleMouseUp",()=>{this.unbindEventListeners()})}componentWillUnmount(){this.unbindEventListeners()}unbindEventListeners(){const e=this.props.contentWindow();e.removeEventListener("mousemove",this.handleChange),e.removeEventListener("mouseup",this.handleMouseUp)}render(){const{direction:e="horizontal"}=this.props,t={hue:{borderRadius:this.props.radius,boxShadow:this.props.shadow},pointer:{left:100*this.props.hsl.h/360+"%"}},o={left:"0px",top:-100*this.props.hsl.h/360+100+"%"};return i.a.createElement("div",{className:"hue",style:t.hue},i.a.createElement("div",{className:s()("hue-"+e,"hue-container"),style:t.container,ref:e=>this.container=e,onMouseDown:this.handleMouseDown,onTouchMove:this.handleChange,onTouchStart:this.handleChange},i.a.createElement("div",{style:o,className:"hue-pointer"},this.props.pointer?i.a.createElement(this.props.pointer,this.props):i.a.createElement("div",{className:"hue-slider"}))))}}Object(a.a)(Re,"defaultProps",{contentWindow:()=>window});function Me(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Le(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Me(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Me(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class We extends r.Component{constructor(e){super(e),Object(a.a)(this,"handleChange",e=>{const t=this.props.contentWindow();this.props.onChange&&this.throttle(this.props.onChange,((e,t,o,n)=>{e.preventDefault();const{width:a,height:r}=n.getBoundingClientRect(),i="number"==typeof e.pageX?e.pageX:e.touches[0].pageX,l="number"==typeof e.pageY?e.pageY:e.touches[0].pageY;let s=i-(n.getBoundingClientRect().left+t.pageXOffset),c=l-(n.getBoundingClientRect().top+t.pageYOffset);s<0?s=0:s>a?s=a:c<0?c=0:c>r&&(c=r);const d=100*s/a,u=-100*c/r+100;return{h:o.hsl.h,s:d,v:u,a:o.hsl.a,source:"rgb"}})(e,t,this.props,this.container),e)}),Object(a.a)(this,"handleMouseDown",e=>{this.handleChange(e,!0);const t=this.props.contentWindow();t.addEventListener("mousemove",this.handleChange),t.addEventListener("mouseup",this.handleMouseUp)}),Object(a.a)(this,"handleMouseUp",()=>{this.unbindEventListeners()}),this.throttle=y.default.throttle((e,t,o)=>{e(Le(Le({},t),{},{wasChanged:"saturation"}),o)},50)}componentWillUnmount(){this.unbindEventListeners()}unbindEventListeners(){const e=this.props.contentWindow();e.removeEventListener("mousemove",this.handleChange),e.removeEventListener("mouseup",this.handleMouseUp)}render(){const e={color:{background:`hsl(${this.props.hsl.h},100%, 50%)`,borderRadius:this.props.radius},white:{borderRadius:this.props.radius},black:{boxShadow:this.props.shadow,borderRadius:this.props.radius},pointer:{top:-100*this.props.hsv.v+100+"%",left:100*this.props.hsv.s+"%"}};return i.a.createElement("div",{style:e.color,className:"color-picker-saturation-body",ref:e=>this.container=e,onMouseDown:this.handleMouseDown,onTouchMove:this.handleChange,onTouchStart:this.handleChange},i.a.createElement("div",{style:e.white,className:"saturation-white"},i.a.createElement("div",{style:e.black,className:"saturation-black"}),i.a.createElement("div",{style:e.pointer,className:"saturation-pointer"},this.props.pointer?i.a.createElement(this.props.pointer,this.props):i.a.createElement("div",{className:"saturation-circle"}))))}}Object(a.a)(We,"defaultProps",{contentWindow:()=>window});class Ie extends r.Component{constructor(...e){super(...e),Object(a.a)(this,"renderPointer",()=>i.a.createElement("div",{className:"color-picker-pointer"})),Object(a.a)(this,"renderPointerOpacity",({rgb:{a:e}},t)=>(e*=100,i.a.createElement("div",{className:"color-picker-pointer"},t&&i.a.createElement("div",{className:"color-picker-pointer-tooltip"},Math.round(e),"%"))))}render(){const{className:e,contentWindow:t,disableOpacity:o,hsl:n,hsv:a,rgb:r,renderers:l,onChange:c}=this.props,d=s()("brz-ed-control__colorPicker",e);return i.a.createElement("div",{className:d},i.a.createElement("div",{className:"color-picker-body"},i.a.createElement("div",{className:"color-picker-saturation"},i.a.createElement(We,{hsl:n,hsv:a,contentWindow:t,pointer:this.renderPointer,onChange:c})),i.a.createElement("div",{className:"color-picker-hue"},i.a.createElement(Re,{direction:"vertical",hsl:n,contentWindow:t,pointer:this.renderPointer,onChange:c})),!o&&i.a.createElement("div",{className:"color-picker-alpha"},i.a.createElement(ze,{direction:"vertical",rgb:r,hsl:n,contentWindow:t,renderers:l,pointer:this.renderPointerOpacity,onChange:c}))))}}Ie.defaultProps={disableOpacity:!1,onChange:y.default.noop};var Ne=He(Ie);class Ae extends i.a.Component{constructor(e){super(e),Object(a.a)(this,"handleChange",e=>{const{hex:t,rgb:{a:o},wasChanged:n,opacityDragEnd:a}=e;this.lastValue={hex:t,opacity:o};const r=t.toLowerCase();this.props.onChange({hex:r,opacity:Number(Number(o).toFixed(2)),isChanged:"opacity"===n?"opacity":"hex",opacityDragEnd:a})}),Object(a.a)(this,"getContentWindow",()=>X.a.findDOMNode(this).ownerDocument.defaultView),this.throttledHandleChange=this.handleChange}componentDidMount(){this.lastValue=this.props.value}shouldComponentUpdate({value:e}){const{hex:t,opacity:o}=e,{hex:n,opacity:a}=this.lastValue;return(t!==n||o!==a)&&(this.lastValue=e,!0)}render(){let{value:{hex:e,opacity:t},disableOpacity:o}=this.props;return e=Object(be.d)(e)?e:"#000000",t=isNaN(Number(t))?1:t,i.a.createElement(Ne,{color:Object(be.c)(e,t),opacity:t,disableOpacity:o,contentWindow:this.getContentWindow,onChange:this.throttledHandleChange})}}Ae.defaultProps={value:{hex:"#000000",opacity:1},disableOpacity:!1,onChange:y.default.noop};var De=Ae;class Ve extends i.a.Component{render(){const{className:e,attr:t,value:o,disableOpacity:n,onChange:a}=this.props,r=s()("brz-ed-option__colorPicker",e,t.className);return i.a.createElement("div",Object(v.a)({},t,{className:r}),i.a.createElement(De,{value:o,disableOpacity:n,onChange:a}))}}Object(a.a)(Ve,"defaultProps",{className:"",attr:{},value:{hex:"#000000",opacity:1},disableOpacity:!1,onChange:y.default.noop});var $e=Ve,Ge=o(31);const Ue={},Ke=(e,t,o,n)=>{const a=`${e}-${t}-${o}${n?"-server":""}`,r=((e,t,o,n)=>{if("undefined"==typeof document&&!n)return null;const a=n?new n:document.createElement("canvas");a.width=2*o,a.height=2*o;const r=a.getContext("2d");return r?(r.fillStyle=e,r.fillRect(0,0,a.width,a.height),r.fillStyle=t,r.fillRect(0,0,o,o),r.translate(o,o),r.fillRect(0,0,o,o),a.toDataURL()):null})(e,t,o,n);return Ue[a]?Ue[a]:(Ue[a]=r,r)},qe=({white:e,grey:t,size:o,renderers:n,borderRadius:a,boxShadow:r})=>{const l={borderRadius:a,boxShadow:r,absolute:"0px 0px 0px 0px",background:`url(${Ke(e,t,o,n.canvas)}) center left`};return i.a.createElement("div",{style:l})};qe.defaultProps={size:8,white:"transparent",grey:"rgba(0,0,0,.08)",renderers:{}};var Ye=qe;function Xe(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ze(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Xe(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Xe(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Je extends r.Component{constructor(e){super(e),Object(a.a)(this,"change",null),Object(a.a)(this,"handleChange",(e,t)=>{const o=this.props.contentWindow();this.change=((e,t,o,n)=>{e.preventDefault();const a=n.clientWidth,r=n.clientHeight,i="number"==typeof e.pageX?e.pageX:e.touches[0].pageX,l="number"==typeof e.pageY?e.pageY:e.touches[0].pageY,s=i-(n.getBoundingClientRect().left+t.pageXOffset),c=l-(n.getBoundingClientRect().top+t.pageYOffset);if("vertical"===o.direction){let e;if(e=c<0?0:c>r?1:Math.round(100*c/r)/100,o.hsl.a!==e)return{h:o.hsl.h,s:o.hsl.s,l:o.hsl.l,a:e,source:"rgb"}}else{let e;if(e=s<0?0:s>a?1:Math.round(100*s/a)/100,o.a!==e)return{h:o.hsl.h,s:o.hsl.s,l:o.hsl.l,a:e,source:"rgb"}}return null})(e,o,this.props,this.container)||this.change,this.change&&(this.change.a=1-this.change.a,this.props.onChange&&this.props.onChange(Ze(Ze({},this.change),{},{opacityDragEnd:t,wasChanged:"opacity"}),e))}),Object(a.a)(this,"handleMouseDown",e=>{this.handleChange(e);const t=this.props.contentWindow();t.addEventListener("mousemove",this.handleChange),t.addEventListener("mouseup",this.handleMouseUp),this.setState({showTooltip:!0})}),Object(a.a)(this,"handleMouseUp",e=>{this.handleChange(e,!0),this.unbindEventListeners(),this.setState({showTooltip:!1}),this.change=null}),Object(a.a)(this,"unbindEventListeners",()=>{const e=this.props.contentWindow();e.removeEventListener("mousemove",this.handleChange),e.removeEventListener("mouseup",this.handleMouseUp)}),this.state={showTooltip:!1}}componentWillUnmount(){this.unbindEventListeners()}render(){const{direction:e,rgb:t}=this.props,o={background:`linear-gradient(${"vertical"===e?"to top":"to right"}, rgba(${t.r},${t.g},${t.b}, 0) 0%,\n rgba(${t.r},${t.g},${t.b}, 1) 100%)`,boxShadow:this.props.shadow,borderRadius:this.props.radius},n="vertical"===e?{left:0,top:100*(1-t.a)+"%"}:{left:100*t.a+"%"};return i.a.createElement("div",{className:"color-picker2-alpha-body",style:{borderRadius:this.props.radius}},i.a.createElement("div",{className:"color-picker2-alpha-checkboard"},i.a.createElement(Ye,{renderers:this.props.renderers})),i.a.createElement("div",{className:"color-picker2-alpha-gradient",style:o}),i.a.createElement("div",{className:"color-picker2-alpha-container",ref:e=>this.container=e,onMouseDown:this.handleMouseDown,onTouchMove:this.handleChange,onTouchStart:this.handleChange},i.a.createElement("div",{className:"color-picker2-alpha-pointer",style:n},this.props.pointer?this.props.pointer(this.props,this.state.showTooltip):i.a.createElement("div",{className:"color-picker2-alpha-slider"}))))}}Object(a.a)(Je,"defaultProps",{contentWindow:()=>window});function Qe(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}var et={simpleCheckForValidColor(e){let t=0,o=0;return y.default.each(["r","g","b","a","h","s","l","v"],n=>{if(e[n]&&(t+=1,isNaN(e[n])||(o+=1),"s"===n||"l"===n)){/^\d+%$/.test(e[n])&&(o+=1)}}),t===o&&e},toState(e,t,o){const n=e.hex?le()(e.hex):le()(e),r=n.toHsl(),i=n.toHsv(),l=n.toRgb(),s=n.toHex();0===r.s&&(r.h=t||0,i.h=t||0);let c={};return e.hex||0===i.v||(c={hsv:i}),o||(c={hsv:i}),"saturation"===e.wasChanged&&(c={hsv:{h:i.h,s:0===i.s?e.s/100:i.s,v:i.v}}),"hue"!==e.wasChanged&&"opacity"!==e.wasChanged||(c={}),function(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Qe(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Qe(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}({hsl:r,hex:"#"+s,rgb:l,oldHue:e.h||t||r.h,source:e.source},c)},isValidHex:e=>le()(e).isValid(),getContrastingColor(e){if(!e)return"#fff";const t=this.toState(e);if("transparent"===t.hex)return"rgba(0,0,0,0.4)";return(299*t.rgb.r+587*t.rgb.g+114*t.rgb.b)/1e3>=128?"#000":"#fff"}};function tt(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ot(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?tt(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):tt(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const nt=e=>{class t extends r.Component{constructor(e){super(),Object(a.a)(this,"handleChange",(e,t)=>{if(et.simpleCheckForValidColor(e)){const o=et.toState(e,e.h||this.state.oldHue,e.hsv||this.state.hsv);this.setState(o),this.props.onChangeComplete&&this.debounce(this.props.onChangeComplete,o,t),this.props.onChange&&this.props.onChange(ot(ot({},o),{},{wasChanged:e.wasChanged,opacityDragEnd:e.opacityDragEnd}),t)}}),Object(a.a)(this,"handleSwatchHover",(e,t)=>{if(et.simpleCheckForValidColor(e)){const o=et.toState(e,e.h||this.state.oldHue,e.hsv||this.state.hsv);this.setState(o),this.props.onSwatchHover&&this.props.onSwatchHover(o,t)}}),this.state=ot({},et.toState(e.color,0,null)),this.debounce=y.default.debounce((e,t,o)=>{e(t,o)},100)}componentWillReceiveProps(e){this.setState(ot({},et.toState(e.color,this.state.oldHue)))}render(){const t={};return this.props.onSwatchHover&&(t.onSwatchHover=this.handleSwatchHover),i.a.createElement(e,Object(v.a)({},this.props,this.state,{onChange:this.handleChange},t))}}return t.propTypes=ot({},e.propTypes),t.defaultProps=ot(ot({},e.defaultProps),{},{color:{h:250,s:.5,l:.2,a:1}}),t};function at(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function rt(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?at(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):at(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class it extends r.Component{constructor(...e){super(...e),Object(a.a)(this,"handleChange",e=>{const t=((e,t,o,n)=>{e.preventDefault();const a=n.clientWidth,r=n.clientHeight,i="number"==typeof e.pageX?e.pageX:e.touches[0].pageX,l="number"==typeof e.pageY?e.pageY:e.touches[0].pageY,s=i-(n.getBoundingClientRect().left+t.pageXOffset),c=l-(n.getBoundingClientRect().top+t.pageYOffset);if("vertical"===o.direction){let e;if(c<0)e=359;else if(c>r)e=0;else{e=360*(-100*c/r+100)/100}if(o.hsl.h!==e)return{h:e,s:o.hsl.s,l:o.hsl.l,a:o.hsl.a,source:"rgb"}}else{let e;if(s<0)e=0;else if(s>a)e=359;else{e=360*(100*s/a)/100}if(o.hsl.h!==e)return{h:e,s:o.hsl.s,l:o.hsl.l,a:o.hsl.a,source:"rgb"}}return null})(e,this.props.contentWindow(),this.props,this.container);t&&this.props.onChange&&this.props.onChange(rt(rt({},t),{},{wasChanged:"hue"}),e)}),Object(a.a)(this,"handleMouseDown",e=>{this.handleChange(e,!0);const t=this.props.contentWindow();t.addEventListener("mousemove",this.handleChange),t.addEventListener("mouseup",this.handleMouseUp)}),Object(a.a)(this,"handleMouseUp",()=>{this.unbindEventListeners()})}componentWillUnmount(){this.unbindEventListeners()}unbindEventListeners(){const e=this.props.contentWindow();e.removeEventListener("mousemove",this.handleChange),e.removeEventListener("mouseup",this.handleMouseUp)}render(){const{direction:e="horizontal"}=this.props,t={hue:{borderRadius:this.props.radius,boxShadow:this.props.shadow},pointer:{left:100*this.props.hsl.h/360+"%"}},o={left:"0px",top:-100*this.props.hsl.h/360+100+"%"};return i.a.createElement("div",{className:"hue",style:t.hue},i.a.createElement("div",{className:s()("hue-"+e,"hue-container"),style:t.container,ref:e=>this.container=e,onMouseDown:this.handleMouseDown,onTouchMove:this.handleChange,onTouchStart:this.handleChange},i.a.createElement("div",{style:o,className:"hue-pointer"},this.props.pointer?i.a.createElement(this.props.pointer,this.props):i.a.createElement("div",{className:"hue-slider"}))))}}Object(a.a)(it,"defaultProps",{contentWindow:()=>window});function lt(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function st(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?lt(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):lt(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class ct extends r.Component{constructor(e){super(e),Object(a.a)(this,"handleChange",e=>{const t=this.props.contentWindow();this.props.onChange&&this.throttle(this.props.onChange,((e,t,o,n)=>{e.preventDefault();const{width:a,height:r}=n.getBoundingClientRect(),i="number"==typeof e.pageX?e.pageX:e.touches[0].pageX,l="number"==typeof e.pageY?e.pageY:e.touches[0].pageY;let s=i-(n.getBoundingClientRect().left+t.pageXOffset),c=l-(n.getBoundingClientRect().top+t.pageYOffset);s<0?s=0:s>a?s=a:c<0?c=0:c>r&&(c=r);const d=100*s/a,u=-100*c/r+100;return{h:o.hsl.h,s:d,v:u,a:o.hsl.a,source:"rgb"}})(e,t,this.props,this.container),e)}),Object(a.a)(this,"handleMouseDown",e=>{this.handleChange(e,!0);const t=this.props.contentWindow();t.addEventListener("mousemove",this.handleChange),t.addEventListener("mouseup",this.handleMouseUp)}),Object(a.a)(this,"handleMouseUp",()=>{this.unbindEventListeners()}),this.throttle=y.default.throttle((e,t,o)=>{e(st(st({},t),{},{wasChanged:"saturation"}),o)},50)}componentWill